<?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>Tue, 21 Oct 2014 06:50:20 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-10-21T06:50:20Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>window.close not working on indesign cc2014</title>
      <link>https://forums.adobe.com/thread/1613087</link>
      <description>&lt;!-- [DocumentBodyStart:87813e7d-41cf-4bc6-82a4-741a1d0f048a] --&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 developing an extension for InDesign CS5 and above. I have a dialog of type panel, CSXSWindowType.PANEL which opens up on button click. This dialog contains a button for closing it. The click event executes " this.close() ".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now, the problem is that for ID CC2014 this.close() is not closing the dialog. Only the default close button at the corner of the window closes it. I have no idea why the dialog is behaving this way. It works in all the other versions.&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;/div&gt;&lt;!-- [DocumentBodyEnd:87813e7d-41cf-4bc6-82a4-741a1d0f048a] --&gt;&lt;img src='/beacon?t=1415938910184' /&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign cs to indesign cc</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">close dialog box</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">unable to close</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">dialog window</category>
      <pubDate>Tue, 21 Oct 2014 06:50:20 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1613087</guid>
      <dc:date>2014-10-21T06:50:20Z</dc:date>
      <clearspace:dateToText>3 weeks 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Load webpage in Flex extension for InDesign</title>
      <link>https://forums.adobe.com/thread/1572978</link>
      <description>&lt;!-- [DocumentBodyStart:980bde13-3ccb-413a-912a-4dd0780c6a64] --&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 implementing an extension for InDesign CS6 and CC using Flash Builder 4.6, Ext Builder 2.1.&lt;/p&gt;&lt;p&gt;The panel reads a text file which contains the url of a webpage and renders it in an HTML control.. It is working with most urls..&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;But sometimes it stops loading the page midway. I get the urls from my client.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is the code I am using,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:d60753d4-3763-46c6-ad6a-c206eac4d94f][excluded]--&gt;&lt;pre class="javascript" name="code"&gt;
&amp;lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
&amp;nbsp; layout="absolute"
&amp;nbsp; creationComplete="livepreview_creationCompleteHandler(event)"&amp;gt;

&amp;lt;mx:Script&amp;gt;
protected function livepreview_creationCompleteHandler(event:FlexEvent):void
{
&amp;nbsp; var livePreviewFile:File = File.desktopDirectory.resolvePath("LivePreviewUrl.txt");
&amp;nbsp; if(livePreviewFile.exists)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var fileStream:FileStream = new FileStream();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fileStream.open(livePreviewFile, FileMode.READ);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var livePreviewUrl:String = fileStream.readUTFBytes(fileStream.bytesAvailable);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(livePreviewUrl != "")
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; livepreview.location = livePreviewUrl;
&amp;nbsp; }
&amp;nbsp; else
&amp;nbsp; {
&amp;nbsp; //TODO
&amp;nbsp; //Get some error error html url from server and use its value for location
&amp;nbsp; //livepreview.location = some error/hard coded url from server.;
&amp;nbsp; }
}
&amp;lt;/mx:Script&amp;gt;

&amp;lt;mx:VBox height="100%" width="100%" verticalAlign="middle" horizontalAlign="center"&amp;gt;
&amp;nbsp; &amp;lt;mx:HTML id="livepreview" x="0" y="0" width="100%" height="100%"/&amp;gt;
&amp;lt;/mx:VBox&amp;gt;

&lt;/pre&gt;&lt;!--[CodeBlockEnd:d60753d4-3763-46c6-ad6a-c206eac4d94f]--&gt;&lt;div style="display:none;"&gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is it possibe that background scripts executing in the webpage might be getting blocked by Flex causing the improper load?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any way to overcome this?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:980bde13-3ccb-413a-912a-4dd0780c6a64] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">flex 4.6</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign extension</category>
      <pubDate>Fri, 12 Sep 2014 06:50:16 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1572978</guid>
      <dc:date>2014-09-12T06:50:16Z</dc:date>
      <clearspace:dateToText>1 month 11 hours ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Where can I map the translate values of the tranformation matrix in a document?</title>
      <link>https://forums.adobe.com/thread/1584804</link>
      <description>&lt;!-- [DocumentBodyStart:f9b016e6-f3e3-476f-a544-fcf560b5152f] --&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 have been looking into the transformation matrix of InDesign for a day now. Had great help from &lt;a class="jive-link-external-small" href="http://www.indiscripts.com/blog/public/data/coordinate-spaces-and-transformations-1/CoordinateSpacesTransfos01_KeyConcepts.pdf" rel="nofollow"&gt;http://www.indiscripts.com/blog/public/data/coordinate-spaces-and-transformations-1/Coordi nateSpacesTransfos01_KeyConcep&amp;hellip;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am executing the following script to get the transformation matrix of a page-item.&lt;/p&gt;&lt;!--[CodeBlockStart:2786be43-468c-4a34-a2c0-0a6b53b4b349][excluded]--&gt;&lt;pre class="javascript" name="code"&gt;
var pageItem = app.activeDocument.pageItems.item(0);
mx = pageItem.transformValuesOf(CoordinateSpaces.parentCoordinates)[0]; 
alert( mx.matrixValues );

&lt;/pre&gt;&lt;!--[CodeBlockEnd:2786be43-468c-4a34-a2c0-0a6b53b4b349]--&gt;&lt;div style="display:none;"&gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now on executing the above I am able to understand how the 'a', 'b', 'c', 'd' values are calculated. But I do not have an understanding on the 'e', 'f' values that represent the horizontal and vertical translations respectively.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can anyone tell me what these values represent on the InDesign document?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f9b016e6-f3e3-476f-a544-fcf560b5152f] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">translation</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">transformation-matrix</category>
      <pubDate>Thu, 25 Sep 2014 05:57:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1584804</guid>
      <dc:date>2014-09-25T05:57:09Z</dc:date>
      <clearspace:dateToText>1 month 6 days ago</clearspace:dateToText>
      <clearspace:replyCount>7</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Get dimensions of a transformed shape/object</title>
      <link>https://forums.adobe.com/thread/1572190</link>
      <description>&lt;!-- [DocumentBodyStart:4f750993-6039-48d0-9aea-b76ecf697443] --&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 implementing an extension for InDesign CS6 using Ext Builder 2.1. The extension requires to get some page-item properties in active document and write to a file. I have been able to do most of it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This issue is in getting bounds and coordinates of transformed page-items. I am able to get the correct bounds for simple page-items. For eg a simple page-item is,&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6720555-670473/simple.jpg"&gt;&lt;img alt="simple.jpg" class="jive-image image-1" height="527" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6720555-670473/900-527/simple.jpg" style="max-width: 620px; height: auto;" width="900"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is the transformed page-item,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6720555-670474/transformed.jpg"&gt;&lt;img alt="transformed.jpg" class="jive-image image-2" height="527" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6720555-670474/900-527/transformed.jpg" style="max-width: 620px; height: auto;" width="900"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Below is the code I am using to calculate the left, top, width and height.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:b5ba6923-402e-44ca-9c8e-48a0eed88052][excluded]--&gt;&lt;pre class="javascript" name="code"&gt;
var bounds:Array = pgItem.geometricBounds as Array;
&amp;nbsp; if(bounds)
&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(pgItem.strokeWeight)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var stroke:Number = pgItem.strokeWeight.valueOf();

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(pgItem.strokeAlignment == StrokeAlignment.CENTER_ALIGNMENT)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // top
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(bounds[0])
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[0] -= stroke/2;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[0] += stroke/2;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // left
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(bounds[1])
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[1] -= stroke/2;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[1] += stroke/2;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[2] += stroke/2;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[3] += stroke/2;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else if(pgItem.strokeAlignment == StrokeAlignment.OUTSIDE_ALIGNMENT)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(bounds[0])
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[0] -= stroke;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[0] += stroke;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(bounds[1])
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[1] -= stroke;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[1] += stroke;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[2] += stroke;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bounds[3] += stroke;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var left:Number = bounds[1];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var top:Number = bounds[0];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var width:Number = bounds[3] - bounds[1];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var height:Number = bounds[2] - bounds[0];
 }
&lt;/pre&gt;&lt;!--[CodeBlockEnd:b5ba6923-402e-44ca-9c8e-48a0eed88052]--&gt;&lt;div style="display:none;"&gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can anyone tell what I am missing? I am sure I need to handle something for the transformed items.&lt;/p&gt;&lt;p&gt;Please guide.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4f750993-6039-48d0-9aea-b76ecf697443] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">scaling</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">rotation</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">transformation</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign script</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">xy coordinates</category>
      <pubDate>Thu, 11 Sep 2014 08:28:38 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1572190</guid>
      <dc:date>2014-09-11T08:28:38Z</dc:date>
      <clearspace:dateToText>2 months 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Communicate between html extension and c++ plugin</title>
      <link>https://forums.adobe.com/thread/1566281</link>
      <description>&lt;!-- [DocumentBodyStart:d40f5e9d-4f48-452b-b93e-24cff2356a6c] --&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 developing a html extension for InDesign CC2014. There is a scenario where I need to communicate between the extension and C++ InDesign plugin.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I followed the instructions at &lt;a class="jive-link-external-small" href="http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/cs-extension-builder/pdfs/CC_Extension_SDK.pdf" rel="nofollow"&gt;http://wwwimages.adobe.com/content/dam/Adobe/en/devnet/cs-extension-builder/pdfs/CC_Extens ion_SDK.pdf&lt;/a&gt; and wrote the extension part of the code. The c++ part of the code hasn't changed from the Flex versions so had no problem there.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I tried to invoke the extension from the plugin and it worked. I registered an event in the plugin to listen for and dispatched another event from the plugin. But the panel doesn't seem to listen or dispatch any event. On the c++ plugin part, the registration and dispatch error codes returned were success codes so the problem is not with the plugin.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is the code for the html panel,&lt;/p&gt;&lt;p&gt;I register the event to listen for at the time of page load.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:aa552e45-efd9-460c-a5af-fc3c558ca494][excluded]--&gt;&lt;pre class="javascript" name="code"&gt;
