<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community : All Content - All Communities</title>
    <link>https://forums.adobe.com/</link>
    <description>All Content in Adobe Community</description>
    <language>en</language>
    <pubDate>Wed, 12 Nov 2014 17:57:40 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-11-12T17:57:40Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Calling JSX from ActionScript: Problems with Returning InDesign Objects Back to ActionScript</title>
      <link>https://forums.adobe.com/thread/1633503</link>
      <description>&lt;!-- [DocumentBodyStart:028608c3-19a5-4635-8eb0-726da1215ac8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have written an InDesign Extension using EB 2.1 for InDesign versions 5-6. That means Flex SDK 3.4. I need to call JSX from ActionScript, and for the JSX to return as a return value InDesign objects and regular (non-InDesign specific) Arrays as return variables.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am calling JSX using the HostObject as follows:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt; &lt;span style="font-family: courier new,courier;"&gt;public class AS2JSInDesign&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt; { &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Embed(source="InDesign.jsx", mimeType= "application/octet-stream" )] &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private static var _inDesignJsxProxyClass:Class;&amp;nbsp; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private static var _inDesignJsxInterface:HostObject;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _inDesignJsxInterface = HostObject.getRoot(HostObject.extensions[0]); &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _inDesignJsxInterface.eval(new _inDesignJsxProxyClass().toString());&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function static doJSX():void&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Not passing the ActionScript InDesign.app&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var result1:* = _inDesignJsxInterface.myJSXFunction();&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Passing the ActionScript InDesign.app as a parameter to JSX&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var InDesignApp:Application = InDesign.app;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var result2:* = _inDesignJsxInterface.myJSXFunction(InDesignApp);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;}&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ol style="list-style-type: decimal;"&gt;&lt;li&gt;When JavaScript creates InDesign objects using paradigm &lt;span style="font-family: courier new,courier;"&gt;app.&lt;/span&gt;&amp;lt;CollectionName&amp;gt;.&lt;span style="font-family: courier new,courier;"&gt;add()&lt;/span&gt; (&lt;em&gt;e.g.,&amp;rdquo;&lt;/em&gt;&lt;span style="font-family: 'Courier New';"&gt;app.documents.add()&lt;/span&gt;&amp;rdquo;), then the created object cannot be successfully returned. For example, for &lt;br/&gt;&lt;span style="font-family: 'Courier New';"&gt;return app.documents.add()&lt;/span&gt;&lt;br/&gt;the returned value is not a Document, but rather a HostObject which contains various properties not at all relevant to an InDesign Document. &lt;br/&gt;However, if I pass the InDesign.app from ActionScript as a parameter (called "InDesignApp"), and the JavaScript uses &lt;em&gt;that&lt;/em&gt; app object instead of its own default app object:&lt;br/&gt;&lt;span style="font-family: 'Courier New';"&gt;return InDesignApp.documents.add()&lt;/span&gt;,&lt;br/&gt; then it works fine - a real InDesign Document object is returned.&lt;/li&gt;&lt;li&gt;On the other hand, there are instances in which it seems I must use the JSX native InDesign app object. If I want to define a new Color for the active Document with the InDesign.app (passed as a parameter called "InDesignApp") using&amp;nbsp; &lt;br/&gt;&lt;span style="font-family: 'Courier New';"&gt;var color = InDesignApp.activeDocument.colors.add()&lt;/span&gt;, &lt;br/&gt;then the attempt to assign&lt;br/&gt;&lt;span style="font-family: 'Courier New';"&gt;color.space = ColorSpace.CMYK&lt;/span&gt;&lt;br/&gt;fails, as ColorSpace.CMYK is not recognized at run time.&lt;br/&gt;If I use the JSX app object to do this (&lt;span style="font-family: 'Courier New';"&gt;var color = app.activeDocument.colors.add()&lt;/span&gt;), I don&amp;#8217;t get an error, but if I return the color object to ActionScript, an empty HostObject is received.&lt;/li&gt;&lt;li&gt;A native JSX Array ( &lt;span style="font-family: courier new,courier;"&gt;var myArray = new Array(); &lt;/span&gt;) cannot ever be returned to ActionScript &amp;#8211; it appears in ActionScript as a HostObject. ActionScript doesn&amp;#8217;t regard it as an Array. I came up with a hideous hack: I create an array using InDesignApp.documents.everyItem().getElements(), empty the array which is returned, and then use the empty area for whatever I need. Such an array, when returned to ActionsScript, is recognized as an Array.&lt;/li&gt;&lt;/ol&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Could someone please explain what I'm doing wrong?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:028608c3-19a5-4635-8eb0-726da1215ac8] --&gt;&lt;img src='/beacon?t=1415938844396' /&gt;</description>
      <pubDate>Wed, 12 Nov 2014 17:57:40 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1633503</guid>
      <dc:date>2014-11-12T17:57:40Z</dc:date>
      <clearspace:dateToText>1 day 10 hours ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Create a ZXP for CC, and for CS6-&gt;CC</title>
      <link>https://forums.adobe.com/thread/1601065</link>
      <description>&lt;!-- [DocumentBodyStart:2e1969e8-410d-410d-9fa0-b095fdfc6615] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Up until now, I used the Extension Builder to create InDesign Extensions. I chose CS5-CS6 as the range, and the ZXP thus created worked on CS5, CS5,5 and CS6 without a hitch. I used the popup menu option Export--&amp;gt;Adobe Application Extension to create the ZXP.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now, we have out first customer who uses CC. So we installed CC in house for testing, and I chose the range CS5-&lt;strong&gt;CC&lt;/strong&gt; in the manifest editor.&lt;/p&gt;&lt;p&gt;My attempts to install the ZXP failed with the notice:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This extension can not be installed, it requires InDesign64 version in range of inclusively between 9.0 and 9.9.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I also get the same error if I choose exclusively CC (selecting CC to CC range in the manifest editor).&lt;/p&gt;&lt;p&gt;What am I doing wrong???&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:2e1969e8-410d-410d-9fa0-b095fdfc6615] --&gt;</description>
      <pubDate>Sun, 12 Oct 2014 12:00:58 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1601065</guid>
      <dc:date>2014-10-12T12:00:58Z</dc:date>
      <clearspace:dateToText>1 month 2 hours from now</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Single Dev Environment and Code Line for 6 and CC?</title>
      <link>https://forums.adobe.com/thread/1601190</link>
      <description>&lt;!-- [DocumentBodyStart:a5c0d8e2-c5a0-4e76-90e3-c045524fdce4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Up until now, we were developing for customers who only used InDesign CS5.5 and CS6 - using Extension Builder 2.1.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem is that now a new customer only has CC 2014&lt;strong&gt;.1&lt;/strong&gt; (they just purchased it today). I found one hack how to create an Extension using 2.1 for CC 2014/2014.1. However, this hack doesn't support HostAdapters, which we require as we want to control the fly panel of the panel menu.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Also, I think CC 2014.1 supports only HTML5 panels. Does that mean a total re-write of all our code? And since CS6 does not support HTML5 panels - do we now have to maintain 2 parallel code lines until the last of our customers migrates to CC???&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'd appreciate any advice.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a5c0d8e2-c5a0-4e76-90e3-c045524fdce4] --&gt;</description>
      <pubDate>Sun, 12 Oct 2014 15:26:34 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1601190</guid>
      <dc:date>2014-10-12T15:26:34Z</dc:date>
      <clearspace:dateToText>1 month ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Do I Really Have to Rewrite All My Code to Support CC 2014.1?</title>
      <link>https://forums.adobe.com/thread/1602017</link>
      <description>&lt;!-- [DocumentBodyStart:355d7eba-5486-42a7-a8f2-615b5e71d603] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Up until now, all my customers were using CS5.5 or CS6. My Extensions were written in ActionScript and developed in Extension Builder 2.1.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Am I to understand that in order for my Extensions to work in CC 2014.1, that I must rewrite my &lt;em&gt;tens of thousands of lines of code&lt;/em&gt; in ExtendScript and HTML5???&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:355d7eba-5486-42a7-a8f2-615b5e71d603] --&gt;</description>
      <pubDate>Mon, 13 Oct 2014 15:58:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1602017</guid>
      <dc:date>2014-10-13T15:58:27Z</dc:date>
      <clearspace:dateToText>1 month 1 day ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>CSXSInterface.instance.evalScript("alert('x', 'y', false)") Crashes IND When Debugging</title>
      <link>https://forums.adobe.com/thread/987517</link>
      <description>&lt;!-- [DocumentBodyStart:a0fc90fa-156c-4901-9bfa-b29d31d58a07] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;IND 5.0, Actionscript&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have found that the command CSXSInterface.instance.evalScript("alert('x', 'y', false)") works fine in a normal run (i.e., displays the Alert dialog in InDesign), but causes InDesign to crash and close if the same code is run in the debugger.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any ideas?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TYIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a0fc90fa-156c-4901-9bfa-b29d31d58a07] --&gt;</description>
      <pubDate>Tue, 10 Apr 2012 08:22:30 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/987517</guid>
      <dc:date>2012-04-10T08:22:30Z</dc:date>
      <clearspace:dateToText>8 months 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>12</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>InDesign ActionScript Extension as a LocalConnection Receiver</title>
      <link>https://forums.adobe.com/thread/920099</link>
      <description>&lt;!-- [DocumentBodyStart:df3af8ad-d1f8-4766-8eea-ea4dc2a4189a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am trying to use LocalConnection to communicate between an AIR application and my InDesign Extension. I want to be able to activate a function in the InDesign Extension, just as I could activate a function in any other AIR application using LocalConnection.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Although I have no problem using LocalConnection between two AIR application, I can't get it to work when I try from my AIR app to call the LocalConnection receiver in the InDesign Extension. The attempts to make a call fails with satus level = "error".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any ideas?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:df3af8ad-d1f8-4766-8eea-ea4dc2a4189a] --&gt;</description>
      <pubDate>Tue, 01 Nov 2011 16:06:57 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/920099</guid>
      <dc:date>2011-11-01T16:06:57Z</dc:date>
      <clearspace:dateToText>1 year 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Purchasing Extension Builder 2.1 After Trying the Trial Version: Must I Re-Install?</title>
      <link>https://forums.adobe.com/thread/1308632</link>
      <description>&lt;!-- [DocumentBodyStart:885ef785-06a2-4d6f-b487-2204ae26f5bd] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;A few months ago, I installed the trial version of Extension Builder 2.1. The trial has expired.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So i went to buy a license. I got back a serial number.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I assumed that the Extension Builder would include some activiation dialog in which I would enter the serial number and continue on my merry way. Couldn't find it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;From the wording on the site, it would appear that I need to re-download and re-install Extensino Builder 2.1. That take a long time and I've esperienced probelms installing it in the past.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there a way to enter the serial number instead of reinstalling?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:885ef785-06a2-4d6f-b487-2204ae26f5bd] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">builder</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">installation</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">serial</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">number</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">registration</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extesnion</category>
      <pubDate>Thu, 03 Oct 2013 06:50:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1308632</guid>
      <dc:date>2013-10-03T06:50:09Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Set the Extension Name Which Appears in the Extension Manager</title>
      <link>https://forums.adobe.com/thread/1310129</link>
      <description>&lt;!-- [DocumentBodyStart:177cfaa0-6d59-41a9-9c42-17f97735ddc2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have written a large extension for InDesign usibng Flash 4.6 and Extension Builder 2.1. The name of the project in Flash 4.6 was "X", but the name i want to appear in Extension Manager is "Y". Changing the manifest's ExtensionBundleID doesn't seem to influence anything. I thought I remembered from EB 1.5 that that's the way to do it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:177cfaa0-6d59-41a9-9c42-17f97735ddc2] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension_development</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cs_extention_builder</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension_builder_2.1</category>
      <pubDate>Sun, 06 Oct 2013 11:21:04 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1310129</guid>
      <dc:date>2013-10-06T11:21:04Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>ZXP Not Created in Extension Builder 2.1 for an Extension Created in Extension Builder 1.5</title>
      <link>https://forums.adobe.com/thread/1258217</link>
      <description>&lt;!-- [DocumentBodyStart:c3fb8bd4-41ec-4416-b9e8-eab7b5669961] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We originally started creating InDesign extensions "manually" several years ago, as we did not yet want to pay for the original Extenson Builer 1.0. We produced our ZXP files from the contents of the bin-debug folder using Fabien Bizot's Java-based "ZXPPackager" utililty (&lt;a class="jive-link-external-small" href="http://www.lafabrick.com/" rel="nofollow"&gt;http://www.lafabrick.com/&lt;/a&gt;),&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When we finally installed Extension Builder 1.5, we had some problems creating ZXP with the built-in exporter for Abode Application Extension. Since the compiler put all the files into the bin-debug folder still, I could still use ZXPPackager.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We just upgraded to Extension Builder 2.1. For any legacy project, whether it was still "manually created" (i.e., without even Extenson Builder 1.5) and I copied the sources into a new Extension Builder project,&amp;nbsp; or created in Extenson Builder 1.5 and converted to Extension Bulder 2.1, the Export to ZXP does not work. I see the compiler is creating a bin-release folder, then it disappears, and no ZXP is to be found. Since bin-debug no longer has all files in it like it used to, the ZXPPackager can't find what it's looking for and can't make a ZXP - so I am stuck.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please - help!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c3fb8bd4-41ec-4416-b9e8-eab7b5669961] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">export</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">.zxp</category>
      <pubDate>Fri, 19 Jul 2013 14:16:14 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1258217</guid>
      <dc:date>2013-07-19T14:16:14Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Flash 4.6 Spurting Out Error Log Messages</title>
      <link>https://forums.adobe.com/thread/1258946</link>
      <description>&lt;!-- [DocumentBodyStart:00056125-3b80-4c7f-8113-4021e8281e74] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;My Flash Builder 4.6 is spurting out Eclipse and other messages into its error log. Is this "normal" (I mean are other people experiencing it)?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In my previous post, I mentioned another mysterious problem. I'm wondering if it's connected.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I originally had Flash Builder 4,6 already installed via CS6 before installing Extebsion Builder 2.1, Should I have uninstalled Flash Bulder 4.6 and let Extension Builder install it?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'd be happy to learn from others' experiences.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:00056125-3b80-4c7f-8113-4021e8281e74] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">flash_builder_4.6</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension_builder_2.1</category>
      <pubDate>Sat, 20 Jul 2013 17:35:57 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1258946</guid>
      <dc:date>2013-07-20T17:35:57Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Copying CS SDK InDesign Extensions to Another Workspace</title>
      <link>https://forums.adobe.com/thread/950002</link>
      <description>&lt;!-- [DocumentBodyStart:49fe24c7-d7aa-4f1c-af8d-658eb6afca68] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For Win7, ActionScript&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I built an InDesign extension in ActionScript using the Creative Suite Extension Builder.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I wanted to copy the Creative Suite Extension Builder project to another folder and import it to another workspace. The "Import Flex Project" from the new folder succeeded, but any attempt to build it produces the dreaded error message &lt;/p&gt;&lt;p&gt;""Could not find project's extension manifest file. Make sure the manifest exists at .staged-extension/CSXS/manifest.xml. &amp;lt;MyProjectName&amp;gt;&amp;nbsp; line 1 Problem"&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Needless to say, ".staged-extension/CSXS/manifest.xml." exists.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any idea????&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:49fe24c7-d7aa-4f1c-af8d-658eb6afca68] --&gt;</description>
      <pubDate>Mon, 16 Jan 2012 10:01:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/950002</guid>
      <dc:date>2012-01-16T10:01:25Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>"CSAW version is not within the project range" - Whenever I Specify Any CS Version Range</title>
      <link>https://forums.adobe.com/thread/1251567</link>
      <description>&lt;!-- [DocumentBodyStart:323a7f58-2fc9-4644-8674-5e45e1b00303] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I just installed Extension Builder 2.1.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I want my extensions to run on CS5, CS5.5 and CS6.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Therefore, when I created my very first new Extension Builder project via the wizard, I specified that I wanted it to run on CS5, as the text below the drop-down stated explicitly that CS5.5, CS6 and CC would all be supported as well. I chose defaults for the rest of the wizard and pressed &amp;lt;finish&amp;gt;,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So far, so good.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Then, I opened up the Bundle Manifest Editor. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Bad idea...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Upon opening, the Bundle Manifest Editor immediately displayed a yellow warning message at the top of the Bundle Manifest Editor dialog, stating "CSAW version is not within the project range". I find this strange, since the New Project wizard for the Extension Builder project most specifically stated that a project targeting CS5 would support all later versions. So I tried lowering the dialog's Max Version dropdpwn from CC to CS6. No joy. I tried lowering it to CS5.5. Still no joy. Only when I lowered the max version down to CS5 did the horrific yellow warning message go away.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I might add that the same holds true if I create a project for CS5.5, in which case my Min AND Max have to be CS5.5. If I specify Max=CS6, then I get the same yellow message,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Could someone please explain this to me? What am I doing wrong?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:323a7f58-2fc9-4644-8674-5e45e1b00303] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">version</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">builder</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">2.1</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">targetted</category>
      <pubDate>Wed, 10 Jul 2013 12:59:01 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1251567</guid>
      <dc:date>2013-07-10T12:59:01Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Calling URLLoader from AIR in Rapid Succession Causes Error 2032</title>
      <link>https://forums.adobe.com/thread/1242525</link>
      <description>&lt;!-- [DocumentBodyStart:86d152bb-ad7b-4e0a-ad07-2f62d29df048] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Within AIR, I am issuing multiple POST calls with URLLoader in rapid succession to the same web service on the same server.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;About half of them fail with error #2032. In the HTTPStatus handler, I get status=0.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I suspected keep-alive issues, so I added "Content: close" to the URLRequest header and made sure I called URLLoader.close() as soon as I got a succesful response from calls which succeeded- but no joy.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would appreciate any ideas.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:86d152bb-ad7b-4e0a-ad07-2f62d29df048] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">urlloader</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">#2032</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">keep-alive</category>
      <pubDate>Wed, 26 Jun 2013 20:01:14 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1242525</guid>
      <dc:date>2013-06-26T20:01:14Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Document.save() returns error "Failed to find any class definition for com.adobe.indesign::" in CS6</title>
      <link>https://forums.adobe.com/thread/1246318</link>
      <description>&lt;!-- [DocumentBodyStart:0419add8-da5b-4ffe-95fd-21ff769a0487] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am writing extensions in the InDesign 5 development environment (still)&amp;nbsp; - Extension SDK 1.5, Flex 4.0, etc., using ActionScript.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The extension works fine on InDesign 5 and 5.5. However when used in CS6, on certain computers (I can't find the common denominatior), when I try to save an open document using the document.save() command, Adobe often throws the error "Failed to find any class definition for com.adobe.indesign::" I.e., the name of the missing class does not appear - just the namespace com.adobe.indesign.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'd appreciate suggestions what to do.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0419add8-da5b-4ffe-95fd-21ff769a0487] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">save</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">actionscript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">failed_to_find_class</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cs5</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cs6</category>
      <pubDate>Tue, 02 Jul 2013 12:10:56 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1246318</guid>
      <dc:date>2013-07-02T12:10:56Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How To Get an Image's Dimensions in Pixels</title>
      <link>https://forums.adobe.com/thread/1229973</link>
      <description>&lt;!-- [DocumentBodyStart:9eae1460-2ccf-49a0-a135-3aa51e284b3f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;(For CS5, Actionscript)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need to find an Image's native dimensions in pixels. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I assumed that the Image object's DOM would have included something like ".width" and ".height".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I assumed wrong...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;HOw do I get ath this information?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9eae1460-2ccf-49a0-a135-3aa51e284b3f] --&gt;</description>
      <pubDate>Tue, 11 Jun 2013 09:54:43 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1229973</guid>
      <dc:date>2013-06-11T09:54:43Z</dc:date>
      <clearspace:dateToText>1 year 5 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Attempt to Install InDesign Extension Fails</title>
      <link>https://forums.adobe.com/thread/1178241</link>
      <description>&lt;!-- [DocumentBodyStart:ebffefda-a44d-4d7a-847f-be8e43f158bb] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I developed an Extenstion in InDesign 5, and I created the exptension manually (i.e., without the Extension Builder).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We have had no problem installing it in InDesign 5 and 5.5. In addition, we succeeded in installing it on InDesign 6 on a Windows PC.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We just tried installing it on a Mac running InDesign 6. The Extension Manager failed, with message:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;"Failed to install the Creative Suite Extension &amp;lt;FileName.zxp&amp;gt;. Please make sure the manifest.xml of this extension is valid and the Extension Manager recognizes at least one product which the extension supports. The extension will not be installed."&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I don't know if this is a Mac vs. PC issue, or not.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any ideas what to do?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ebffefda-a44d-4d7a-847f-be8e43f158bb] --&gt;</description>
      <pubDate>Tue, 26 Mar 2013 20:54:58 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1178241</guid>
      <dc:date>2013-03-26T20:54:58Z</dc:date>
      <clearspace:dateToText>1 year 7 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Set an Object's Color Without Creating a Color or Swatch Object</title>
      <link>https://forums.adobe.com/thread/1130305</link>
      <description>&lt;!-- [DocumentBodyStart:432ed06d-fc69-43e2-868c-0c089eab2315] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;(CS5, Actionscript)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have hundreds of Text objects whose fillColor I wish to determine on the fly when my Extension processes the document.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem is that Text.fillColor insists on having a Color or Swatch object assigned to it. The compoiler refuses to allow assigning an CMYK, like:&lt;/p&gt;&lt;p&gt;myText.fillColor = [c, m, y, k]&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The issue is that I all the new Color and Swatch objects clog up the COlor dropdown in the InDesign UI and never go away, and more importantnly consume memory.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there any way to directly assign CMYK values to a Text.fillCOlor without contructing superfluous COlor or Swatch objects?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:432ed06d-fc69-43e2-868c-0c089eab2315] --&gt;</description>
      <pubDate>Sun, 06 Jan 2013 14:29:00 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1130305</guid>
      <dc:date>2013-01-06T14:29:00Z</dc:date>
      <clearspace:dateToText>1 year 10 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Append Formatted Text to a Text Object</title>
      <link>https://forums.adobe.com/thread/1128934</link>
      <description>&lt;!-- [DocumentBodyStart:35119ad9-4e58-4060-8d55-b14abb54349f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;CS5, Actionscript&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;After posting a very specific post about the text content in XMLElements, I realized that the problems was not at all specific to XMLElements. Therefore, I'd like to post this more general question:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For a given Text object, if I wish to append more content, which includes text properties such as "underline" and "strikeThru", how can I do it without the last property values being automatically applied to the next text to be appended.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For example, I found that if I wrote something like this:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;code&amp;gt;&lt;/p&gt;&lt;p&gt;insertionPoint&amp;nbsp;&amp;nbsp; = text.insertionPoints.item(-1);&lt;/p&gt;&lt;p&gt;insertionPoint.contents&amp;nbsp; = "Cat";&lt;/p&gt;&lt;p&gt;insertionPoint.underline = true;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;insertionPoint&amp;nbsp;&amp;nbsp; = text.insertionPoints.item(-1);&lt;/p&gt;&lt;p&gt;insertionPoint.contents&amp;nbsp; = "Dog";&lt;/p&gt;&lt;p&gt;&amp;lt;/code&amp;gt; &lt;/p&gt;&lt;p align="left" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p align="left" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p align="left" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;then the words "Cat" &lt;strong&gt;and &lt;/strong&gt;"Dog" are underlined, although &lt;strong&gt;only &lt;/strong&gt;Cat is marked for underlined.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I make &lt;strong&gt;only &lt;/strong&gt;"Cat" underlined, and "Dog" &lt;strong&gt;not &lt;/strong&gt;underlined?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:35119ad9-4e58-4060-8d55-b14abb54349f] --&gt;</description>
      <pubDate>Thu, 03 Jan 2013 20:16:08 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1128934</guid>
      <dc:date>2013-01-03T20:16:08Z</dc:date>
      <clearspace:dateToText>1 year 10 months ago</clearspace:dateToText>
      <clearspace:replyCount>13</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>CharacterStyle Contains Properties Whose Getters Fail at Runtime</title>
      <link>https://forums.adobe.com/thread/1127946</link>
      <description>&lt;!-- [DocumentBodyStart:9ddc483b-6161-4709-ad7e-ad5c1ed8f845] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS5, Actionscript:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have created some CharacterStyles in a document, and whoch to itterate over them in my Actionscript code, and work with the properties' values.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem is that in may of the cases, the properties which interest me, when accessed, throw "&lt;span style="font-size: 10pt;"&gt;Error: Failed to find any class definition for com.adobe.indesign::Enumerator&lt;/span&gt;", and the debugger shows for them "&amp;lt;exception thrown by getter&amp;gt;".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I tried accessing them by myCharacterStyle["propertyX"] and testing for null, but that fails, too.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I also tried myCharacterStyle.hasOwnProperty("propertyX"), but that fails because the proxy class doesn't support that method.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any ideas, aside from the ugly workaround of catching the error?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9ddc483b-6161-4709-ad7e-ad5c1ed8f845] --&gt;</description>
      <pubDate>Wed, 02 Jan 2013 10:04:26 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1127946</guid>
      <dc:date>2013-01-02T10:04:26Z</dc:date>
      <clearspace:dateToText>1 year 10 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Append Formatted Text to an XMLElement's Contents</title>
      <link>https://forums.adobe.com/thread/1128686</link>
      <description>&lt;!-- [DocumentBodyStart:bf11975d-5bee-4e99-a464-e4afadfe6829] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS5, Actionscript&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need to fill an XMLElement's contents property sequentially with several texts, each of which has its own different formatting (i.e., strikethrough, textDecoation, etc.).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I tried sequential calls of:&lt;/p&gt;&lt;p&gt;&lt;em style="color: #009900; font-size: 10pt;"&gt;&lt;em style="color: #009900; font-size: 10pt;"&gt;&amp;nbsp; &lt;p&gt;var myText:Text = myXmlElement.insertTextAsContent(contentString, XMLElementPosition.ELEMENT_END);&lt;/p&gt;&lt;/em&gt;&lt;/em&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The content from my variable contentString is successfully appened to the XMLElement's content (its single Text element in XMLElement.texts). However once I set a style property, such as strikeThrough, it continues to affect every additional content added via succesive calss to myXmlElement.insertTextAsContent(contentString, XMLElementPosition.ELEMENT_END);.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My question: how do I make sure that styles such as myText.strikeThru will affect only the ext being appended for the current myText, and not any content added in successive calls?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/p&gt;&lt;p&gt;&lt;em style="color: #009900; font-size: 10pt;"&gt;&lt;em style="color: #009900; font-size: 10pt;"&gt;&lt;em style="color: #009900; font-size: 10pt;"&gt;&lt;em style="color: #009900; font-size: 10pt;"&gt;&lt;p&gt;myText.strikeThru = myStrikethrough;&lt;/p&gt;&lt;/em&gt;&lt;/em&gt;&lt;/em&gt;&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:bf11975d-5bee-4e99-a464-e4afadfe6829] --&gt;</description>
      <pubDate>Thu, 03 Jan 2013 15:04:19 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1128686</guid>
      <dc:date>2013-01-03T15:04:19Z</dc:date>
      <clearspace:dateToText>1 year 10 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How Can I Load HTML Text into a TextFrame (CS5)</title>
      <link>https://forums.adobe.com/thread/1109545</link>
      <description>&lt;!-- [DocumentBodyStart:ef524cdb-fa1d-46f7-a336-54c808f044ea] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;(CS5, ActionScript)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have some very simple HTML markup text which I would like to be able to display in a TextFrame.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For example:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;html&amp;gt;&amp;lt;body&amp;gt;Hello &amp;lt;b&amp;gt;World!&amp;lt;/b&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I want to load this into a TextFrame (or vetter yet, a Tag Element's content), and have it properly displayed.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How is that done?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ef524cdb-fa1d-46f7-a336-54c808f044ea] --&gt;</description>
      <pubDate>Tue, 04 Dec 2012 14:49:50 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1109545</guid>
      <dc:date>2012-12-04T14:49:50Z</dc:date>
      <clearspace:dateToText>1 year 11 months ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Get RGB Values from a CMYK Color in the DOM (CS5)</title>
      <link>https://forums.adobe.com/thread/1099444</link>
      <description>&lt;!-- [DocumentBodyStart:a722644d-5af1-4505-a381-ee75c79c6365] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;(CS5, Actionscript)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have an InDesign document containing TextFrames whose border colors are specified as a CMYK array.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like to be able to get its color specification as its closest RGB equivalent.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Does the InDesign DOM contain a method for doing this for me automatically?&amp;nbsp; If not, what workarounds are there?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a722644d-5af1-4505-a381-ee75c79c6365] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cs5</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">rgb_to_cmyk</category>
      <pubDate>Thu, 15 Nov 2012 12:02:16 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1099444</guid>
      <dc:date>2012-11-15T12:02:16Z</dc:date>
      <clearspace:dateToText>1 year 12 months ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>CS5 Export to RTF Option Producing Invalid RTF</title>
      <link>https://forums.adobe.com/thread/1097141</link>
      <description>&lt;!-- [DocumentBodyStart:405cc7ee-a860-4333-9596-2a1e67672e72] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="text-align: left;"&gt;(For CS5 on Windows)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: left;"&gt;I have tried exporting the text contents of aTextFrame using the Export to RTF option..&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: left;"&gt;Although MS-Word and MS-WordPad successfully read the file so produced, every 3rd party library I tried to convert RTF to HTML (both open source and propietary) failed to read the file. The 3rd party products either return an empty HTML or complain about duplicate font defintions.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: left;"&gt;Interestingly, if I take the RTF produced byInDesign and save it in MS-Word, the saved file can then be read succesfully by all other 3rd party libraries.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: left;"&gt;Any ideas? The file produced by MS-Word after the re-save is so radically different from the RTF originally produced by InDesign that there's no point attempting to compare the files visually.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: left;"&gt;TIA,&lt;/p&gt;&lt;p style="text-align: left;"&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:405cc7ee-a860-4333-9596-2a1e67672e72] --&gt;</description>
      <pubDate>Sun, 11 Nov 2012 12:54:03 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1097141</guid>
      <dc:date>2012-11-11T12:54:03Z</dc:date>
      <clearspace:dateToText>2 years 2 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>CS5 exportFile() Method Producing Invalid RTF</title>
      <link>https://forums.adobe.com/thread/1097088</link>
      <description>&lt;!-- [DocumentBodyStart:e26a97f3-0c82-4c0a-a00e-1473abf66417] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="text-align: left;"&gt;(For CS5, Actionscript, Windows)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: left;"&gt;I have tried using the exportFile() method to create an RTF file which contains the text contents of a TextFrame.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: left;"&gt;Although MS-Word and MS-WordPad successfully read the file, every 3rd party library I tried to convert RTF to HTML (both open source and the leading propietary solutions) failed to read the file. The 3rd party products either return an empty HTML or complain about duplicate font defintions.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: left;"&gt;Interestingly, if I take the RTF produced by exportFile() and save it in MS-Word, the file can then be read succesfully by all other 3rd party libraries.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: left;"&gt;Any ideas? The file produced by MS-Word after the re-save is so radically different from the RTF originally produced by InDesign that there's no point attempting to compare the files visually.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: left;"&gt;TIA,&lt;/p&gt;&lt;p style="text-align: left;"&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e26a97f3-0c82-4c0a-a00e-1473abf66417] --&gt;</description>
      <pubDate>Sun, 11 Nov 2012 12:48:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1097088</guid>
      <dc:date>2012-11-11T12:48:54Z</dc:date>
      <clearspace:dateToText>2 years 2 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Changing a Line's Content If it Contains the "Anchored Object Marker"</title>
      <link>https://forums.adobe.com/thread/1082985</link>
      <description>&lt;!-- [DocumentBodyStart:3ba1a7ee-67c9-4acd-ba62-3cc9d5bc0a21] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;[CS5.0, ActionScript]&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;There are instances in which I want to change a Line's content, but the current content contains an "Anchored Object Marker" (the Unicode "Object Recplacement Character" - 65532). In the debugger, that char is displayed as the tiny letters "obj" between two lines&lt;strong&gt;.&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For example, if a TextFrame contains an anchored TextFrame, then when I retrieve OuterTextFrame.lines.item(0).contents, I recieve the Anchored Object Marker char together with the text of the first line, because the&amp;nbsp; Anchored Object Marker marks the placement of the anchored TextFrame.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem is, that if I perform any change on the OuterTextFrame.lines.item(0).contents, the anchored textFrame dissapears - even if I make sure that I put an&amp;nbsp; Anchored Object Marker at the start of the new contents.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Even&amp;nbsp; OuterTextFrame.lines.item(0).contents =&amp;nbsp; OuterTextFrame.lines.item(0).contents causes the anchored TextFrame to dissapear.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My question - how can I change the text in the first line in the TextFrame, without it making the anchored TextFrame dissapear.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3ba1a7ee-67c9-4acd-ba62-3cc9d5bc0a21] --&gt;</description>
      <pubDate>Tue, 16 Oct 2012 11:05:16 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1082985</guid>
      <dc:date>2012-10-16T11:05:16Z</dc:date>
      <clearspace:dateToText>2 years 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Get Dynamic Content for Texts via the Internet</title>
      <link>https://forums.adobe.com/thread/1057411</link>
      <description>&lt;!-- [DocumentBodyStart:1a37135f-aa3f-4563-9a55-e0c5de770364] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;(For InDesign 5.0)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like to have an InDesign document which is exported as a Flash SWF for use on the web, containing a text frame whose content is filled dynamically at display time from some internet source (web service, AJAX, etc.).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For example, the InDesign document exported to a Flash SWF flipping book might have a permanent list of countries, and the popultion for each country would change in real-time when displayed in a browser.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How could this be done?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1a37135f-aa3f-4563-9a55-e0c5de770364] --&gt;</description>
      <pubDate>Wed, 29 Aug 2012 15:29:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1057411</guid>
      <dc:date>2012-08-29T15:29:09Z</dc:date>
      <clearspace:dateToText>2 years 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Combine Two SubPaths into a Single SubPath</title>
      <link>https://forums.adobe.com/thread/1014146</link>
      <description>&lt;!-- [DocumentBodyStart:a90634e8-6c4c-47f4-a2ab-70851486b5d4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS 5, ActionScript:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have a Path which contains two subpaths, which may or may not overlap.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How do I combine them into a single SubPath (i.e., union) via scripting?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I know that in the GUI, I can select both SubPaths and then press the "combine" button - this is the effect I want.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a90634e8-6c4c-47f4-a2ab-70851486b5d4] --&gt;</description>
      <pubDate>Wed, 30 May 2012 13:31:26 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1014146</guid>
      <dc:date>2012-05-30T13:31:26Z</dc:date>
      <clearspace:dateToText>2 years 5 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Add a Linefeed to the Very End of a TextFrame's Contents</title>
      <link>https://forums.adobe.com/thread/987652</link>
      <description>&lt;!-- [DocumentBodyStart:bb9873d8-701a-40ff-bda2-5dd7c97ac680] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;(IND 5.0, Actionscript)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need to be able to add a linefeed ("\n") to the very end of a TextFrame's contents, which may include any combination of tagged and untagged texts, and tagged and untagged image frames.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;There seems to be an endless variation of circumstances, each of which require a specific solution.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For example:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;If the last run of the Text is tagged, then I need to append the "\n" to the that last tag's contents.&lt;/li&gt;&lt;li&gt;If there are no Tags in the Text, then I can append the "\n" to the TextFrame's contents.&lt;/li&gt;&lt;li&gt;If the TextFrame is Tagged, but the last letter(s) in the Text are untagged - I don't know what to do.&lt;/li&gt;&lt;li&gt;If the last object in the TextFrame is an Image Frame, then I don't know what to do (you can't add the "\n" to an image's contents).&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In short, is there some catch-all solution for adding a "\n" at the very end of a TextFrame's contents, without the Tags on the Text being removed and without causing a failure due to trying to add "\n" to an Image's contents?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:bb9873d8-701a-40ff-bda2-5dd7c97ac680] --&gt;</description>
      <pubDate>Tue, 10 Apr 2012 13:44:16 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/987652</guid>
      <dc:date>2012-04-10T13:44:16Z</dc:date>
      <clearspace:dateToText>2 years 7 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Make a Tagged XMLElement's Content Longer</title>
      <link>https://forums.adobe.com/thread/987294</link>
      <description>&lt;!-- [DocumentBodyStart:f1026351-d3b8-4742-af5f-8bed9ad7d2dc] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For IND 5.0, Actionscript&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have a situation in which I need to change the contents of a Tagged XMLElement. Then, I need to move the enclosing Text object to another frame.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;myXmlElement.contents = "Lorem ipsum" works fine &lt;em&gt;&lt;strong&gt;if&lt;/strong&gt;&lt;/em&gt; the new contents is no longer than the original contents. However, if the new contents is &lt;em&gt;&lt;strong&gt;longer&lt;/strong&gt;&lt;/em&gt; than the original contents, then the contents for the enclosing Text element only shows the last n characters of the contents, where "n" is the length of the original content.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For example:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;if myXmlElement.contents equals "ABC", and I perform myXmlElement.contents = "12345678", then the Text contents becomes "678" (i.e., the last 3 characters, because the length of the original content was 3 characters).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What am i doing wrong?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f1026351-d3b8-4742-af5f-8bed9ad7d2dc] --&gt;</description>
      <pubDate>Mon, 09 Apr 2012 18:17:26 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/987294</guid>
      <dc:date>2012-04-09T18:17:26Z</dc:date>
      <clearspace:dateToText>2 years 7 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Get a List of All XMLElements (Follow up to previous posting)</title>
      <link>https://forums.adobe.com/thread/966064</link>
      <description>&lt;!-- [DocumentBodyStart:ccd6eb5e-c37f-4769-8800-91f1bdfafca3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;(CS5, Win7, 64Bit)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need a collection (or array, etc.) of all the XMLElement objects in a given document in flat form (just like the "Structure Tree"'s hierarchichal view - only flatened).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I could not find any "normal" way (i.e., built-in property or method) to get at the information. Instead, I found that I had to recurse through the entire XMLElement tree, starting with the Root Element. For a large document, this can take close to a ten minutes, and sometimes I have to do this for an InDesgin Book containing over ten enormous INDD files.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;After "கற்பனை Imagine" responded to my previous post about how to get all the XMLTags, I assumed that myDocument.xmlElements would return a collection of &lt;strong&gt;all&lt;/strong&gt; the XMLElements in the Document. Unfortunately, it does not - it returns &lt;strong&gt;only the Root XMLElement&lt;/strong&gt;. Thus, I have to recurse therough the hierarchy of XMLElements under the Root XMLElement - which takes a very long time. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;There HAS to be a better way, right?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Would it be better were I to recurse through all PageItems in the document and then recurse through each PageItem's XMLElement tree? I assume that wouldn't make a big difference either way.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm open to suggestions...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ccd6eb5e-c37f-4769-8800-91f1bdfafca3] --&gt;</description>
      <pubDate>Wed, 22 Feb 2012 11:11:04 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/966064</guid>
      <dc:date>2012-02-22T11:11:04Z</dc:date>
      <clearspace:dateToText>2 years 9 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Get a List of All XMLElement Tags</title>
      <link>https://forums.adobe.com/thread/965985</link>
      <description>&lt;!-- [DocumentBodyStart:04e71124-9bc6-49dd-9f6d-f373ba02f329] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;(CS5, Win7, 64Bit)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need a list of all the unique XML Tag names in a given document (just like the Tags Panel in InDesign itself).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I could not find any "normal" way (i.e., builtin-in property or method) to get at the information. Instead, I found that I had to recurse through the entire XMLElement tree, starting with the Root Element. For a large document, this can take close to a quarter of an hour, and sometimes I have to do this for an InDesgin Book containing over ten enormous INDD files.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;There HAS to be a better way, right?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Would it be better were I to recurse through all PageItems in the document and then recurse through each PageItem's XMLElement tree? I assume that wouldn't make a big difference wither way.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm open to suggestions...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:04e71124-9bc6-49dd-9f6d-f373ba02f329] --&gt;</description>
      <pubDate>Wed, 22 Feb 2012 09:25:13 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/965985</guid>
      <dc:date>2012-02-22T09:25:13Z</dc:date>
      <clearspace:dateToText>2 years 9 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Can a Layer be Selected Using document.select()?</title>
      <link>https://forums.adobe.com/thread/962291</link>
      <description>&lt;!-- [DocumentBodyStart:962dc9d4-0131-4109-a7db-3a962d9cd013] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS5, Windows 7, ActionScript:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I very innocently assumed that I could use myDocument.select(myLayer) to select a Layer. However this explodes at runtime with a parameter exception saying that the function select() expected to recieve either an object or an array of objects, but instead recieved a Layer. Is a Layer not an object? Is this a known limitation?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:962dc9d4-0131-4109-a7db-3a962d9cd013] --&gt;</description>
      <pubDate>Mon, 13 Feb 2012 15:52:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/962291</guid>
      <dc:date>2012-02-13T15:52:49Z</dc:date>
      <clearspace:dateToText>2 years 9 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Select an Entire Document and Create a WorkPath from the Selection</title>
      <link>https://forums.adobe.com/thread/956690</link>
      <description>&lt;!-- [DocumentBodyStart:7598a5de-e0b5-495a-9b5a-d632f61968c4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For PS Extended 64 bit on Windows 7, using ActionScript&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am trying to create a WorkPath which encompasses an entire Document. Piece of cake, right? WRONG!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have the following code in ActionScript (ActionScript is close enough to JavaScript that I assume the JS experts here can help).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&lt;span style="font-size: 10pt;"&gt; &lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;activeDocument.selection.selectAll();&lt;/p&gt;&lt;p&gt;activeDocument.selection.makeWorkPath(2.0);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;After the selectAll, I see in the debugger what looks to me like valid boundaries in the Selection object. However, the makeWorkPath() call fails with "The document does not contain a selection". However, after the code chokes, when I look at the Photoshop screen I see that the document has indeed been selected and if from the Paths window I press the "Make path from selection" icon in the status bar, a Work Path is indeed correctly created. Also, thinking that perhapas the intial backgroundLayer was a special case, i tried copying the layer, making the new layer active and then doing selectAll - but no joy.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7598a5de-e0b5-495a-9b5a-d632f61968c4] --&gt;</description>
      <pubDate>Tue, 31 Jan 2012 15:59:53 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/956690</guid>
      <dc:date>2012-01-31T15:59:53Z</dc:date>
      <clearspace:dateToText>2 years 9 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Nested Menus Not Appearing in a Custom Panel Fly-out Menu</title>
      <link>https://forums.adobe.com/thread/730221</link>
      <description>&lt;!-- [DocumentBodyStart:757e9745-e27d-4d48-bd5f-7a0efe238f3b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;I tried to create a menu for a custom panel, using the example which David Clark graciously pointed out to me:&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&lt;a class="jive-link-external-small" href="http://cssdk.host.adobe.com/sdk/1.0/docs/WebHelp/programmers_guide/customizing_the_ui.htm"&gt;&lt;span&gt;http://cssdk.host.adobe.com/sdk/1.0/docs/WebHelp/programmers_guide/cus tomizing_the_ui.htm&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;However, the nested menu items do not appear. I only see Item 1 and Item 2 (and the separator and Item 3), but not Item 2-1. I was expecting to see Item 2-1 nested under Item 2.&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;I used the menu structure provided in the example (note that there is an error in the example - one of the closing tags is incorrectly specified as "&amp;lt;MenuItem/&amp;gt;" instead of "&amp;lt;/MenuItem&amp;gt;"). Below is the corrected XML and my code:&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;protected function createMenu():void&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;{&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&amp;nbsp; var xmlMenu:XML =&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Menu&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;MenuItem Id="item_1" Label="Item 1"/&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;MenuItem Label="Item 2"&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;MenuItem Label="Item 2-1"/&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/MenuItem&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;MenuItem Label="---"/&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;MenuItem Label="Item 3"/&amp;gt;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Menu&amp;gt;;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CSXSInterface.instance.addEventListener(MenuClickEvent.FLYOUT_MENU_CLICK, menuClickHandler);&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var menuAdded:SyncRequestResult = CSXSInterface.getInstance().setPanelMenu(xmlMenu);&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (SyncRequestResult.COMPLETE != menuAdded.status)&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; trace("Unable to add menu");&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;}&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&amp;nbsp; public function menuClickHandler(event:MenuClickEvent):void&lt;br/&gt;&amp;nbsp;&amp;nbsp; {&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; switch (event.menuName) //you can also use the menuId&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; case "Item 1":&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; trace("Item 1 has been clicked");&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; default:&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; trace("clicked " + event.menuName);&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br/&gt;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;I'd appreciate it if somebody could tell me what I'm doing wrong.&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;TIA,&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:757e9745-e27d-4d48-bd5f-7a0efe238f3b] --&gt;</description>
      <pubDate>Tue, 28 Sep 2010 14:36:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/730221</guid>
      <dc:date>2010-09-28T14:36:54Z</dc:date>
      <clearspace:dateToText>2 years 10 months ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Debugger and InDesign Freeze During Debugging</title>
      <link>https://forums.adobe.com/thread/930315</link>
      <description>&lt;!-- [DocumentBodyStart:1d54d907-ecc4-4290-a2d5-fe590fc94fa2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p&gt;For CS5 and ActionScript on WIin7:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have written a large extension for InDesign.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;There is a certain class which very often caused InDeisgn and/or the FB Debugger to freeze, and I have to kill them with the Windows task manager. It happens sometimes if my cursor even passes over an Expression in the Debugger's Expression window. Sometimes it just freezes even if there are no break points in that class or expressions at all. Occasionally, the debugger complains about a "synchonization error". All my other classes and all my other extesnions are free of this problem.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I don't see anything unusual or exceptional in the code for the problematic classes.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I couldn't fins anything abouth this in the Forum or in Google.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'd really appreciate advice.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1d54d907-ecc4-4290-a2d5-fe590fc94fa2] --&gt;</description>
      <pubDate>Tue, 29 Nov 2011 09:57:42 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/930315</guid>
      <dc:date>2011-11-29T09:57:42Z</dc:date>
      <clearspace:dateToText>2 years 11 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>TransformationMatrix Ignoring its Methods</title>
      <link>https://forums.adobe.com/thread/941884</link>
      <description>&lt;!-- [DocumentBodyStart:4a14ace0-1a3e-4c16-8e23-b7fa6e0b50b5] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS5, ActionScript, Win7&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am encounteruing very strange behavior with the TransofrmationMatrix object. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If I initiate the TransformationMatrix object with all its values when I create it with app.transformationMatrices.add(2,2,0,0,0,0), then it does exactly what I expect (i.e., double the size of the PageItem). However, if I do not supply any parameters and then call myTransformationMatrix.scaleMatrix(2,2), then nothing happens. And yes, I did verify that the rectangle I'm working with exists and is valid, etc.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;i.e., this works&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; var app:Application = InDesign.app;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; var selectedRectangle:Rectangle = ((app.selection as Array)[0] as Rectangle);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; var scaleMatrix:TransformationMatrix = app.transformationMatrices.add(2,2,0,0,0,0);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; selectedRectangle.transform(CoordinateSpaces.PASTEBOARD_COORDINATES, AnchorPoint.CENTER_ANCHOR, scaleMatrix );&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;But this doesn't work:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; var app:Application = InDesign.app;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; var selectedRectangle:Rectangle = ((app.selection as Array)[0] as Rectangle);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; var scaleMatrix:TransformationMatrix = app.transformationMatrices.add();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; scaleMatrix.scaleMatrix(2, 2);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; selectedRectangle.transform(CoordinateSpaces.PASTEBOARD_COORDINATES, AnchorPoint.CENTER_ANCHOR, scaleMatrix );&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Anyone else encounter this or have any ideas?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4a14ace0-1a3e-4c16-8e23-b7fa6e0b50b5] --&gt;</description>
      <pubDate>Tue, 27 Dec 2011 14:57:11 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/941884</guid>
      <dc:date>2011-12-27T14:57:11Z</dc:date>
      <clearspace:dateToText>2 years 11 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Extension Builder Creates mx:Application, and not csxs:CSXSWindowedApplication</title>
      <link>https://forums.adobe.com/thread/932592</link>
      <description>&lt;!-- [DocumentBodyStart:e67ef27e-c254-4e2f-abb5-c31b8450353e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I had been creating InDesign Extensions manually (i.e., without the ExtensionBuilder) up until now. I remember being told to use csxs:CSXSWindowedApplication for the panel. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We just recently got ExtensionBuilder, and I noticed that it creates mx:Application. Is this what it is supposed to be creating? Aside from the theoretical issue, there is the practical problem that I can't use the close() method which csxs:CSXSWindowedApplication has in order to close the panel.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'd be greatful for an explanation.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e67ef27e-c254-4e2f-abb5-c31b8450353e] --&gt;</description>
      <pubDate>Sun, 04 Dec 2011 14:42:19 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/932592</guid>
      <dc:date>2011-12-04T14:42:19Z</dc:date>
      <clearspace:dateToText>2 years 11 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Inter-extension Data Sharing Between Extensions</title>
      <link>https://forums.adobe.com/thread/934444</link>
      <description>&lt;!-- [DocumentBodyStart:83b1f953-8d71-475d-8320-502de43e2d1b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS 5, WIndows, ActionScript&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there any way to communicate data between CS 5 Extensions written in ActionScript?&amp;nbsp; I mean, short of a WebService/Client connection between them... ):&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:83b1f953-8d71-475d-8320-502de43e2d1b] --&gt;</description>
      <pubDate>Thu, 08 Dec 2011 15:04:37 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/934444</guid>
      <dc:date>2011-12-08T15:04:37Z</dc:date>
      <clearspace:dateToText>2 years 11 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Cure Large Memory Consumption</title>
      <link>https://forums.adobe.com/thread/933645</link>
      <description>&lt;!-- [DocumentBodyStart:23d01bc5-034b-4542-99ab-5d069a83f4f5] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS5, Windows 7 64 Bit, ActionScript&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have written an Extension which analyzes a data feed and build from it a large dicument consisting of tens of pages - each page with perhaps 100 PageItems.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When I try to produce the whole document at one time, it usually fails after about 15-20 pages, depending on the number of PageItems on each page. I also notice that the InDesign.exe process consumes about 1.9 GB when the explosion occurs. The "explosion" is "stupid" error messages, such as a null exception error, when in fact the data in question clearly has a value, and other strange things.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have noticed that Tables are paricularly troublesome - tables with many rows - and particularly many columns seem to aggravate the situation.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Closing the Extension itself releases about 160 MB.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In addition, a tremendous amount of memory seems to be taken by each page in the Document. When I close the document, it frees up about 30 MB per page. Since I have well over 30 pages in many documents, this is obviously an issue.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have taken the following precautions:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1) I perform a save of the document after every page&lt;/p&gt;&lt;p&gt;2) I force Garbage Collection after every page&lt;/p&gt;&lt;p&gt;3) To the best of my knowledge, I set all my objects (including DOM objects such as TextFrame, etc.) to null as soon as I am done with them.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;There are some things which are not clear to me. For example, if I defined an Array of Table Columns, do I need to set each entry in the Array to null when I'm done, even if i nullifed the Table object from which they were taken?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would be gratefull for any advice.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:23d01bc5-034b-4542-99ab-5d069a83f4f5] --&gt;</description>
      <pubDate>Tue, 06 Dec 2011 21:22:34 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/933645</guid>
      <dc:date>2011-12-06T21:22:34Z</dc:date>
      <clearspace:dateToText>2 years 11 months ago</clearspace:dateToText>
      <clearspace:replyCount>10</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>ScriptLabel for a Column</title>
      <link>https://forums.adobe.com/thread/921864</link>
      <description>&lt;!-- [DocumentBodyStart:a9b8fc5a-1d9c-4966-b6de-b5625cc34711] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In the InDesign UI, I can select a Tbale Column, and enter a vlaue for its ScriptLabel in the ScriptLabel panel. However, in the scripting DOM, ther Column object does not contain a Laebl property. So how is the InDesign UI doeing this, and how can I read/change the value for a Column ScriptLabel using scripting?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a9b8fc5a-1d9c-4966-b6de-b5625cc34711] --&gt;</description>
      <pubDate>Sun, 06 Nov 2011 08:50:08 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/921864</guid>
      <dc:date>2011-11-06T08:50:08Z</dc:date>
      <clearspace:dateToText>3 years 6 days ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Get the Host Name of the Computer Running an AIR Application</title>
      <link>https://forums.adobe.com/thread/920407</link>
      <description>&lt;!-- [DocumentBodyStart:3efa8c37-8421-43ae-8635-f5f05f043814] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am writing an AIR desktop application which needs to know the host name of the compute on which it is running.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How do I get the host name?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3efa8c37-8421-43ae-8635-f5f05f043814] --&gt;</description>
      <pubDate>Wed, 02 Nov 2011 08:44:03 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/920407</guid>
      <dc:date>2011-11-02T08:44:03Z</dc:date>
      <clearspace:dateToText>3 years 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>AIR 2 Support in CS5 Extensions</title>
      <link>https://forums.adobe.com/thread/896690</link>
      <description>&lt;!-- [DocumentBodyStart:7b59b2db-3564-406d-b398-69b639614a15] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;Is there any way to use the AIR 2 runtime in CS5 Extensions? I need the ServerSocket class real bad...&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" style="min-height: 8pt; padding: 0px;" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;&amp;nbsp;&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;TIA,&lt;/p&gt;&lt;p lang="function(){return A.apply(null,[this].concat($A(arguments)))}" ondblclick="" onkeydown="" onkeypress="" onkeyup="" onmousemove="" onmouseout="" onmouseover="" onmouseup="" title="function(){return A.apply(null,[this].concat($A(arguments)))}"&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7b59b2db-3564-406d-b398-69b639614a15] --&gt;</description>
      <pubDate>Mon, 29 Aug 2011 15:22:31 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/896690</guid>
      <dc:date>2011-08-29T15:22:31Z</dc:date>
      <clearspace:dateToText>3 years 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>13</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>HTML or Other Markup Possibilities within TextFrame.contents</title>
      <link>https://forums.adobe.com/thread/917516</link>
      <description>&lt;!-- [DocumentBodyStart:761f227b-e995-47bd-ba81-ea3869245f59] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS5/ActionScript,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have received HTML-formatted text (&amp;lt;em /&amp;gt; &amp;lt;strong /&amp;gt; etc., from a customer, that I need to enter into a TeftFrame. I want to preserve Bold, Underline, Superscript, etc when I load the text into TextFrame.contents, without having to manually parse the text, identify tags, and create InDesign text style runs.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is their any elegant way to accomplish this?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:761f227b-e995-47bd-ba81-ea3869245f59] --&gt;</description>
      <pubDate>Tue, 25 Oct 2011 15:43:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/917516</guid>
      <dc:date>2011-10-25T15:43:09Z</dc:date>
      <clearspace:dateToText>3 years 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Hide Objects From a User</title>
      <link>https://forums.adobe.com/thread/918320</link>
      <description>&lt;!-- [DocumentBodyStart:166d0e3f-b9ca-4ddf-b5b3-fef864f33710] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS 5,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need to define certain objects in an InDesign document (primarily Layers), which the user should not be able to see and should not be listed in the Layers panel.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How do I do that?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:166d0e3f-b9ca-4ddf-b5b3-fef864f33710] --&gt;</description>
      <pubDate>Thu, 27 Oct 2011 09:45:41 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/918320</guid>
      <dc:date>2011-10-27T09:45:41Z</dc:date>
      <clearspace:dateToText>3 years 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Stop an ActionScript Extension's Execution</title>
      <link>https://forums.adobe.com/thread/918299</link>
      <description>&lt;!-- [DocumentBodyStart:419bfac9-a95b-4e6c-9503-61729e6f5b0a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS5:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have an ActionScript Extension which produces a number of InDesign pages, and takes some time to process. As is the case for ActionScript Extensions, InDesign freezes during the Extension's execution, and the processing can't be stopped in the middle - even if it taking a long time and the cutomer wants to give up.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there a way to stop an ActionScript Extension's script in the middle? I need an elegant, customer-acceptable solution I already thought of the ActionScript periodically searching for the existence of a file, such as "c:\allowCOntinue.txt", and if it no longer exists (i.e., deleted by the user) then exit the extension. But that is mega-ugly.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:419bfac9-a95b-4e6c-9503-61729e6f5b0a] --&gt;</description>
      <pubDate>Thu, 27 Oct 2011 09:42:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/918299</guid>
      <dc:date>2011-10-27T09:42:05Z</dc:date>
      <clearspace:dateToText>3 years 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Set the Colow for a Watermark</title>
      <link>https://forums.adobe.com/thread/917882</link>
      <description>&lt;!-- [DocumentBodyStart:7566a246-6ec9-4736-a288-5d5a9cf2e250] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Foe CS5/ActionScript:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I want to change the default color of a watermark. So I tried:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;[code]&lt;/p&gt;&lt;p&gt;m_workingDocument.watermarkPreferences.watermarkFontColor = myIndesignApp.colors.add({name:"WatermarkColor", model:ColorModel.PROCESS, colorValue:[0,100,100,0]});&lt;/p&gt;&lt;p&gt;[/code]&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;and&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;[code]&lt;/p&gt;&lt;p&gt;m_workingDocument.watermarkPreferences.watermarkFontColor = myIndesignDocument.colors.add({name:"WatermarkColor", model:ColorModel.PROCESS, colorValue:[0,100,100,0]});&lt;/p&gt;&lt;p&gt;[/code]&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Both throw a null exception at run time.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What am I doing wrong?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Also, is there any way to create a color on the fly which does NOT appear in the swatches panel? (I don't want customers to be able to change the defintion of the color to white, so that the watermark becomes invisible...).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7566a246-6ec9-4736-a288-5d5a9cf2e250] --&gt;</description>
      <pubDate>Wed, 26 Oct 2011 12:22:47 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/917882</guid>
      <dc:date>2011-10-26T12:22:47Z</dc:date>
      <clearspace:dateToText>3 years 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>9</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>/CreativeSuiteSDK/docs/csawlib/index.html Documentation Doesn't Work in InternetExplorer 8 on Win7</title>
      <link>https://forums.adobe.com/thread/918306</link>
      <description>&lt;!-- [DocumentBodyStart:cc3a2d00-dbf2-49b6-9a44-bd2144452e33] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS5 SDK v1.5 on Win7 with InternetExplorer 8&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hi all,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If I try to view the CS5 v1.5 documentation file /CreativeSuiteSDK/docs/csawlib/index.html, I get a blank screen with a frame divider (between what should have been the left-hand Packages List and the right-hand class details panel). Firefox works fine. Also, the \CreativeSuiteSDK\docs\csxslib\index.html file works perfectly well in Internet Explorer.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Anyone else suffering from this?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:cc3a2d00-dbf2-49b6-9a44-bd2144452e33] --&gt;</description>
      <pubDate>Thu, 27 Oct 2011 10:26:47 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/918306</guid>
      <dc:date>2011-10-27T10:26:47Z</dc:date>
      <clearspace:dateToText>3 years 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Mark an InDesign Document with an "Indelible Watermark"</title>
      <link>https://forums.adobe.com/thread/917478</link>
      <description>&lt;!-- [DocumentBodyStart:7733203f-6235-400a-a64b-052fbdc76ae7] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS5 and ActionScript:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I want to mark an InDesign document I've creating via scripting in such a way that an end user can not get rid of the marking (e.g., when distributing my extension as a trial version). Ideally, I'd want "Trial Version" splashed across each page "indelibly".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can this be done?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7733203f-6235-400a-a64b-052fbdc76ae7] --&gt;</description>
      <pubDate>Tue, 25 Oct 2011 13:50:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/917478</guid>
      <dc:date>2011-10-25T13:50:54Z</dc:date>
      <clearspace:dateToText>3 years 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Alert.show in ActionScript: Which value to pass as "Parent"</title>
      <link>https://forums.adobe.com/thread/912211</link>
      <description>&lt;!-- [DocumentBodyStart:fc6d3909-0614-4c11-a302-5011496041fb] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;For CS5 and ActionScript:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When debugging my InDesign Extension, I occaionally get random exceptions thrown without an indication of where on the stack it was thrown. I suspect that this is being caused by Alert.show, and I further suspect that it is due to the value I pass for "parent", I have tried "this" and "Sprite(mx.core.Application.application)".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;E.g.,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Alert.show("Place Block succeeded","",Alert.OK, Sprite(mx.core.Application.application));&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What should I be using?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:fc6d3909-0614-4c11-a302-5011496041fb] --&gt;</description>
      <pubDate>Tue, 11 Oct 2011 13:43:33 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/912211</guid>
      <dc:date>2011-10-11T13:43:33Z</dc:date>
      <clearspace:dateToText>3 years 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>ServerSocket in Photoshop: Allowing only one client to access the server at a time (ATTN BOB STUCKY)</title>
      <link>https://forums.adobe.com/thread/906993</link>
      <description>&lt;!-- [DocumentBodyStart:bb2eac96-7ada-4d8d-8883-9fb7492c1de8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have used Bob Stucky's excellent example of inter-process communication via SocketServer in a Photoshop Extension (written in ActionScript), in order to receive requests from another Adobe products for picture processing.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem is that since there is only one Photoshop session openable at a time, I want to make sure that one client call doesn't interfere with the processing already in progress for a previous request. I.e., I want only one request to be processed at a time. How can I prevent other requests from interfering with the request already in progress? Can I accept a socket CONNECT event, but prevent it from actually doing anything until the previous request is done?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Does someone have a better idea?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:bb2eac96-7ada-4d8d-8883-9fb7492c1de8] --&gt;</description>
      <pubDate>Tue, 27 Sep 2011 10:46:21 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/906993</guid>
      <dc:date>2011-09-27T10:46:21Z</dc:date>
      <clearspace:dateToText>3 years 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