function onLoaded() {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var csInterface = new CSInterface();

 // Register the named event handler
&amp;nbsp; csInterface.addEventListener("com.mypluginevent.test", myEventHandler); 

}
//Create a named event handler callback function
function myEventHandler(event)
{
&amp;nbsp; alert("Event captured!");
}

// This function is called on a button click
function onClick()
{
&amp;nbsp; // Create your local CSInterface instance
&amp;nbsp; var csInterface = new CSInterface();
&amp;nbsp; var event = new CSEvent("com.myhtmlevent.test", "APPLICATION"); 

&amp;nbsp; event.data = "This is a test!";
&amp;nbsp; csInterface.dispatchEvent(event);
}
&lt;/pre&gt;&lt;!--[CodeBlockEnd:aa552e45-efd9-460c-a5af-fc3c558ca494]--&gt;&lt;div style="display:none;"&gt;&lt;/div&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;Here is the C++ part of the code where I dispatch the "com.mypluginevent.test" event.&lt;/p&gt;&lt;!--[CodeBlockStart:ba55313c-4a27-4f8a-aa06-7f9a98be01f4][excluded]--&gt;&lt;pre class="c++" name="code"&gt;
csxs::event::Event event = {"com.mypluginevent.test",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; csxs::event::kEventScopeApplication,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "myEventHandler",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NULL,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NULL};

csxs::event::EventErrorCode err = sdkPlugPlugInstance.DispatchEvent(&amp;amp;event);
&lt;/pre&gt;&lt;!--[CodeBlockEnd:ba55313c-4a27-4f8a-aa06-7f9a98be01f4]--&gt;&lt;div style="display:none;"&gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I always get success on dispatching the event, yet the extension does not catch it.&lt;/p&gt;&lt;p&gt;Can anyone tell what I am doing wrong?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d40f5e9d-4f48-452b-b93e-24cff2356a6c] --&gt;</description>
      <pubDate>Fri, 05 Sep 2014 06:39:12 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1566281</guid>
      <dc:date>2014-09-05T06:39:12Z</dc:date>
      <clearspace:dateToText>2 months 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to get certain applied styles using script?</title>
      <link>https://forums.adobe.com/thread/1556618</link>
      <description>&lt;!-- [DocumentBodyStart:082f9557-ac87-4a5a-86ef-90fb2e3ca514] --&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 need to know how to get certain applied styles using ID Scripting. I don't have much experience in InDesign so need some help.&lt;/p&gt;&lt;p&gt;Here is a screenshot with a sample text with the said styles applied and highlighted.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6670505-664573/screenshot.png"&gt;&lt;img alt="screenshot.png" class="jive-image image-1" height="526" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6670505-664573/900-526/screenshot.png" style="height: 363px; width: 620px;" width="900"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need to know what texts in my document have these styles applied like All Caps, Strikethrough, Underline, Subscript and Superscript etc.&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&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:082f9557-ac87-4a5a-86ef-90fb2e3ca514] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign scripting</category>
      <pubDate>Mon, 25 Aug 2014 06:27:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1556618</guid>
      <dc:date>2014-08-25T06:27:25Z</dc:date>
      <clearspace:dateToText>2 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>11</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Are there spaces induced in XML created using Flex?</title>
      <link>https://forums.adobe.com/thread/1550392</link>
      <description>&lt;!-- [DocumentBodyStart:e6c3bfa4-4f4d-4841-92bc-cbdeecfb80de] --&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 developing an extension for ID CS above using Flash Builder 4.6, Extension Builder 2.1.&lt;/p&gt;&lt;p&gt;My extension requires some sample output in the form of xml files. These xml files are then parsed by some software at the client's end.&lt;/p&gt;&lt;p&gt;The xml is created using the XML class of Flex.&lt;/p&gt;&lt;p&gt;The problem is that there are some spaces induced in the xml when a child is added to a node. For eg,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:4b12014f-d1be-41e7-9b53-468bc0b66af3][excluded]--&gt;&lt;pre class="javascript" name="code"&gt;
&amp;lt;root&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Child&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Os enis eium es
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Child1 some_attributes&amp;gt;q&amp;lt;/fo:inline&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Child1 some_attributes&amp;gt;u&amp;lt;/fo:inline&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Child1 some_attributes&amp;gt;a&amp;lt;/fo:inline&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Child1 some_attributes&amp;gt;s&amp;lt;/fo:inline&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; evelit lab ipicto et volut
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Child1 some_attributes&amp;gt;user/firstname&amp;lt;/fo:inline&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; doluptus.
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Child&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Child&amp;gt;As dis&amp;lt;/Child&amp;gt;
&amp;lt;/root&amp;gt;
&lt;/pre&gt;&lt;!--[CodeBlockEnd:4b12014f-d1be-41e7-9b53-468bc0b66af3]--&gt;&lt;div style="display:none;"&gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When I examine the above xml, I see that there are some spaces before "Os enis eium es". I was taking them for the indentation that xml uses to distinguish between parent and child. Is this xml okay?&lt;/p&gt;&lt;p&gt;The expected output at the client's end is coming all wrong, it contains spaces and I suspect whether the xml might have some problem.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please guide.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e6c3bfa4-4f4d-4841-92bc-cbdeecfb80de] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">.xml</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">flex 4.6</category>
      <pubDate>Mon, 18 Aug 2014 08:28:52 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1550392</guid>
      <dc:date>2014-08-18T08:28:52Z</dc:date>
      <clearspace:dateToText>2 months 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Get coordinates of path of a text selection</title>
      <link>https://forums.adobe.com/thread/1267240</link>
      <description>&lt;!-- [DocumentBodyStart:e558ae62-2258-48f4-a552-b439e01ac920] --&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 want to get the coordinates of the path of the selection made on some text content. Is that possible?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e558ae62-2258-48f4-a552-b439e01ac920] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">scripting</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extendscript</category>
      <pubDate>Thu, 01 Aug 2013 12:55:48 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1267240</guid>
      <dc:date>2013-08-01T12:55:48Z</dc:date>
      <clearspace:dateToText>5 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>AI CC on Win 7 crashes on plugin install</title>
      <link>https://forums.adobe.com/thread/1479238</link>
      <description>&lt;!-- [DocumentBodyStart:776f91ca-2137-42a8-8ede-9d055a6769d0] --&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 had been working on porting an AI plugin from CS5 to CC targetting both Win (XP - 8) and Mac (Snow Leopard - Mavericks). The installer is a zxp that places the correct versions of plugins in the appropriate folders (32-bit and 64-bit included for Windows).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Everything works fine on Mac and Win - XP as well as Win 8.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem is in Win 7 for AI CC, for both 32-bit and 64-bit versions. The application crashes on startup. I am not able to find the problem as this happens on the client's machine. Everything works fine at our end. I have tested in different Win 7 machines and it works in each one of them. On the other hand, the crash is reproduced in each Win 7 system the client has tested.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For more understanding, I have attached the crash log sent by the client. Please take a look.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Problem signature:&lt;/p&gt;&lt;p&gt;&amp;nbsp; Problem Event Name: APPCRASH&lt;/p&gt;&lt;p&gt;&amp;nbsp; Application Name: Illustrator.exe&lt;/p&gt;&lt;p&gt;&amp;nbsp; Application Version: 17.0.0.256&lt;/p&gt;&lt;p&gt;&amp;nbsp; Application Timestamp: 51a87a49&lt;/p&gt;&lt;p&gt;&amp;nbsp; Fault Module Name: MY_PLUGIN.aip&lt;/p&gt;&lt;p&gt;&amp;nbsp; Fault Module Version: 16.0.0.0&lt;/p&gt;&lt;p&gt;&amp;nbsp; Fault Module Timestamp: 5368e3c3&lt;/p&gt;&lt;p&gt;&amp;nbsp; Exception Code: c0000005&lt;/p&gt;&lt;p&gt;&amp;nbsp; Exception Offset: 000000000001361f&lt;/p&gt;&lt;p&gt;&amp;nbsp; OS Version: 6.1.7601.2.1.0.256.48&lt;/p&gt;&lt;p&gt;&amp;nbsp; Locale ID: 1033&lt;/p&gt;&lt;p&gt;&amp;nbsp; Additional Information 1: b92d&lt;/p&gt;&lt;p&gt;&amp;nbsp; Additional Information 2: b92d3cef188eb9ebf7b76aed9731bb70&lt;/p&gt;&lt;p&gt;&amp;nbsp; Additional Information 3: 4c16&lt;/p&gt;&lt;p&gt;&amp;nbsp; Additional Information 4: 4c16f1b468adf5e45b544171c4a66f46&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Read our privacy statement online:&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp; &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://go.microsoft.com/fwlink/?linkid=104288&amp;amp;clcid=0x0409" rel="nofollow"&gt;http://go.microsoft.com/fwlink/?linkid=104288&amp;amp;clcid=0x0409&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If the online privacy statement is not available, please read our privacy statement offline:&lt;/p&gt;&lt;p&gt;&amp;nbsp; C:\Windows\system32\en-US\erofflps.txt&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;From the above crash log, I see that the plugin version is set as 16.0.0.0. How can I see the plugin version installed with AI CC?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any guidance will be really appreciated, Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:776f91ca-2137-42a8-8ede-9d055a6769d0] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">illustrator_cc</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">crashing_while_running_in_win7</category>
      <pubDate>Wed, 21 May 2014 07:33:04 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1479238</guid>
      <dc:date>2014-05-21T07:33:04Z</dc:date>
      <clearspace:dateToText>5 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to create and apply a condition to selected text?</title>
      <link>https://forums.adobe.com/thread/1477682</link>
      <description>&lt;!-- [DocumentBodyStart:b75d7973-fd94-4c23-8d9a-fb27ce957f14] --&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 new to InDesign scripting. I am using Flex 4.6, so I am using ActionScript. I want to apply conditional texts to some selected texts in my document. I understand the process manually. But am having problem doing it programmatically.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I see that there is a Condition class. I created an object of this class and tried to assign some values.&lt;/p&gt;&lt;p&gt;var nameCondition = new Condition();&lt;/p&gt;&lt;p&gt;nameCondition.indicatorMethod = ConditionIndicatorMethod.USE_UNDERLINE;&lt;/p&gt;&lt;p&gt;nameCondition.label = "Name";&amp;nbsp; // Couldn't understand what label stands for&lt;/p&gt;&lt;p&gt;nameCondition.name = "Name";&amp;nbsp; &lt;/p&gt;&lt;p&gt;nameCondition.visible = false;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now, when I debug, I see that the values that I assigned to nameCondition object are never assigned.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I also came across the appliedConditions method that is available in the app and doc levels. But, I am not sure how to use it.&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;/div&gt;&lt;!-- [DocumentBodyEnd:b75d7973-fd94-4c23-8d9a-fb27ce957f14] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign-conditional-text</category>
      <pubDate>Mon, 19 May 2014 14:07:13 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1477682</guid>
      <dc:date>2014-05-19T14:07:13Z</dc:date>
      <clearspace:dateToText>5 months 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to upload file to server?</title>
      <link>https://forums.adobe.com/thread/1467170</link>
      <description>&lt;!-- [DocumentBodyStart:4951b8df-f0ab-4a2e-a031-f539889b8bc8] --&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 a code to upload a zip file to client server. I am using Flash Builder 4.6, Extension Builder 2.1 on a Win 7 machine. My request includes login and password authentication and other params. I am sending the file contents as byte array. But, the return code I get from the server suggests that it does not receive any file. It gets null in the file parameter.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is my code,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;var request:URLRequest = new URLRequest("&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://" rel="nofollow"&gt;http://&lt;/a&gt;&lt;span&gt;&amp;lt;url&amp;gt;api/plugin.php/");&lt;/span&gt;&lt;/p&gt;&lt;p&gt;request.method = URLRequestMethod.POST;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var fileStream:FileStream = new FileStream();&lt;/p&gt;&lt;p&gt;fileStream.open(PKG_FILE, FileMode.READ);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var byteArr:ByteArray = new ByteArray();&lt;/p&gt;&lt;p&gt;fileStream.readBytes(byteArr, 0, fileStream.bytesAvailable);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;request.data = "login=" + &lt;/p&gt;&lt;p&gt;&amp;nbsp; LOGIN + &lt;/p&gt;&lt;p&gt;&amp;nbsp; "&amp;amp;password=" + &lt;/p&gt;&lt;p&gt;&amp;nbsp; MD5.hash(PASSWORD) + &lt;/p&gt;&lt;p&gt;&amp;nbsp; "&amp;amp;pkg=" + &lt;/p&gt;&lt;p&gt;&amp;nbsp; byteArr + &lt;/p&gt;&lt;p&gt;&amp;nbsp; "&amp;amp;pkg_name=" + &lt;/p&gt;&lt;p&gt;&amp;nbsp; PKG_NAME&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var loader:URLLoader = new URLLoader();&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;// Call OnSuccessfulExportif export completes&lt;/span&gt;&lt;/p&gt;&lt;p&gt;loader.addEventListener(Event.COMPLETE, OnSuccessfulExport);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;// Call OnUnsuccessfulExportif export failed&lt;/p&gt;&lt;p&gt;loader.addEventListener(IOErrorEvent.IO_ERROR, OnUnsuccessfulExport);&lt;/p&gt;&lt;p&gt;loader.load(request);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;======================================================&lt;/p&gt;&lt;p&gt;private function OnSuccessfulExport(event:Event):void&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp; trace(event);&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I get a callback on OnSuccessfulExport function, but the value returned from the server in event.target.data is that the server received no file.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Am I missing something here?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4951b8df-f0ab-4a2e-a031-f539889b8bc8] --&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">urlrequest</category>
      <pubDate>Tue, 06 May 2014 07:47:26 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1467170</guid>
      <dc:date>2014-05-06T07:47:26Z</dc:date>
      <clearspace:dateToText>6 months 1 week ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Error in installing a (ZXP Bundle and hybrid) extension</title>
      <link>https://forums.adobe.com/thread/1455155</link>
      <description>&lt;!-- [DocumentBodyStart:517c5ad9-b69f-4059-ac03-02c9e97623b3] --&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 developing an extension using Adobe Flash Builder 4.6, 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 extension requires creating a zxp bundle. I was able to create a zxp bundle that includes 10 zxp files. The intallation was successfull too. The problem came when I tried to make it a hybrid extension too. Somehow, when I created the combination of hybrid + zxp bundle, the resulting zxp fails to install. It gives an error message saying that the extension is not signed, and it requires the manifest file. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there a bug in Extension builder that we cannot create a zxp bundle and a hybrid extension? This problem occurs even when I tried including the Adobe resource libraries, like the host addapter libraries. I removed my stuff from the hybrid and just included the Adobe stuff. Still the same problem.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can anyone tell me what is wrong here?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:517c5ad9-b69f-4059-ac03-02c9e97623b3] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension_builder_2.1</category>
      <pubDate>Mon, 21 Apr 2014 09:03:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1455155</guid>
      <dc:date>2014-04-21T09:03:05Z</dc:date>
      <clearspace:dateToText>6 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Unable to install extension on AI CC on Mac</title>
      <link>https://forums.adobe.com/thread/1458958</link>
      <description>&lt;!-- [DocumentBodyStart:96b759fa-1e58-4430-b70c-749fe756607a] --&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 developing an extension for AI CS6 and CC for Win and Mac. My extension is a hybrid extension. Below are the contents of my mxi file.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;?xml version="1.0" encoding="UTF-8" standalone="no"?&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;macromedia-extension id="MyExt" name="MyExt" requires-restart="true" version="3.1"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;author name="Unknown"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;description/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;license-agreement/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;products&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;product bit="32" familyname="Illustrator" maxversion="17.9" primary="true" version="16.0"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;product bit="64" familyname="Illustrator" maxversion="17.9" primary="true" version="16.0"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/products&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;files&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;file destination="$plugin" file-type="plugin" maxVersion="17.9" minVersion="17.0" platform="mac" products="Illustrator" source="CC/Mac/MyExt.aip"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;file destination="$plugin" file-type="plugin" maxVersion="16.9" minVersion="16.0" platform="mac" products="Illustrator" source="CS6/Mac/MyExt.aip"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;file destination="$plugin" file-type="plugin" maxVersion="16.9" minVersion="16.0" platform="win" products="Illustrator32" source="CS6/Win/32Bit/MyExt.aip"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;file destination="$plugin" file-type="plugin" maxVersion="16.9" minVersion="16.0" platform="win" products="Illustrator64" source="CS6/Win/64Bit/MyExt.aip"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;file destination="$plugin" file-type="plugin" maxVersion="17.9" minVersion="17.0" platform="win" products="Illustrator32" source="CC/Win/32Bit/MyExt.aip"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;file destination="$plugin" file-type="plugin" maxVersion="17.9" minVersion="17.0" platform="win" products="Illustrator64" source="CC/Win/64Bit/MyExt.aip"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;lt;/files&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/macromedia-extension&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The installation on my Windows 7 goes well on both the Illustrator versions and my extension and plugins are installed properly. But on my Mac machine (OS X 10.6.8), when I try to install the zxp on AI CC, the Extension Manager CC gives the error message,&lt;/p&gt;&lt;p&gt;"&lt;strong&gt;This extension cannot be installed, it requires Illustrator version in range of inclusively between 16.0 and 17.9&lt;/strong&gt;"&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now, I don't understand this because my AI CC version is 17.1.0 and Extension Manager version is 7.1.1.32&lt;/p&gt;&lt;p&gt;Interestingly, the extension is installed properly without any errors on AI CS6 on the same machine. Extension Manager version is 6.0.0.412 and AI CS6 version is 16.0.0.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please guide.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:96b759fa-1e58-4430-b70c-749fe756607a] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">illustrator_cc</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension_manager_cc</category>
      <pubDate>Fri, 25 Apr 2014 09:04:29 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1458958</guid>
      <dc:date>2014-04-25T09:04:29Z</dc:date>
      <clearspace:dateToText>6 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Query related to MultiArrowTool sample in AI CS6</title>
      <link>https://forums.adobe.com/thread/1432383</link>
      <description>&lt;!-- [DocumentBodyStart:6f102bae-576d-47e1-bc7b-e80a76d020d8] --&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 was going through the MultiArrowTool sample in the AI CS6 sdk. I came across the following in the file MultiArrowToolPlugin.cpp&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;#define kHeadArrowTool&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "$$$/MulitiArrowTool/Str/HeadArrowTool=Head Arrow Tool"&lt;/p&gt;&lt;p&gt;#define kTailArrowTool&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "$$$/MulitiArrowTool/Str/TailArrowTool=Tail Arrow Tool"&lt;/p&gt;&lt;p&gt;#define kBothEndsArrowTool&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "$$$/MulitiArrowTool/Str/BothEndsArrowTool=Both Ends Arrow Tool"&lt;/p&gt;&lt;p&gt;#define kStraightLineTool&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "$$$/MulitiArrowTool/Str/StraightLineTool=Straight Line Tool"&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I did not understand the significance and meaning of the above. What does "$$$" denote? Is it some kind of path, because it looks like it. Yet, I couldn't find any path like it. And what is "Str"? I couldn't find these answers anywhere.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Note that there is a spelling mistake in the above string. "MultiArrowTool" is spelled "MulitiArrowTool".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please clarify.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank you!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:6f102bae-576d-47e1-bc7b-e80a76d020d8] --&gt;</description>
      <pubDate>Thu, 20 Mar 2014 13:31:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1432383</guid>
      <dc:date>2014-03-20T13:31:49Z</dc:date>
      <clearspace:dateToText>7 months 4 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Panel components do not load.</title>
      <link>https://forums.adobe.com/thread/1378152</link>
      <description>&lt;!-- [DocumentBodyStart:d4af13a4-884f-4041-b371-5040a19fdf2d] --&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 developing a Flex extension for InDesign CS5 above. I am using Flex 4.6, EB 2.1. The UI is simple, just contains a button. On the application complete, I just initialize an object of a class. My problem is that sometimes, the button on the panel just doesn't load. For eg., if I close the ID application without closing the panel, and then re-open the application, normally, the panel should load fine with its components. But here, the button is not visible. I have to close the panel, and then re-open it to get the button to load. There is no specific pattern. I tried finding out the problem by setting up alerts in the pre-initialize, initialize, creation complete and app complete events. But these events are not triggered.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am in a fix. It doesn't feel right that the user should close the panel and re-open it, to get the extension to work.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Anything I can do to fix it?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Just noticed on repetitive testing that the problem seems to occur in ID CS6.. Any input?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Message was edited by: poortip87&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d4af13a4-884f-4041-b371-5040a19fdf2d] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">flex</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">flex-4.6</category>
      <pubDate>Mon, 13 Jan 2014 08:16:52 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1378152</guid>
      <dc:date>2014-01-13T08:16:52Z</dc:date>
      <clearspace:dateToText>8 months 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to add icons to the status bar in my extension?</title>
      <link>https://forums.adobe.com/thread/1409294</link>
      <description>&lt;!-- [DocumentBodyStart:5bc484e3-e08a-49cc-b6ec-4fb1e59330f8] --&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;Many times I need to have some icons/buttons in the status bar of my panel. But I always got stuck implementing it and had to leave it due to time crunches. But now, I need to know how we add icons/buttons in CS Extension. Here is what I am talking about. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;As you can see in the image below, this is a screenshot of the Kuler extension. The encircled part in the image shows some icons in the status bar. How can I do the same in my extension? I searched, but couldn't find a way. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6131203-551264/status_bar.jpg"&gt;&lt;img alt="status_bar.jpg" class="jive-image jive-image-thumbnail" height="253" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6131203-551264/450-253/status_bar.jpg" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please guide.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5bc484e3-e08a-49cc-b6ec-4fb1e59330f8] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">creative_suite_extension</category>
      <pubDate>Tue, 18 Feb 2014 07:50:37 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1409294</guid>
      <dc:date>2014-02-18T07:50:37Z</dc:date>
      <clearspace:dateToText>8 months 4 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Panel components do not load.</title>
      <link>https://forums.adobe.com/thread/1379055</link>
      <description>&lt;!-- [DocumentBodyStart:8e7dc90f-bfe0-4158-b605-c9699e796c24] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I am developing a Flex extension for InDesign CS5 above. The UI is simple, just contains a button. On the application complete, I just initialize an object of a class. My problem is that sometimes, the button on the panel just doesn't load. For eg., if I close the ID application without closing the panel, and then re-open the application, normally, the panel should load fine with its components. But here, the button is not visible. I have to close the panel, and then re-open it to get the button to load. There is no specific pattern. I tried finding out the problem by setting up alerts in the pre-initialize, initialize, creation complete and app complete events. But these events are not triggered.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I am in a fix. It doesn't feel right that the user should close the panel and re-open it, to get the extension to work.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Anything I can do to fix it?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Thanks.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Just noticed on repetitive testing that the problem seems to occur in ID CS6 on Windows 7, 8.. Any input?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8e7dc90f-bfe0-4158-b605-c9699e796c24] --&gt;</description>
      <pubDate>Tue, 14 Jan 2014 06:49:35 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1379055</guid>
      <dc:date>2014-01-14T06:49:35Z</dc:date>
      <clearspace:dateToText>9 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Panel fails to load on ID CS6, Win 7/8</title>
      <link>https://forums.adobe.com/thread/1382260</link>
      <description>&lt;!-- [DocumentBodyStart:60aa01e1-0cfa-4a2c-a55a-0f88e8aa3d39] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I am developing a Flex extension for InDesign CS6 using Flash Builder 4.6, Extension Builder 2.1. The UI is simple, just contains a button. On the application complete, I just initialize an object of a class. My problem is that sometimes, the button on the panel just doesn't load. For eg., if I close the ID application without closing the panel, and then re-open the application, normally, the panel should load fine with its components. But here, the button is not visible. I have to close the panel, and then re-open it to get the button to load. There is no specific pattern. I tried finding out the problem by setting up alerts in the pre-initialize, initialize, creation complete and app complete events. But these events are not triggered.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;On further testing, I found that if the panel is moved (eg. dragging the panel using the mouse), the panel loads instantly. Is there a bug in InDesign CS6, beacuse the extension loads just fine in other versions? Specifically the Win OS poses a problem. The one in Mac OS loads fine.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Anything I can do to fix it?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Thanks.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:60aa01e1-0cfa-4a2c-a55a-0f88e8aa3d39] --&gt;</description>
      <pubDate>Fri, 17 Jan 2014 13:04:15 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1382260</guid>
      <dc:date>2014-01-17T13:04:15Z</dc:date>
      <clearspace:dateToText>9 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Panel components do not load.</title>
      <link>https://forums.adobe.com/thread/1378153</link>
      <description>&lt;!-- [DocumentBodyStart:f4c27b62-bf6e-44ac-ba84-ad79238caced] --&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 developing a Flex extension for InDesign CS5 above. The UI is simple, just contains a button. On the application complete, I just initialize an object of a class. My problem is that sometimes, the button on the panel just doesn't load. For eg., if I close the ID application without closing the panel, and then re-open the application, normally, the panel should load fine with its components. But here, the button is not visible. I have to close the panel, and then re-open it to get the button to load. There is no specific pattern. I tried finding out the problem by setting up alerts in the pre-initialize, initialize, creation complete and app complete events. But these events are not triggered.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am in a fix. It doesn't feel right that the user should close the panel and re-open it, to get the extension to work.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Anything I can do to fix it?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Just noticed on repetitive testing that the problem seems to occur in ID CS6.. Any input?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Message was edited by: poortip87&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f4c27b62-bf6e-44ac-ba84-ad79238caced] --&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>Mon, 13 Jan 2014 08:17:35 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1378153</guid>
      <dc:date>2014-01-13T08:17:35Z</dc:date>
      <clearspace:dateToText>9 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Panel fails to load on ID CS6, Win 7/8</title>
      <link>https://forums.adobe.com/thread/1382330</link>
      <description>&lt;!-- [DocumentBodyStart:e69ac466-9d51-4c65-a964-9402c0bcaccb] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I am developing a Flex extension for InDesign CS6 using Flash Builder 4.6, Extension Builder 2.1. The UI is simple, just contains a button. On the application complete, I just initialize an object of a class. My problem is that sometimes, the button on the panel just doesn't load. For eg., if I close the ID application without closing the panel, and then re-open the application, normally, the panel should load fine with its components. But here, the button is not visible. I have to close the panel, and then re-open it to get the button to load. There is no specific pattern. I tried finding out the problem by setting up alerts in the pre-initialize, initialize, creation complete and app complete events. But these events are not triggered.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;On further testing, I found that if the panel is moved (eg. dragging the panel using the mouse), the panel loads instantly. Is there a bug in InDesign CS6, beacuse the extension loads just fine in other versions? Also, this problem occurs in Win 7 and 8. It works fine on Win XP. The one in Mac OS loads fine.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Anything I can do to fix it?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Thanks.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e69ac466-9d51-4c65-a964-9402c0bcaccb] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign_cs6</category>
      <pubDate>Fri, 17 Jan 2014 14:32:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1382330</guid>
      <dc:date>2014-01-17T14:32:05Z</dc:date>
      <clearspace:dateToText>9 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Panel fails to initialize on ID CS6 on Windows</title>
      <link>https://forums.adobe.com/thread/1391418</link>
      <description>&lt;!-- [DocumentBodyStart:47a7ee56-86e1-417f-a32a-f3b191c9a53e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I am developing a Flex extension for InDesign CS5 - CC using Flash Builder 4.6, Extension Builder 2.1. The UI is simple, just contains a button. On the application complete, I just initialize an object of a class. My problem is that sometimes, the button on the panel just doesn't load. For eg., if I close the ID application without closing the panel, and then re-open the application, normally, the panel should load fine with its components. But here, the button is not visible. I have to close the panel, and then re-open it to get the button to load. There is no specific pattern.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I added function calls to all the events below:&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;- preinitialize&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;- initialize&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;- creationComplete&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;- applicationComplete&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;But, I do not get any callbacks to these functions.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;&lt;span style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; background-color: #e7e7e7;"&gt;On further testing, I found that if the panel is moved (eg. dragging the panel using the mouse), the panel loads instantly. Is there a bug in InDesign CS6, beacuse the extension loads just fine in other versions?&lt;/span&gt; &lt;span style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; background-color: #e7e7e7;"&gt;The one in Mac OS loads fine.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;&lt;span style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; background-color: #e7e7e7;"&gt;Below is a screenshot of the mxml file.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;&lt;span style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; background-color: #e7e7e7;"&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6059493-541935/shot.jpg"&gt;&lt;img alt="shot.jpg" class="jive-image jive-image-thumbnail" height="256" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6059493-541935/450-256/shot.jpg" width="450"/&gt;&lt;/a&gt;&lt;br/&gt;&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: adobe-clean, 'Helvetica Neue', Arial, sans-serif; background-color: #e7e7e7;"&gt;What is going wrong?&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: adobe-clean, 'Helvetica Neue', Arial, sans-serif; background-color: #e7e7e7;"&gt;Please help. Its urgent.&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:47a7ee56-86e1-417f-a32a-f3b191c9a53e] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign</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">cs6</category>
      <pubDate>Tue, 28 Jan 2014 07:47:38 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1391418</guid>
      <dc:date>2014-01-28T07:47:38Z</dc:date>
      <clearspace:dateToText>9 months 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Get paragraph style details of text layer</title>
      <link>https://forums.adobe.com/thread/1325629</link>
      <description>&lt;!-- [DocumentBodyStart:4b03f470-32aa-475f-a0c7-47dbfc7374cf] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I am developing an extension for Photoshop CS6 onwards. I want to get the paragraph style and its properties of my text layer. If I apply a new style and try to get the properties, I always get the Basic Paragraph properties and not the properties of the applied style. I am unable to understand this behaviour. Here is the code I am using,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;var curLayer = app.activeDocument.activeLayer;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;var activeTextItem = curLayer.textItem;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;if(activeTextItem.contents != "")&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;{&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(activeTextItem.font);&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I always get the font details of the Basic Paragraph style.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Am I missing something?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4b03f470-32aa-475f-a0c7-47dbfc7374cf] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cs6</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">photoshop_scripting</category>
      <pubDate>Thu, 31 Oct 2013 14:08:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1325629</guid>
      <dc:date>2013-10-31T14:08:54Z</dc:date>
      <clearspace:dateToText>10 months 5 days ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Get text selection and properties</title>
      <link>https://forums.adobe.com/thread/1360967</link>
      <description>&lt;!-- [DocumentBodyStart:d1f56b8c-1c8b-481e-8027-b1292031313e] --&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 need to get the text selection in my active document so that I can access the properties of selected text like paragraphs, font styles, colors etc.&lt;/p&gt;&lt;p&gt;I wrote the following script to get text selection,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var objDoc = app.activeDocument;&lt;/p&gt;&lt;p&gt;var objText = app.selection[0];&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This gives me objText as a Text object. When I try to access paragraphs in this text, I get the full contents of the para, not just the ones in the selection. I do not want this. I want to access properties in just the text selection.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I achieve this?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d1f56b8c-1c8b-481e-8027-b1292031313e] --&gt;</description>
      <pubDate>Wed, 18 Dec 2013 13:36:12 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1360967</guid>
      <dc:date>2013-12-18T13:36:12Z</dc:date>
      <clearspace:dateToText>10 months 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Apply HTML formatting to text</title>
      <link>https://forums.adobe.com/thread/1356646</link>
      <description>&lt;!-- [DocumentBodyStart:1ea3d47a-5e0a-47f0-9901-cc3b8be11a11] --&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;Is there any class or API in Flex that can apply HTML formatting to text. I mean suppose there is a text as follows:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="color: #000000; font-family: 'Times New Roman'; font-size: medium;"&gt;This is the first para having some text in &lt;strong&gt;bold&lt;/strong&gt; and &lt;em&gt;italic&lt;/em&gt;&lt;/p&gt;&lt;p style="color: #000000; font-family: 'Times New Roman'; font-size: medium;"&gt;From the second para you can open google in the browser from the link &lt;a class="jive-link-external-small" href="http://google.com/" rel="nofollow"&gt;www.google.com&lt;/a&gt;&lt;/p&gt;&lt;p style="color: #000000; font-family: 'Times New Roman'; font-size: medium;"&gt;&lt;span style="color: #0000ff;"&gt;This para contains text in blue color.&lt;/span&gt;&lt;/p&gt;&lt;p style="color: #000000; font-family: 'Times New Roman'; font-size: medium;"&gt;The following is an unordered list:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Item 1&lt;/li&gt;&lt;li&gt;Item 2&lt;/li&gt;&lt;li&gt;Item 3&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can the above text be formatted in HTML as follows,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;p&amp;gt;This is the first para having some text in &amp;lt;b&amp;gt;bold&amp;lt;/b&amp;gt; and &amp;lt;i&amp;gt;italic&amp;lt;/i&amp;gt;&amp;lt;/p&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;lt;p&amp;gt;From the second para you can open google in the browser from the link &amp;lt;a href="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://google.com" rel="nofollow" target="_blank"&gt;http://google.com&lt;/a&gt;&lt;span&gt;"&amp;gt;www.google.com&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;nbsp; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;lt;p&amp;gt;&amp;lt;span style="color:#0000ff"&amp;gt;This para contains text in blue color.&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;p&amp;gt;The following is an unordered list:&lt;/p&gt;&lt;p&gt;&amp;lt;ul&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;li&amp;gt;Item 1&amp;lt;/li&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;li&amp;gt;Item 2&amp;lt;/li&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;li&amp;gt;Item 3&amp;lt;/li&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;ul&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/p&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I will prefer if I do not have to do this manually. Is there any way?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1ea3d47a-5e0a-47f0-9901-cc3b8be11a11] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">flex-4.6</category>
      <pubDate>Thu, 12 Dec 2013 11:47:45 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1356646</guid>
      <dc:date>2013-12-12T11:47:45Z</dc:date>
      <clearspace:dateToText>11 months 2 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Save command currently not available</title>
      <link>https://forums.adobe.com/thread/1335531</link>
      <description>&lt;!-- [DocumentBodyStart:ce5c62d4-0010-4d6f-816a-48ddd8fc9592] --&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 have created a Photoshop plugin and it was working fine..Now suddenly I am facing an issue..On execution, I am getting an error "Save Command is currently not available". I have not changed anything in code. I am not able to trace the reason.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Earlier I thought that it is space issue and I vacated memory in my system. But no luck.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please guide.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ce5c62d4-0010-4d6f-816a-48ddd8fc9592] --&gt;</description>
      <pubDate>Thu, 14 Nov 2013 19:39:17 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1335531</guid>
      <dc:date>2013-11-14T19:39:17Z</dc:date>
      <clearspace:dateToText>11 months 1 month ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to get text justification using Action Manager?</title>
      <link>https://forums.adobe.com/thread/1329441</link>
      <description>&lt;!-- [DocumentBodyStart:f0931007-95e3-4643-a853-742a621c297d] --&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 have been trying get several properties of a text layer using action script in Photoshop CS6 and CC. But here I encounterd an issue which is a Photoshop bug. I see that when I create a text layer using the default values and then try to get some values like the text justification, I get an exception. I had encountered a similar issue earlier and had resolved it by getting the properties using Action Manager.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I get the text justification, alignment, leading, tracking values using Action Manager?&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;/div&gt;&lt;!-- [DocumentBodyEnd:f0931007-95e3-4643-a853-742a621c297d] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extendscript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cs6</category>
      <pubDate>Wed, 06 Nov 2013 08:42:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1329441</guid>
      <dc:date>2013-11-06T08:42:09Z</dc:date>
      <clearspace:dateToText>1 year 6 days ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Get paragraph style details of text layer.</title>
      <link>https://forums.adobe.com/thread/1325621</link>
      <description>&lt;!-- [DocumentBodyStart:1dd96e5c-6f98-4486-bcdd-b88254a2d16a] --&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 developing an extension for Photoshop CS6 onwards. I want to get the paragraph style and its properties of my text layer. If I apply a new style and try to get the properties, I always get the Basic Paragraph properties and not the properties of the applied style. I am unable to understand this behaviour. Here is the code I am using,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var curLayer = app.activeDocument.activeLayer;&lt;/p&gt;&lt;p&gt;var activeTextItem = curLayer.textItem;&lt;/p&gt;&lt;p&gt;if(activeTextItem.contents != "")&lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert(activeTextItem.font);&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I always get the font details of the Basic Paragraph style.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Am I missing something?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1dd96e5c-6f98-4486-bcdd-b88254a2d16a] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">photoshop</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">scripting</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">cs6</category>
      <pubDate>Thu, 31 Oct 2013 12:07:57 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1325621</guid>
      <dc:date>2013-10-31T12:07:57Z</dc:date>
      <clearspace:dateToText>1 year 2 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to use RoundedRectangle class in my mxml?</title>
      <link>https://forums.adobe.com/thread/1325542</link>
      <description>&lt;!-- [DocumentBodyStart:75716f29-4c04-497f-a324-2d2581cd2edf] --&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 dveloping an extension for CS 5.5 using Flash Builder 4.6. I came across the RoundedRectangle class in the mx.geom package. I wanted to use this in my mxml. But I am unable to do so. I am using Extension Builder 3.4 SDK. The RoundedRectangle is not recognized by the compiler.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please guide me. Am I missing something?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:75716f29-4c04-497f-a324-2d2581cd2edf] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">flex-4.6</category>
      <pubDate>Thu, 31 Oct 2013 08:58:00 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1325542</guid>
      <dc:date>2013-10-31T08:58:00Z</dc:date>
      <clearspace:dateToText>1 year 2 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Create extension for CS 5.x using Extension Builder 4.5</title>
      <link>https://forums.adobe.com/thread/1321921</link>
      <description>&lt;!-- [DocumentBodyStart:3179d75d-1863-45bf-b2ba-c5517065f7ff] --&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 want to build an extension for CS 5.x using Extension Builder 4.5. When I build my extension using Extension Builder 4.5 and install it in CS 5.5, my extension fails to initialize.&amp;nbsp; I know that Extension Builder 3.4 is recommended to build extensions for CS 5.x, but I want to be able to use spark components in my extension. I haven't been able to do this so far using Extension Builder 3.4. Is there any way I can achieve this?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3179d75d-1863-45bf-b2ba-c5517065f7ff] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension_builder</category>
      <pubDate>Fri, 25 Oct 2013 12:05:33 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1321921</guid>
      <dc:date>2013-10-25T12:05:33Z</dc:date>
      <clearspace:dateToText>1 year 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Adobe reader plugin not working</title>
      <link>https://forums.adobe.com/thread/1316131</link>
      <description>&lt;!-- [DocumentBodyStart:5ae3bacd-5275-4f98-92ef-ef0f1ec46fbe] --&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 have an adobe acrobat plugin which was working in Acrobat 9,10 and 11 and adobe reader 9,10, and 11. I had developed it using adobe sdk 9 and then signed it to make reader enable. It was working fine. But now I am facing an issue in reader 10 and 11. It is giving an error "database connection failed" but the same plugin is working fine in acrobat 10. I am not able to understand the cause of this issue.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;To trace the issue I just build the plugin using adobe acrobat 9 sdk and signed it again. The plugin got signed successfully. But when I used this plugin with reader 9 and 10 it showed the plugin menu but gave error message that "Invalid plugin detected". Adobe Reader will quit.". So this way I am not even able to trace that why it is not working with reader.&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;/div&gt;&lt;!-- [DocumentBodyEnd:5ae3bacd-5275-4f98-92ef-ef0f1ec46fbe] --&gt;</description>
      <pubDate>Wed, 16 Oct 2013 12:06:01 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1316131</guid>
      <dc:date>2013-10-16T12:06:01Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to create ControlBar in CSExtension?</title>
      <link>https://forums.adobe.com/thread/1307763</link>
      <description>&lt;!-- [DocumentBodyStart:cd5df6e2-eac1-4a20-8780-d0ba7bbf841a] --&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 have created a CSExtension for Illustrator CS 6 and CC versions. I am using Extension Builder 4.5 SDK. I want to have some components added in the control bar at the bottom of my panel. Till now I am unable to find a method to do so. In the design view, there is a "Control bar" property in the Properties panel. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5729170-467618/screenshot.jpg"&gt;&lt;img alt="screenshot.jpg" class="jive-image jive-image-thumbnail" height="253" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5729170-467618/450-253/screenshot.jpg" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;By checking it the following is created in the mxml file,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;csxs:controlBarContent&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;fx:Array/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/csxs:controlBarContent&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I tried adding button component inside the controlBarContent tag, but the extension doesn't show anything in the control bar.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What am I missing?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:cd5df6e2-eac1-4a20-8780-d0ba7bbf841a] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension_builder</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension_builder_2.1</category>
      <pubDate>Tue, 01 Oct 2013 19:19:15 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1307763</guid>
      <dc:date>2013-10-01T19:19:15Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to display check mark in CSXS fly-out menu?</title>
      <link>https://forums.adobe.com/thread/1306568</link>
      <description>&lt;!-- [DocumentBodyStart:b17bec05-43eb-4526-a619-fbba48c8399d] --&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 developing an extension for Illustrator CS 6 and CC versions on Win and Mac. I successfully created a fly-out menu for the extension. I need to display checked menu-items, .ie., display a check mark alongside the menu-item the user selects. Similar to the way native Flex extensions behave.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Here is a screenshot of what I want.&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5724444-461936/screenshot.jpg"&gt;&lt;img alt="screenshot.jpg" class="jive-image jive-image-thumbnail" height="495" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5724444-461936/450-495/screenshot.jpg" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I do this? I came across this link &lt;a class="jive-link-external-small" href="http://cssdk.adobesites.com/sdk/2.1/docs/WebHelp/programmers_guide/customizing_the_ui.htm" rel="nofollow"&gt;http://cssdk.adobesites.com/sdk/2.1/docs/WebHelp/programmers_guide/customizing_the_ui.htm&lt;/a&gt; that talks about customizing the panel menus. But there is no mention of checked items.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please guide.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b17bec05-43eb-4526-a619-fbba48c8399d] --&gt;</description>
      <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">extension_builder_2.1</category>
      <pubDate>Mon, 30 Sep 2013 10:15:30 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1306568</guid>
      <dc:date>2013-09-30T10:15:30Z</dc:date>
      <clearspace:dateToText>1 year 1 month ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Extension created for CS 5, 6 and CC versions in Flash Builder 4.6 fails to initialize</title>
      <link>https://forums.adobe.com/thread/1297675</link>
      <description>&lt;!-- [DocumentBodyStart:fe6d8d98-0bed-4fdd-af9c-47fcfab661ab] --&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 developing an extension for Illustrator CS5, 6 and CC versions. I am using Flash Builder 4.6 and Extension Builder 2.1 versions. When I create a new project, and add minimum support for CS5, I am unable to view the design view of the resulting project. I cannot understand why. If I add minimum support for CS6, then the design view works okay. What is this behaviour? &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Also, I was hoping to use spark datagrid in my extension as it supports smooth scrolling. I am not able to do that as well, as the extension never initializes.&lt;/p&gt;&lt;p&gt; Here is the screeshot of the compiler settings:&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5688029-394931/issue1.jpg"&gt;&lt;img alt="issue1.jpg" class="jive-image jive-image-thumbnail" height="253" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5688029-394931/450-253/issue1.jpg" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;And here is what I get, the error:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5688029-394932/issue.jpg"&gt;&lt;img alt="issue.jpg" class="jive-image jive-image-thumbnail" height="253" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5688029-394932/450-253/issue.jpg" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What can I do to do my work?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:fe6d8d98-0bed-4fdd-af9c-47fcfab661ab] --&gt;</description>
      <pubDate>Tue, 17 Sep 2013 06:30:39 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1297675</guid>
      <dc:date>2013-09-17T06:30:39Z</dc:date>
      <clearspace:dateToText>1 year 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Unable to include Spark components for my extension for CS 5</title>
      <link>https://forums.adobe.com/thread/1297756</link>
      <description>&lt;!-- [DocumentBodyStart:79a08186-a8ae-477f-9ac0-927a235d5101] --&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 develpoing an extension for Illustrator CS5 and I want to be able to use the Spark datagrid component. I am developing on Flash Builder 4.6. For this, the compiler sets the sdk to extension builder 3.4. I am not able to use the spark component even after including the namespace xmlns:s="library://ns.adobe.com/flex/spark"&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;But, if I remove support for CS5 and have an extension for CS6 and above and change the compiler settings to support extension builder 4.5 sdk, then the spark components are recognised.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Why can't I include spark components for my CS5 extension?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:79a08186-a8ae-477f-9ac0-927a235d5101] --&gt;</description>
      <pubDate>Tue, 17 Sep 2013 10:33:18 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1297756</guid>
      <dc:date>2013-09-17T10:33:18Z</dc:date>
      <clearspace:dateToText>1 year 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Smooth scrolling in mx:Datagrid</title>
      <link>https://forums.adobe.com/thread/1297036</link>
      <description>&lt;!-- [DocumentBodyStart:e6eaa1b7-b6f9-42f0-908d-23881aec915a] --&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 implementing a datagrid in my extension for Illustrator CS5, 6. I want to have smooth scrolling in it as there are images that are displayed in the grid. I am using an ItemRenderer for displaying images. It has one column. I searched the net and came across this &lt;a class="jive-link-external-small" href="http://blogs.adobe.com/aharui/2008/03/smooth_scrolling_list.html" rel="nofollow"&gt;blog&lt;/a&gt; by Alex Harui.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This example is for List. I wanted it for datagrid. I overrode my datagrid scrollhandler and placed the code from the above example. Everything works fine except the up scroll. If I drag the scroll bar up/down, it works fine. If I scroll down by mouse clicks, it works fine. But, if I scroll up by mouse clicks, the scroll bar scrolls fine, but the grid view isn't updated. The grid view just repeats the images like in a loop. I am unable to understand.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can anyone guide me?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e6eaa1b7-b6f9-42f0-908d-23881aec915a] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension_builder</category>
      <pubDate>Mon, 16 Sep 2013 13:51:42 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1297036</guid>
      <dc:date>2013-09-16T13:51:42Z</dc:date>
      <clearspace:dateToText>1 year 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Drag and drop to apply color to art.</title>
      <link>https://forums.adobe.com/thread/1292262</link>
      <description>&lt;!-- [DocumentBodyStart:caef285d-70b3-4641-a1e2-a86b19454530] --&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 designing a panel for Illustrator CS6 that displays colors in a datagrid as follows,&lt;/p&gt;&lt;p&gt;[Color] [Color_Name]&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I want to be able to apply color to any art by using the drag-n-drop from the panel to the document. Is it possible that I am able to detect the art on which the color was dropped so that I can apply the color?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:caef285d-70b3-4641-a1e2-a86b19454530] --&gt;</description>
      <pubDate>Mon, 09 Sep 2013 13:59:11 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1292262</guid>
      <dc:date>2013-09-09T13:59:11Z</dc:date>
      <clearspace:dateToText>1 year 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Get interface settings of CS6 application.</title>
      <link>https://forums.adobe.com/thread/1292303</link>
      <description>&lt;!-- [DocumentBodyStart:269d1368-14c2-462c-9716-b21e7097fce1] --&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 developing an extension for Photoshop CS6. I need to change its theme so that it matches the theme of Photoshop. I mean, if a user changes the interface settings of Photoshop from Edit-&amp;gt;Preferences-&amp;gt;Interface, then I need to change the theme settings for my panel too, similar to the way the native panels behave. Here is a screenshot to explain better,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5665294-389787/interface.jpg"&gt;&lt;img alt="interface.jpg" class="jive-image jive-image-thumbnail" height="239" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5665294-389787/450-239/interface.jpg" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I know that it is possible. Please guide me in the right direction.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:269d1368-14c2-462c-9716-b21e7097fce1] --&gt;</description>
      <pubDate>Mon, 09 Sep 2013 14:32:21 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1292303</guid>
      <dc:date>2013-09-09T14:32:21Z</dc:date>
      <clearspace:dateToText>1 year 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Unable to get rgb value from cmyk</title>
      <link>https://forums.adobe.com/thread/1275317</link>
      <description>&lt;!-- [DocumentBodyStart:bb0e5816-bc63-474c-be3f-ea1fc31694f3] --&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 have been trying to get color values used in my InDesign document in both cmyk and rgb mode. I do so by converting the colorspace of each color in the document to rgb if its in cmyk and then getting the colorValue of the color. Then, I revert the colorspace back to the original one. But, I am experiencing problems in this. Here is a screenshot to explain my problem better,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5593095-374331/issue.jpg"&gt;&lt;img alt="issue.jpg" class="jive-image jive-image-thumbnail" height="253" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5593095-374331/450-253/issue.jpg" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;As you can see from the above screenshot, when the trace(tempColor.colorValue); statement is executed, the value 0,0,100,0 is traced. When the tempColor.space = ColorSpace.RGB; is executed, the values in rgb mode can be seen in the debugger. But, as soon as the next statement is executed, the color.colorValue changes to cmyk. I am unable to get the rgb mode value.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I do this?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:bb0e5816-bc63-474c-be3f-ea1fc31694f3] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign_cs5</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">scripting</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extendscript</category>
      <pubDate>Wed, 14 Aug 2013 08:04:31 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1275317</guid>
      <dc:date>2013-08-14T08:04:31Z</dc:date>
      <clearspace:dateToText>1 year 3 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Dll missing issue</title>
      <link>https://forums.adobe.com/thread/1259689</link>
      <description>&lt;!-- [DocumentBodyStart:254384cb-daeb-497e-8259-a568c16f4e96] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I have created an automation plugin and I am using a code snippet in this plugin created by listener to use a third party&amp;nbsp; plugin. When I execute that code I am getting "filechck.dll missing"error. I tried to solve this by placing the dll in plugin folder and the photosop exe folder but no use.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Then I tried to load this dll via my plugin using&lt;/p&gt;&lt;p&gt;HINSTANCE loadDll1 = LoadLibraryA("C:\\Program Files\\Adobe\\Adobe Photoshop CS5\\Plug-ins\\Athentech\\PCPlugin\\filechck.dll");&lt;/p&gt;&lt;p&gt;But still I am facing this issue.&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;One other method that struck my mind is to initialize that plugin via my plugin so that all the dlls that are used by that third party plugin gets loaded to photoshop. But I don't know how to do this.&lt;/p&gt;&lt;p&gt;Can you please help me on this?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:254384cb-daeb-497e-8259-a568c16f4e96] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">windows</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">plug-in</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">sdk</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">photshop</category>
      <pubDate>Mon, 22 Jul 2013 10:09:06 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1259689</guid>
      <dc:date>2013-07-22T10:09:06Z</dc:date>
      <clearspace:dateToText>1 year 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to get the fitting options of an image?</title>
      <link>https://forums.adobe.com/thread/1267283</link>
      <description>&lt;!-- [DocumentBodyStart:b9891c65-160b-4631-8be8-166e56f103ba] --&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 want to get the fitting options of a page-item. It can be a text-frame or an image. I searched, but found methods to set fitting options, not to get them. How can I get them?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any help will be appreciated.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b9891c65-160b-4631-8be8-166e56f103ba] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">scripting</category>
      <pubDate>Thu, 01 Aug 2013 14:25:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1267283</guid>
      <dc:date>2013-08-01T14:25:24Z</dc:date>
      <clearspace:dateToText>1 year 3 months ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Getting incorrect coordinates, width/height of page-item in actionscript.</title>
      <link>https://forums.adobe.com/thread/1261338</link>
      <description>&lt;!-- [DocumentBodyStart:39a6b885-9fb6-43d8-95a6-e9c1b230b229] --&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 developing a Flex extension for InDesign CS5. I am trying to get the coordinates and width/height of a page-item. But, I keep getting incorrect data. Please refer screenshot. The coordinates as I see in the InDesign application are 38.8, 66.02, 117.5, 160.5.&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5533269-366217/ind.jpg"&gt;&lt;img alt="ind.jpg" class="jive-image jive-image-thumbnail" height="253" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5533269-366217/450-253/ind.jpg" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I used the geometricBounds method to get the coordinates and width/height, but I am getting 29.70, 40.26, 222.07, 178.11. Please refer the screenshot.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5533269-366259/flex.jpg"&gt;&lt;img alt="flex.jpg" class="jive-image jive-image-thumbnail" height="188" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5533269-366259/450-188/flex.jpg" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I read somewhere that the coordinates can change with respect to the ruler settings, i.e., it depends on Ruler per Spread, Ruler per Page or Ruler on Spine. But, I couldn't find anything related to this with respect to actionscript.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I get the coordinates and width/height that I see in the InDesign application through actionscript?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:39a6b885-9fb6-43d8-95a6-e9c1b230b229] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">indesign_cs5</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">scripting</category>
      <pubDate>Wed, 24 Jul 2013 06:23:30 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1261338</guid>
      <dc:date>2013-07-24T06:23:30Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Unknown issue while applying effect using "exposure" plugin</title>
      <link>https://forums.adobe.com/thread/1258164</link>
      <description>&lt;!-- [DocumentBodyStart:0333525d-da66-4eb4-b7d7-68cda7ec2fe7] --&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 execute a third party plugin called "Exposure4" from my existing automation plugin. I have done something similar before too and had no problem. However, I have encountered some problems while executing this plugin from my automation plugin. I am able to build it and when I run it doesn't give any error message. But when I debug the code it returns - 1 error code. When I execute its equivalent javascript from extendscript it runs fine. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Then I tried to run the jsx from my plugin. But it is also not working. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please guide. Its really urgent.&lt;/p&gt;&lt;p&gt;I have tried hard but didn't got any clue.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0333525d-da66-4eb4-b7d7-68cda7ec2fe7] --&gt;</description>
      <pubDate>Fri, 19 Jul 2013 12:22:20 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1258164</guid>
      <dc:date>2013-07-19T12:22:20Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to traverse hyphenated nodes of an xml?</title>
      <link>https://forums.adobe.com/thread/1256521</link>
      <description>&lt;!-- [DocumentBodyStart:c0e4993b-f4cb-4953-9716-7dae501f784c] --&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 have an xml structure as follows,&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;lt;fo:root xmlns:fo="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/1999/XSL/Format" rel="nofollow" target="_blank"&gt;http://www.w3.org/1999/XSL/Format&lt;/a&gt;&lt;span&gt;" xmlns:ucreate="&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.xmpie.com/ucreate" rel="nofollow" target="_blank"&gt;http://www.xmpie.com/ucreate&lt;/a&gt;&lt;span&gt;"&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;fo:layout-master-set&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;fo:simple-page-master&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/fo:simple-page-master&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/fo:layout-master-set&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/fo:root&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now, I need to traverse this structure. This is not possible in the usual manner like xml.fo:layout-master-set. Flex gives a compile error here. On searching I found that I could traverse to fo:layout-master-set via the namespace. As follows,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var foNm:Namespace = xml.namespace("fo");&lt;/p&gt;&lt;p&gt;var childNode:XMLList = xml.foNm::["layout-master-set"];&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;After execution, childNode holds the correct list which is for layout-master-set.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;However, I need to traverse to simple-page-master node. I tried to do that in a similar manner.&lt;/p&gt;&lt;p&gt;var childNode:XMLList = xml.foNm::["simple-page-master"];&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;But in this case childNode comes up empty. How can I do this?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please guide.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c0e4993b-f4cb-4953-9716-7dae501f784c] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">as3</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">flex</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">actionscript</category>
      <pubDate>Wed, 17 Jul 2013 12:33:40 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1256521</guid>
      <dc:date>2013-07-17T12:33:40Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to compress a folder and its contents?</title>
      <link>https://forums.adobe.com/thread/1251532</link>
      <description>&lt;!-- [DocumentBodyStart:052f3e8f-7df6-4f5a-bcc6-7aa99890488c] --&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 require a functionality to compress a folder containing some images, pdf documents, some xml files, and a resource folder containing images. How can I do that? I came across the ByteArray.compress() method but I couldn't find a way to use it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I solve this?&lt;/p&gt;&lt;p&gt;I want to zip the folders without using any third part libraries if possible.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:052f3e8f-7df6-4f5a-bcc6-7aa99890488c] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">as3</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">flex</category>
      <pubDate>Wed, 10 Jul 2013 10:53:51 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1251532</guid>
      <dc:date>2013-07-10T10:53:51Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to disable a menu-item created by CSXSInterface.setPanelMenu method?</title>
      <link>https://forums.adobe.com/thread/1250836</link>
      <description>&lt;!-- [DocumentBodyStart:811ae4c7-52a4-4072-aa74-096d25af8f3a] --&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 have created a flyout menu for my panel using the com.adobe.csxs.core.CSXSInterface.setPanelMenu(xmlMenu) method. The xmlMenu contains the following:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;Menu&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;MenuItem Label="Menu1"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;MenuItem Label="Menu2"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;MenuItem Label="Menu3"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;MenuItem Label="---"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;MenuItem Label="Menu4"/&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;/Menu&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I disable a menuitem? What do I need to do for it?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any help will be appreciated.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:811ae4c7-52a4-4072-aa74-096d25af8f3a] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">panel</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">creative_suite</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=1">extension_development</category>
      <pubDate>Tue, 09 Jul 2013 15:19:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1250836</guid>
      <dc:date>2013-07-09T15:19:25Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Problem in signing plugin</title>
      <link>https://forums.adobe.com/thread/1249582</link>
      <description>&lt;!-- [DocumentBodyStart:998bb64b-6974-4185-a51e-c7991e9a8cc0] --&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 sign a plugin to make it Reader enabled using signplugin.exe, but I am getting an error which says, "Can't update resource in plugin". I have followed all the steps mentioned in the SDK. Here is a screenshot of the cmd prompt. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-5483544-357856/a.png"&gt;&lt;img alt="a.png" class="jive-image jive-image-thumbnail" height="240" onclick="" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5483544-357856/450-240/a.png" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please guide me if I am missing something.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:998bb64b-6974-4185-a51e-c7991e9a8cc0] --&gt;</description>
      <pubDate>Sun, 07 Jul 2013 18:15:41 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1249582</guid>
      <dc:date>2013-07-07T18:15:41Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>9</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>is it possible to create a link on the content of a text annotation??</title>
      <link>https://forums.adobe.com/thread/858664</link>
      <description>&lt;!-- [DocumentBodyStart:8f6ba109-4e9e-4702-a4c9-e08ab55c91f3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Is it possible to create a link on the content of a annotation??? Like the content of an annotation is some notes as well as a link...&lt;/p&gt;&lt;p&gt;content -&lt;/p&gt;&lt;p&gt;this is my first annotation(notes)&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.google.co.in/(link" rel="nofollow"&gt;http://www.google.co.in/(link&lt;/a&gt;&lt;span&gt;)&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;is it possible to create a link for the url given in the content of an annotation??? On click on the url...it should get opened...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;please reply its really urgent....&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8f6ba109-4e9e-4702-a4c9-e08ab55c91f3] --&gt;</description>
      <pubDate>Tue, 31 May 2011 08:27:53 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/858664</guid>
      <dc:date>2011-05-31T08:27:53Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>7</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Use Flex UI in a PS plugin</title>
      <link>https://forums.adobe.com/thread/856092</link>
      <description>&lt;!-- [DocumentBodyStart:54e39e7d-45a6-4211-b8e1-1ca071026c77] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;p&gt;Hello!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am a relatively new user to Flex UI designing! Few days back, I thought of giving my PS plugins a Flex UI look! I searched the internet on some tutorials or guides, but there is very little information pertaining to that. The CS Extension Builder guide says that we can interact between Flex UI &amp;amp; a native application with the help of C++ PlugPlug library. There is a sample code in Illustrator SDK for the same by the name of FreeGrid (C++) &amp;amp; FreeGridUI(Flex UI) . But I couldn't find an equivalent in PS.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;On searching some more in this regard, I found that we can use the PlugPlug.h (&amp;amp; .cpp) with some changes into our C++ PS plugin code. I am stuck at this stage now. How do I go about from here??&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Guide me people..!!&amp;nbsp; &lt;img height="16px" src="http://wwwimages.adobe.com/www.adobe.com/adobeforums/images/emoticons/plain.gif" width="16px"/&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks! &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:54e39e7d-45a6-4211-b8e1-1ca071026c77] --&gt;</description>
      <pubDate>Tue, 24 May 2011 10:14:20 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/856092</guid>
      <dc:date>2011-05-24T10:14:20Z</dc:date>
      <clearspace:dateToText>1 year 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Add editable text box to an annotation</title>
      <link>https://forums.adobe.com/thread/1236252</link>
      <description>&lt;!-- [DocumentBodyStart:f454862d-349d-4a33-92dd-093ce998b898] --&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 have been trying to add editable text box to my custom annotation. So far, I have been successful in adding a static text to my annotation. Here is the code for that:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;// Read in the stream for the appearance key.&lt;/p&gt;&lt;p&gt;memset(&amp;amp;buf, 0, sizeof(buf));&lt;/p&gt;&lt;p&gt;strcat(buf, "BT /STAMPR 24 Tf 10 40 TD ( Sample Text )Tj ET q 10 w 0 1 0 RG 5 5 90 90 re S Q");&lt;/p&gt;&lt;p&gt;s = (ASUns32)strlen(buf);&lt;/p&gt;&lt;p&gt;stm = ASMemStmRdOpen(buf, s);&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;/p&gt;&lt;p&gt;attributesDict&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;= CosNewDict(cdoc, false, 5);&lt;/p&gt;&lt;p&gt;LengthEntry = CosNewInteger(cdoc, false, s);&lt;/p&gt;&lt;p&gt;CosDictPutKeyString(attributesDict, Length_KStr, LengthEntry);&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;/p&gt;&lt;p&gt;cStmObj = CosNewStream(cdoc, true, stm, 0, true, attributesDict, cNullObj, s);&lt;/p&gt;&lt;p&gt;cStmDictObj = CosStreamDict(cStmObj);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;CosDictPutKeyString(cStmDictObj, "Type", CosNewNameFromString(cdoc, false, "XObject"));&lt;/p&gt;&lt;p&gt;CosDictPutKeyString(cStmDictObj, "Subtype", CosNewNameFromString(cdoc, false, "Form"));&lt;/p&gt;&lt;p&gt;CosDictPutKeyString(cStmDictObj, "FormType", CosNewInteger(cdoc, false, 1L));&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;// Set up ProcSet Resources.&lt;/p&gt;&lt;p&gt;cProcSetObj = CosNewArray(cdoc, false, 2L);&lt;/p&gt;&lt;p&gt;CosArrayPut(cProcSetObj, 0L, CosNewNameFromString(cdoc, false, "PDF"));&lt;/p&gt;&lt;p&gt;CosArrayPut(cProcSetObj, 1L, CosNewNameFromString(cdoc, false, "Text"));&lt;/p&gt;&lt;p&gt;CosDictPutKeyString(cResObj, "ProcSet", cProcSetObj);&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;/p&gt;&lt;p&gt;// Put Resources dictionary in XObject's stream dictionary.&lt;/p&gt;&lt;p&gt;CosDictPutKeyString(cStmDictObj, "Resources", cResObj);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;where cStmDictObj is a cos object containing the stream's attributes dictionary, cdoc is a cos level document object, cResObj is a cos object containing the resource dictionary for XObject.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In the above code, we set the stream dictionary by invoking the CosDictPutKeyString method and pass the name of the key("Type", "Subtype"). I looked into the PDF Reference and found that these are the keys of the Form Dictionary. What can be the entry for the name key if I want to add an editable text box? &lt;/p&gt;&lt;p&gt;The third parameter is passed by invoking CosNewNameFromString method. Here "XObject" and "Form" are passed as arguments. What should be passed as CosObj objects(3rd parameter for CosNewNameFromString) in case of an editable text box?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I looked up the Developing Plug-ins and Applications and the PDF Reference in the SDK and looked for samples too. But, I couldn't find much help.&lt;/p&gt;&lt;p&gt;I want to add an editable text box to my custom annotation.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Kindly guide.&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f454862d-349d-4a33-92dd-093ce998b898] --&gt;</description>
      <pubDate>Wed, 19 Jun 2013 08:39:41 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1236252</guid>
      <dc:date>2013-06-19T08:39:41Z</dc:date>
      <clearspace:dateToText>1 year 5 months ago</clearspace:dateToText>
      <clearspace:replyCount>11</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to add editable text box to a custom annotation?</title>
      <link>https://forums.adobe.com/thread/1234036</link>
      <description>&lt;!-- [DocumentBodyStart:7b14e6a0-7bf4-431d-8388-0c0f19c7d511] --&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 have been trying to create a custom annotation and have been successful in that front. However, I am stuck now. I want to add an editable text box to my custom annotation and I am at a loss at how to do so. The editable text box is to be used by the user as an input text box.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please guide or provide some sample on this. I am on an urgent deadline. Quick help will be appreciated.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7b14e6a0-7bf4-431d-8388-0c0f19c7d511] --&gt;</description>
      <pubDate>Mon, 17 Jun 2013 07:12:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1234036</guid>
      <dc:date>2013-06-17T07:12:24Z</dc:date>
      <clearspace:dateToText>1 year 5 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

