<?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: Message List - Creative Suite Extension Builder</title>
    <link>https://forums.adobe.com/community/creativesuites/extensionbuilder?view=discussions</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    <pubDate>Thu, 13 Nov 2014 21:15:18 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-11-13T21:15:18Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>node.js require('stream') strange result</title>
      <link>https://forums.adobe.com/message/6927371?tstart=0#6927371</link>
      <description>&lt;!-- [DocumentBodyStart:0c5c75ba-c2df-4669-bc9a-94c609e13077] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am trying to require stream module (node.js) in my extension (PS CC 2014, CEP 5.0) - it works however normally "stream" module contains "stream.Readable" object in node.js.&lt;/p&gt;&lt;p&gt;In extension "stream" module does not contain "Readable" property for some reason...&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var stream = require('stream')&lt;/p&gt;&lt;p&gt;console.log(stream.Readable) // outputs undefined in console&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;And this is output from node.js&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="p1"&gt;&amp;gt; console.log(stream.Readable)&lt;/p&gt;&lt;p class="p1"&gt;{ [Function: Readable]&lt;/p&gt;&lt;p class="p1"&gt;&amp;nbsp; ReadableState: [Function: ReadableState],&lt;/p&gt;&lt;p class="p1"&gt;&amp;nbsp; super_: &lt;/p&gt;&lt;p class="p1"&gt;&amp;nbsp;&amp;nbsp; { [Function: Stream]&lt;/p&gt;&lt;p class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; super_: { [Function: EventEmitter] listenerCount: [Function] },&lt;/p&gt;&lt;p class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Readable: [Circular],&lt;/p&gt;&lt;p class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Writable: { [Function: Writable] WritableState: [Function: WritableState], super_: [Circular] },&lt;/p&gt;&lt;p class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Duplex: { [Function: Duplex] super_: [Circular] },&lt;/p&gt;&lt;p class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Transform: { [Function: Transform] super_: [Object] },&lt;/p&gt;&lt;p class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PassThrough: { [Function: PassThrough] super_: [Object] },&lt;/p&gt;&lt;p class="p1"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Stream: [Circular] },&lt;/p&gt;&lt;p class="p1"&gt;&amp;nbsp; _fromList: [Function: fromList] }&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0c5c75ba-c2df-4669-bc9a-94c609e13077] --&gt;&lt;img src='/beacon?t=1415939032195' /&gt;</description>
      <pubDate>Thu, 13 Nov 2014 21:15:18 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6927371?tstart=0#6927371</guid>
      <dc:date>2014-11-13T21:15:18Z</dc:date>
      <clearspace:dateToText>7 hours 9 minutes ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Calling JSX from ActionScript: Problems with Returning InDesign Objects Back to ActionScript</title>
      <link>https://forums.adobe.com/message/6923264?tstart=0#6923264</link>
      <description>&lt;!-- [DocumentBodyStart:028608c3-19a5-4635-8eb0-726da1215ac8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have written an InDesign Extension using EB 2.1 for InDesign versions 5-6. That means Flex SDK 3.4. I need to call JSX from ActionScript, and for the JSX to return as a return value InDesign objects and regular (non-InDesign specific) Arrays as return variables.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am calling JSX using the HostObject as follows:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt; &lt;span style="font-family: courier new,courier;"&gt;public class AS2JSInDesign&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt; { &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Embed(source="InDesign.jsx", mimeType= "application/octet-stream" )] &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private static var _inDesignJsxProxyClass:Class;&amp;nbsp; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; private static var _inDesignJsxInterface:HostObject;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _inDesignJsxInterface = HostObject.getRoot(HostObject.extensions[0]); &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _inDesignJsxInterface.eval(new _inDesignJsxProxyClass().toString());&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function static doJSX():void&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Not passing the ActionScript InDesign.app&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var result1:* = _inDesignJsxInterface.myJSXFunction();&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Passing the ActionScript InDesign.app as a parameter to JSX&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var InDesignApp:Application = InDesign.app;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var result2:* = _inDesignJsxInterface.myJSXFunction(InDesignApp);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;}&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ol style="list-style-type: decimal;"&gt;&lt;li&gt;When JavaScript creates InDesign objects using paradigm &lt;span style="font-family: courier new,courier;"&gt;app.&lt;/span&gt;&amp;lt;CollectionName&amp;gt;.&lt;span style="font-family: courier new,courier;"&gt;add()&lt;/span&gt; (&lt;em&gt;e.g.,&amp;rdquo;&lt;/em&gt;&lt;span style="font-family: 'Courier New';"&gt;app.documents.add()&lt;/span&gt;&amp;rdquo;), then the created object cannot be successfully returned. For example, for &lt;br/&gt;&lt;span style="font-family: 'Courier New';"&gt;return app.documents.add()&lt;/span&gt;&lt;br/&gt;the returned value is not a Document, but rather a HostObject which contains various properties not at all relevant to an InDesign Document. &lt;br/&gt;However, if I pass the InDesign.app from ActionScript as a parameter (called "InDesignApp"), and the JavaScript uses &lt;em&gt;that&lt;/em&gt; app object instead of its own default app object:&lt;br/&gt;&lt;span style="font-family: 'Courier New';"&gt;return InDesignApp.documents.add()&lt;/span&gt;,&lt;br/&gt; then it works fine - a real InDesign Document object is returned.&lt;/li&gt;&lt;li&gt;On the other hand, there are instances in which it seems I must use the JSX native InDesign app object. If I want to define a new Color for the active Document with the InDesign.app (passed as a parameter called "InDesignApp") using&amp;nbsp; &lt;br/&gt;&lt;span style="font-family: 'Courier New';"&gt;var color = InDesignApp.activeDocument.colors.add()&lt;/span&gt;, &lt;br/&gt;then the attempt to assign&lt;br/&gt;&lt;span style="font-family: 'Courier New';"&gt;color.space = ColorSpace.CMYK&lt;/span&gt;&lt;br/&gt;fails, as ColorSpace.CMYK is not recognized at run time.&lt;br/&gt;If I use the JSX app object to do this (&lt;span style="font-family: 'Courier New';"&gt;var color = app.activeDocument.colors.add()&lt;/span&gt;), I don&amp;#8217;t get an error, but if I return the color object to ActionScript, an empty HostObject is received.&lt;/li&gt;&lt;li&gt;A native JSX Array ( &lt;span style="font-family: courier new,courier;"&gt;var myArray = new Array(); &lt;/span&gt;) cannot ever be returned to ActionScript &amp;#8211; it appears in ActionScript as a HostObject. ActionScript doesn&amp;#8217;t regard it as an Array. I came up with a hideous hack: I create an array using InDesignApp.documents.everyItem().getElements(), empty the array which is returned, and then use the empty area for whatever I need. Such an array, when returned to ActionsScript, is recognized as an Array.&lt;/li&gt;&lt;/ol&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Could someone please explain what I'm doing wrong?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:028608c3-19a5-4635-8eb0-726da1215ac8] --&gt;</description>
      <pubDate>Wed, 12 Nov 2014 17:57:40 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6923264?tstart=0#6923264</guid>
      <dc:date>2014-11-12T17:57:40Z</dc:date>
      <clearspace:dateToText>1 day 10 hours ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How to call an ActionScript method from the ExtendScript/JavaScript function defined in a .jsx file.</title>
      <link>https://forums.adobe.com/message/6923114?tstart=0#6923114</link>
      <description>&lt;!-- [DocumentBodyStart:8a5df458-57a5-46df-8b6c-23891d179548] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;m_mfsi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Have you solved this yet? If not, I'd be willing to take the time to explain how.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8a5df458-57a5-46df-8b6c-23891d179548] --&gt;</description>
      <pubDate>Wed, 12 Nov 2014 17:11:07 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6923114?tstart=0#6923114</guid>
      <dc:date>2014-11-12T17:11:07Z</dc:date>
      <clearspace:dateToText>1 day 11 hours ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: aihostadapter for illustrator cc 2014 (for use with flex)</title>
      <link>https://forums.adobe.com/message/6908219?tstart=0#6908219</link>
      <description>&lt;!-- [DocumentBodyStart:a5d8fa96-4629-4bbf-a5f0-e9499e0e6080] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;*Push* &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a5d8fa96-4629-4bbf-a5f0-e9499e0e6080] --&gt;</description>
      <pubDate>Fri, 07 Nov 2014 08:40:13 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6908219?tstart=0#6908219</guid>
      <dc:date>2014-11-07T08:40:13Z</dc:date>
      <clearspace:dateToText>6 days 20 hours ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Re: Including javascript dependencies issues in EB2.1</title>
      <link>https://forums.adobe.com/message/6882850?tstart=0#6882850</link>
      <description>&lt;!-- [DocumentBodyStart:8cf2a904-0bc0-460e-a8cc-766904590007] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi MLavie,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Given your scripts within the src folder :&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Source Main Code : JSX1.jsx&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;#include "JSX2.jsx"&lt;/p&gt;&lt;p&gt;function action1() {&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: 'courier new', courier;"&gt;action&lt;/span&gt;&lt;strong style="font-family: 'courier new', courier; color: #333333;"&gt;2&lt;/strong&gt;&lt;span style="color: #333333; font-family: 'courier new', courier;"&gt;();&lt;/span&gt;&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;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;Now you need a third script JSX_BIN.jsx&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;but first compile as binary your JSX1.jsx script.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;Once that done copy/paste the jsxbin string&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;eval(your JSX1.jsx script as binary goes here);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;Then you embed the &lt;/span&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;JSX_BIN.jsx script.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'courier new', courier; color: #333333;"&gt;[Embed(source="JSX_BIN.jsx", mimeType= "application/octet-stream" )] &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'courier new', courier; color: #333333;"&gt;&amp;nbsp; private static var _jsx1ProxyClass:Class;&amp;nbsp; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'courier new', courier; color: #333333;"&gt;&amp;nbsp; private static var _jsx1Interface:HostObject;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'courier new', courier; color: #333333;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'courier new', courier; color: #333333;"&gt;And call it as you did :&lt;/span&gt;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;public function performJsx()&lt;/span&gt;&lt;br/&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;{&lt;/span&gt;&lt;br/&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp; _jsx1Interface = HostObject.getRoot(HostObject.extensions[0]); &lt;/span&gt;&lt;br/&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp; _jsx1Interface.eval(new _jsx1ProxyClass().toString());&lt;/span&gt;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp; _jsx1Interface.action1();&lt;/span&gt;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;}&lt;/span&gt;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;And yes, as many changes you do in the source JSX1 file, you need to recompile and copy/paste in the JSX_BIN.jsx script.&lt;/span&gt;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Hope that helps,&lt;/span&gt;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&lt;span style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Loic&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8cf2a904-0bc0-460e-a8cc-766904590007] --&gt;</description>
      <pubDate>Thu, 30 Oct 2014 14:01:20 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6882850?tstart=0#6882850</guid>
      <dc:date>2014-10-30T14:01:20Z</dc:date>
      <clearspace:dateToText>2 weeks 14 hours ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Re: Including javascript dependencies issues in EB2.1</title>
      <link>https://forums.adobe.com/message/6882813?tstart=0#6882813</link>
      <description>&lt;!-- [DocumentBodyStart:a3413bb3-41c4-462a-97e3-cc1255fb6a79] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi Loic,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks for the quick response. However, I don't think I understood the answer. My situation is as follows:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have an embedded JSX: JSX&lt;strong&gt;1&lt;/strong&gt;.jsx, whose contents are:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt; &amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;function action&lt;strong&gt;1&lt;/strong&gt;()&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;{&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; action2();&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;}&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The definition for action&lt;strong&gt;2&lt;/strong&gt;() is found in JSX file JSX&lt;strong&gt;2&lt;/strong&gt;.jsx, located in the /src dir,&amp;nbsp; whose contents are:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;function action&lt;strong&gt;2&lt;/strong&gt;()&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;{&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; alert('I am action2','title',false);&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;}&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: arial,helvetica,sans-serif;"&gt;In my ActionScript, I call action1() as follows:&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp; [Embed(source="JSX1.jsx", mimeType= "application/octet-stream" )] &lt;/span&gt;&lt;br/&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp; private static var _jsx1ProxyClass:Class;&amp;nbsp; &lt;/span&gt;&lt;br/&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp; private static var _jsx1Interface:HostObject;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;public function performJsx()&lt;/span&gt;&lt;br/&gt;&lt;span style="font-family: courier new,courier;"&gt;{&lt;/span&gt;&lt;br/&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; _jsx1Interface = HostObject.getRoot(HostObject.extensions[0]); &lt;/span&gt;&lt;br/&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; _jsx1Interface.eval(new _jsx1ProxyClass().toString());&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp; _jsx1Interface.action1();&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier;"&gt;}&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Could you please explain step-by-step what to do?&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Which of the 2 files (or both) are converted to JSXBIN?&lt;/li&gt;&lt;li&gt;In which folder should they be placed in the ExtensionBuilder project's folder tree? /src? Does it matter?&lt;/li&gt;&lt;li&gt;What changes (if any) need to be made in my ActionScript, JSX1.jsx or JSX2.jsx source code so that my JSX&lt;strong&gt;1&lt;/strong&gt;.jsx "sees" JSX&lt;strong&gt;2&lt;/strong&gt;.jsx?&lt;/li&gt;&lt;/ol&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank you for your time!&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a3413bb3-41c4-462a-97e3-cc1255fb6a79] --&gt;</description>
      <pubDate>Thu, 30 Oct 2014 12:56:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6882813?tstart=0#6882813</guid>
      <dc:date>2014-10-30T12:56:09Z</dc:date>
      <clearspace:dateToText>2 weeks 15 hours ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Including javascript dependencies issues in EB2.1</title>
      <link>https://forums.adobe.com/message/6882372?tstart=0#6882372</link>
      <description>&lt;!-- [DocumentBodyStart:b4dd870c-deb9-4aad-8389-094d5d2c2c66] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi MLavie,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Yeah I did it working thanks to Martinho. Fact is you cannot use dependencies with a clear code. You have to compile it in JSXBIN, then eval this code:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Source JSX File&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;function toto();&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Binary&lt;/p&gt;&lt;p&gt;@2.0UUYAUAYUYZAUYUYUYUYUY&amp;hellip;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;JSX to call&lt;/p&gt;&lt;p&gt;eval('@2.0UUYAUAYUYZAUYUYUYUYUY&amp;hellip;');&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;From AS3&lt;/p&gt;&lt;p&gt;JSX.toto();&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I wish we could have keep the whole thing open but nothing to expect now &lt;span aria-label="Wink" class="emoticon-inline emoticon_wink" style="height:16px;width:16px;"&gt;&lt;/span&gt; Seems like the HTML5 extensibility will allow this kind of stuff &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b4dd870c-deb9-4aad-8389-094d5d2c2c66] --&gt;</description>
      <pubDate>Thu, 30 Oct 2014 10:37:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6882372?tstart=0#6882372</guid>
      <dc:date>2014-10-30T10:37:25Z</dc:date>
      <clearspace:dateToText>2 weeks 18 hours ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Including javascript dependencies issues in EB2.1</title>
      <link>https://forums.adobe.com/message/6882298?tstart=0#6882298</link>
      <description>&lt;!-- [DocumentBodyStart:c37ac63e-7f2a-4952-8e15-b0b2f7097cff] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi Loic,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Did you ever get this solved? How?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c37ac63e-7f2a-4952-8e15-b0b2f7097cff] --&gt;</description>
      <pubDate>Thu, 30 Oct 2014 10:10:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6882298?tstart=0#6882298</guid>
      <dc:date>2014-10-30T10:10:05Z</dc:date>
      <clearspace:dateToText>2 weeks 18 hours ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Problem with jQuery and CEP 5 - "$" getting overrided</title>
      <link>https://forums.adobe.com/message/6876348?tstart=0#6876348</link>
      <description>&lt;!-- [DocumentBodyStart:7d5edc3c-477b-473b-8a96-0a865fa38dc0] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Is there an official fix to this?&amp;nbsp; It kinda sucks for new people just starting out when there's all these jQuery examples that don't work &lt;span aria-label="Sad" class="emoticon-inline emoticon_sad" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I just tried adding the CEFCommandline tag to my manifest, didn't do anything.&amp;nbsp; Is there a tag it needs to go inside of?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7d5edc3c-477b-473b-8a96-0a865fa38dc0] --&gt;</description>
      <pubDate>Tue, 28 Oct 2014 18:14:00 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6876348?tstart=0#6876348</guid>
      <dc:date>2014-10-28T18:14:00Z</dc:date>
      <clearspace:dateToText>2 weeks 2 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: window.close not working on indesign cc2014</title>
      <link>https://forums.adobe.com/message/6851339?tstart=0#6851339</link>
      <description>&lt;!-- [DocumentBodyStart:62f24d59-6510-485f-8a36-e7d49b7145f6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;blockquote class="jive-quote"&gt;
&lt;p&gt;Any suggestions?&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;I don't know how complex your UI is. If ScriptUI is an option, I'd probably go with that. Another option would be to make a separate window extension described in your manifest instead of creating it on the fly. You'd then communicate with it / launch it using CSXSInterface. (I don't know if that will help.) Lastly, you might be able to cobble something together using system native tools or Xojo and make a floating window look like it's part of InDesign when it's really not.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;HTH,&lt;/p&gt;&lt;p&gt;Harbs&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:62f24d59-6510-485f-8a36-e7d49b7145f6] --&gt;</description>
      <pubDate>Tue, 21 Oct 2014 13:41:22 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6851339?tstart=0#6851339</guid>
      <dc:date>2014-10-21T13:41:22Z</dc:date>
      <clearspace:dateToText>3 weeks 3 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: window.close not working on indesign cc2014</title>
      <link>https://forums.adobe.com/message/6850668?tstart=0#6850668</link>
      <description>&lt;!-- [DocumentBodyStart:22f43e99-f88e-4b82-bd02-f8f83289527f] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Okay, if I change the window type to Modal, it closes okay. If window type is panel or modal-less, it doesn't close.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I need my window to be able to lose focus, which cannot be possible in case of modal dialog. I am showing image preview in the dialog window by clicking on its thumbnail in the main app. I want the user to be able to change the preview by clicking on the thumbnail without closing the dialog.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Everything else is okay, the close function is ruining it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any suggestions?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:22f43e99-f88e-4b82-bd02-f8f83289527f] --&gt;</description>
      <pubDate>Tue, 21 Oct 2014 09:55:37 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6850668?tstart=0#6850668</guid>
      <dc:date>2014-10-21T09:55:37Z</dc:date>
      <clearspace:dateToText>3 weeks 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: window.close not working on indesign cc2014</title>
      <link>https://forums.adobe.com/message/6850644?tstart=0#6850644</link>
      <description>&lt;!-- [DocumentBodyStart:dfcaa233-0927-49b9-aaa5-b440d8fdb453] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;CSXSWindowType.PANEL has always been a bit funky. It hasn't even worked in all the apps. If you can make it MODAL instead, I'd do that.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Harbs&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:dfcaa233-0927-49b9-aaa5-b440d8fdb453] --&gt;</description>
      <pubDate>Tue, 21 Oct 2014 09:34:00 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6850644?tstart=0#6850644</guid>
      <dc:date>2014-10-21T09:34:00Z</dc:date>
      <clearspace:dateToText>3 weeks 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: window.close not working on indesign cc2014</title>
      <link>https://forums.adobe.com/message/6850500?tstart=0#6850500</link>
      <description>&lt;!-- [DocumentBodyStart:68f6f52c-376c-4bfd-bd6f-9e0c69650879] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I went ahead and wrote the below code for close button handler,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:f54e4c06-18bb-43c4-8615-46c1b67af2c3][excluded]--&gt;&lt;pre class="javascript" name="code"&gt;
var openedWindows:Array = NativeApplication.nativeApplication.openedWindows;
var i:uint;
var count:uint = openedWindows.length;
for(i; i &amp;lt; count; i++)
{
&amp;nbsp; openedWindows[i].close();
}
&lt;/pre&gt;&lt;!--[CodeBlockEnd:f54e4c06-18bb-43c4-8615-46c1b67af2c3]--&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;This closed the parent application, but the dialog Window remained as it is..&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What is happening? Is this a bug with Adobe?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What alternative do I have if I want to open another dialog?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:68f6f52c-376c-4bfd-bd6f-9e0c69650879] --&gt;</description>
      <pubDate>Tue, 21 Oct 2014 08:25:26 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6850500?tstart=0#6850500</guid>
      <dc:date>2014-10-21T08:25:26Z</dc:date>
      <clearspace:dateToText>3 weeks 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>window.close not working on indesign cc2014</title>
      <link>https://forums.adobe.com/message/6850349?tstart=0#6850349</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;</description>
      <pubDate>Tue, 21 Oct 2014 06:50:20 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6850349?tstart=0#6850349</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>Re: Query on app.activeDocument.exportFile</title>
      <link>https://forums.adobe.com/message/6847213?tstart=0#6847213</link>
      <description>&lt;!-- [DocumentBodyStart:111798fc-9dfa-4e01-ac3c-51433bf487ef] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I got around it by closing new doc and reopening&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.activeDocument.save();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var srcFile = app.activeDocument.fullName;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.activeDocument.exportFile( fileSpec, type, exportOptions );&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.activeDocument.close(SaveOptions.SAVECHANGES);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.open(srcFile);&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:111798fc-9dfa-4e01-ac3c-51433bf487ef] --&gt;</description>
      <pubDate>Mon, 20 Oct 2014 11:15:50 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6847213?tstart=0#6847213</guid>
      <dc:date>2014-10-20T11:15:50Z</dc:date>
      <clearspace:dateToText>3 weeks 4 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Query on app.activeDocument.exportFile</title>
      <link>https://forums.adobe.com/message/6847209?tstart=0#6847209</link>
      <description>&lt;!-- [DocumentBodyStart:b9db919b-fc0f-48ea-ad68-8aaab28bb392] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;(Apologies if this is an Illustrator scripting question rather than a CEP specific extension one)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;From Adobe Illustrator CC2014 HTML5 extension I am using &lt;span style="font-family: 'courier new', courier;"&gt;app.activeDocument.exportFile&lt;/span&gt; to export the activeDocument to SVG.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have that working great but what happens is that the exported file becomes the active document (replacing the .AI document that was open) and I do not want this to happen?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can anyone explain this behavior and how I could change it.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b9db919b-fc0f-48ea-ad68-8aaab28bb392] --&gt;</description>
      <pubDate>Mon, 20 Oct 2014 10:50:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6847209?tstart=0#6847209</guid>
      <dc:date>2014-10-20T10:50:23Z</dc:date>
      <clearspace:dateToText>3 weeks 4 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Flyout menu for PS CC 2014 HTML extension panel</title>
      <link>https://forums.adobe.com/message/6838696?tstart=0#6838696</link>
      <description>&lt;!-- [DocumentBodyStart:151b3d1c-4478-43b7-9014-ee4f80032aaa] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi Davide,&lt;/p&gt;&lt;p&gt;Many thanks for putting up the demo. Will try it out soon. &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:151b3d1c-4478-43b7-9014-ee4f80032aaa] --&gt;</description>
      <pubDate>Fri, 17 Oct 2014 05:13:37 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6838696?tstart=0#6838696</guid>
      <dc:date>2014-10-17T05:13:37Z</dc:date>
      <clearspace:dateToText>3 weeks 7 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Flyout menu for PS CC 2014 HTML extension panel</title>
      <link>https://forums.adobe.com/message/6837923?tstart=0#6837923</link>
      <description>&lt;!-- [DocumentBodyStart:f830c66c-0a99-45af-8657-abaf2c895f42] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I've added &lt;a class="jive-link-external-small" href="http://www.davidebarranca.com/2014/10/html-panels-tips-14-flyout-menu/" rel="nofollow"&gt;HTML Panels Tips: #14 Flyout Menu | Photoshop, etc.&lt;/a&gt; with a demo extension showing a Flyout menu and its click handler (full code is provided on my GitHub page, link in the post) - hope this helps!&lt;/p&gt;&lt;p&gt;As for backwards compatibility &lt;a class="jiveTT-hover-user jive-link-profile-small" data-containerId="-1" data-containerType="-1" data-objectId="1644891" data-objectType="3" href="https://forums.adobe.com/people/yannick1976"&gt;yannick1976&lt;/a&gt; asked about: PS CC needs CEP version 4 - as far as I know CC-not-2014 doesn't get CEP updates. I can't tell you about 2014.0 and 2014.1 though... Best way is to check the demo extension on them ;-)&lt;/p&gt;&lt;p&gt;Cheers,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Davide Barranca&lt;/p&gt;&lt;p&gt;---&lt;/p&gt;&lt;p&gt;www.davidebarranca.com&lt;/p&gt;&lt;p&gt;www.cs-extensions.com&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f830c66c-0a99-45af-8657-abaf2c895f42] --&gt;</description>
      <pubDate>Thu, 16 Oct 2014 23:24:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6837923?tstart=0#6837923</guid>
      <dc:date>2014-10-16T23:24:25Z</dc:date>
      <clearspace:dateToText>1 month 2 days from now</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Flyout menu for PS CC 2014 HTML extension panel</title>
      <link>https://forums.adobe.com/message/6834321?tstart=0#6834321</link>
      <description>&lt;!-- [DocumentBodyStart:c859b591-1756-4d4d-8ee0-db7528515648] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;This now works on Indesign new release too!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c859b591-1756-4d4d-8ee0-db7528515648] --&gt;</description>
      <pubDate>Thu, 16 Oct 2014 08:31:12 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6834321?tstart=0#6834321</guid>
      <dc:date>2014-10-16T08:31:12Z</dc:date>
      <clearspace:dateToText>1 month 2 days from now</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Re: Flyout menu for PS CC 2014 HTML extension panel</title>
      <link>https://forums.adobe.com/message/6826557?tstart=0#6826557</link>
      <description>&lt;!-- [DocumentBodyStart:05f1e459-05ce-40b1-92f3-859228a66af1] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Thank you ! I saw that ! And they fixed keyboard shortcuts, too &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;By the way, maybe you know if the new version of CSInterface.js is backwards compatible (with CC2014 and CC2014.1)...?&lt;/p&gt;&lt;p&gt;I have seen (in one of your tips I think &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt; - I'm taking the occasion to thank you for them) that you can have version-dependent packages but I'd rather not have to do that !&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:05f1e459-05ce-40b1-92f3-859228a66af1] --&gt;</description>
      <pubDate>Wed, 15 Oct 2014 01:00:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6826557?tstart=0#6826557</guid>
      <dc:date>2014-10-15T01:00:09Z</dc:date>
      <clearspace:dateToText>1 month 7 hours from now</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Re: Flyout menu for PS CC 2014 HTML extension panel</title>
      <link>https://forums.adobe.com/message/6826128?tstart=0#6826128</link>
      <description>&lt;!-- [DocumentBodyStart:e9002a2b-4938-40ab-bc5b-695ec5d10486] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello Yannick,&lt;/p&gt;&lt;p&gt;the PS release we talk about is in fact CC 2014.2.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For instance, try putting this one in the JS:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:e17bbcce-be75-4fb8-adaf-7c7159b2ef96][excluded]--&gt;&lt;pre class="javascript" name="code"&gt;
var flyoutXML = '&amp;lt;Menu&amp;gt; \
&amp;nbsp; &amp;lt;MenuItem Id="menuItemId1" Label="TestExample1" Enabled="true" Checked="false"/&amp;gt; \
&amp;nbsp; \
&amp;nbsp; &amp;lt;MenuItem Label="TestExample2"&amp;gt; \
&amp;nbsp; &amp;lt;MenuItem Label="TestExample2-1"&amp;gt; \
&amp;nbsp; &amp;lt;MenuItem Label="TestExample2-1-1" Enabled="false" Checked="true"/&amp;gt; \
&amp;nbsp; &amp;lt;/MenuItem&amp;gt; \
&amp;nbsp; &amp;lt;MenuItem Label="TestExample2-2" Enabled="true" Checked="true"/&amp;gt; \
&amp;nbsp; &amp;lt;/MenuItem&amp;gt; \
&amp;nbsp; \
&amp;nbsp; &amp;lt;MenuItem Label="---" /&amp;gt; \
&amp;nbsp; &amp;lt;MenuItem Label="TestExample3" Enabled="false" Checked="false"/&amp;gt; \
&amp;nbsp; &amp;lt;/Menu&amp;gt;';

csInterface.setPanelFlyoutMenu(flyoutXML);
&lt;/pre&gt;&lt;!--[CodeBlockEnd:e17bbcce-be75-4fb8-adaf-7c7159b2ef96]--&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;Mind you, nested menus do not currently work in PS (but do on AE), it's a known issue.&lt;/p&gt;&lt;p&gt;Time permitting, I'll add a dedicated Tip to the series &lt;a class="jive-link-external-small" href="http://www.davidebarranca.com/category/code/html-panels/" rel="nofollow"&gt;HTML Panels Tips &lt;/a&gt;(which by the way is now 13 items strong).&lt;/p&gt;&lt;p&gt;Anyway, it should be documented in the latest &lt;a class="jive-link-external-small" href="https://github.com/Adobe-CEP/CEP-Resources/blob/master/CSInterface-5.2.js" rel="nofollow"&gt;CSInterface.js&lt;/a&gt; file for CEP5.2.&lt;/p&gt;&lt;p&gt;Regards&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Davide Barranca&lt;/p&gt;&lt;p&gt;---&lt;/p&gt;&lt;p&gt;www.davidebarranca.com&lt;/p&gt;&lt;p&gt;www.cs-extensions.com&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e9002a2b-4938-40ab-bc5b-695ec5d10486] --&gt;</description>
      <pubDate>Tue, 14 Oct 2014 21:43:12 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6826128?tstart=0#6826128</guid>
      <dc:date>2014-10-14T21:43:12Z</dc:date>
      <clearspace:dateToText>1 month 4 hours from now</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Introducing HTML5 Extensions</title>
      <link>https://forums.adobe.com/message/6826065?tstart=0#6826065</link>
      <description>&lt;!-- [DocumentBodyStart:8356b20f-23b2-44cf-a64f-cb5831298dc0] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Oh Yes :-)&lt;/p&gt;&lt;p&gt;If you worked with Brackets and Nodes you can do all you want.&lt;/p&gt;&lt;p&gt;You can Use Nodes to make Filters in the Addons or other nice things &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8356b20f-23b2-44cf-a64f-cb5831298dc0] --&gt;</description>
      <pubDate>Tue, 14 Oct 2014 21:25:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6826065?tstart=0#6826065</guid>
      <dc:date>2014-10-14T21:25:05Z</dc:date>
      <clearspace:dateToText>1 month 4 hours from now</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How to Create a ZXP for CC, and for CS6-&gt;CC</title>
      <link>https://forums.adobe.com/message/6825792?tstart=0#6825792</link>
      <description>&lt;!-- [DocumentBodyStart:77998787-d736-4f31-9500-68b8d93f2a53] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;for the ZXP packaging, this page might help: &lt;a class="jive-link-external-small" href="http://www.davidebarranca.com/2014/05/html-panels-tips-10-packaging-zxp-installers/" rel="nofollow"&gt;http://www.davidebarranca.com/2014/05/html-panels-tips-10-packaging-zxp-installers/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Mind you, I can't tell you whether the latest InDesign version (10.x aka CC 2014) has already dropped the Flash panel support or not. &lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;Photoshop for instance did, starting from CC 2014 - but we've been warned in advance that PS would have been the avant-garde among CC apps.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If you have ActionScript code (and not ExtendScript) I'm afraid you're stuck - porting back to ExtendScript is the only choice.&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Davide Barranca&lt;/p&gt;&lt;p&gt;---&lt;/p&gt;&lt;p&gt;www.davidebarranca.com&lt;/p&gt;&lt;p&gt;www.cs-extensions.com&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:77998787-d736-4f31-9500-68b8d93f2a53] --&gt;</description>
      <pubDate>Tue, 14 Oct 2014 20:20:38 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6825792?tstart=0#6825792</guid>
      <dc:date>2014-10-14T20:20:38Z</dc:date>
      <clearspace:dateToText>1 month 2 hours from now</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Single Dev Environment and Code Line for 6 and CC?</title>
      <link>https://forums.adobe.com/message/6825118?tstart=0#6825118</link>
      <description>&lt;!-- [DocumentBodyStart:0bf78197-32ef-47b6-8a22-a87fc71f894a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi mlavie,&lt;/p&gt;&lt;p&gt;You're no need to rewrite tens of thousands code. &lt;/p&gt;&lt;p&gt;You are free to use any UI framework &lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;that suits your needs.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;As I understood, Adobe supporting only Photoshop HostAdapter in Extension builder 3 for now, so in any case, in my opinion, only HTML will not give a solution to your problem.&lt;/span&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;Instead you can write your own "HostAdapter" using Adobe Illustrator CC 2014 SDK, and connect it with your (Flash/Flex)extension. (check samples with Notifiers, it will help)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="line-height: 1.5em; font-size: 10pt;"&gt;According to InDesign, It's strange, &lt;/span&gt;because&lt;span style="font-size: 10pt;"&gt;&lt;span style="line-height: 1.5em;"&gt; &lt;/span&gt;&lt;span style="line-height: 19.5px;"&gt;everything&lt;/span&gt;&lt;span style="line-height: 1.5em;"&gt; works &lt;/span&gt;&lt;span style="line-height: 19.5px;"&gt;smoothly&lt;/span&gt;&lt;span style="line-height: 1.5em;"&gt; for me. Can you write more detailed about that?&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;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;ps, sorry for bad English.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Best Regards,&lt;/p&gt;&lt;p&gt;Gegham&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0bf78197-32ef-47b6-8a22-a87fc71f894a] --&gt;</description>
      <pubDate>Tue, 14 Oct 2014 17:51:13 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6825118?tstart=0#6825118</guid>
      <dc:date>2014-10-14T17:51:13Z</dc:date>
      <clearspace:dateToText>1 month 4 minutes ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Introducing HTML5 Extensions</title>
      <link>https://forums.adobe.com/message/6824923?tstart=0#6824923</link>
      <description>&lt;!-- [DocumentBodyStart:5a323781-43d7-4bb3-90cd-335a0c017137] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; font-size: 13px;"&gt;Flash Panels are totally inflexible and extreme Slow?&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-size: 13px; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;HTML5 is really nice and much better?&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-size: 13px; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;really?&lt;span aria-label="Shocked" class="emoticon_shocked emoticon-inline" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-size: 13px; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-size: 13px; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Regards,&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-size: 13px; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Gegham&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5a323781-43d7-4bb3-90cd-335a0c017137] --&gt;</description>
      <pubDate>Tue, 14 Oct 2014 17:01:18 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6824923?tstart=0#6824923</guid>
      <dc:date>2014-10-14T17:01:18Z</dc:date>
      <clearspace:dateToText>1 month 53 minutes ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Single Dev Environment and Code Line for 6 and CC?</title>
      <link>https://forums.adobe.com/message/6823835?tstart=0#6823835</link>
      <description>&lt;!-- [DocumentBodyStart:1dbf3556-2d22-495c-9dda-a3ace533ee9a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi Davide,&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;Thanks for the response.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If I may ask a follow-up question:&lt;/p&gt;&lt;p&gt;All our code was written in ActionScript. I'm talking tens of thousands of lines of code in ActionScript. To support CC 2014 and later, must we rewrite &lt;em&gt;all&lt;/em&gt; our code from scratch - converting it &lt;em&gt;manually&lt;/em&gt; to JavaScript?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1dbf3556-2d22-495c-9dda-a3ace533ee9a] --&gt;</description>
      <pubDate>Tue, 14 Oct 2014 12:38:16 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6823835?tstart=0#6823835</guid>
      <dc:date>2014-10-14T12:38:16Z</dc:date>
      <clearspace:dateToText>1 month 5 hours ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Single Dev Environment and Code Line for 6 and CC?</title>
      <link>https://forums.adobe.com/message/6823646?tstart=0#6823646</link>
      <description>&lt;!-- [DocumentBodyStart:9125deab-5e72-4bd3-b1ff-30223f0060bc] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I can't speak about InDesign for the HostAdapters, but for the total re-write of all your code part... I guess you're right. If you're going to support both Flash and HTML panels, you need to develop them independently (at least for the panel itself - the actual scripting can be moved easily).&lt;/p&gt;&lt;p&gt;Have you checked here for the adapters? &lt;a class="jive-link-external-small" href="http://adobe-cep.github.io/CEP-Resources/" rel="nofollow"&gt;Adobe CEP Resources by Adobe-CEP&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Davide Barranca&lt;/p&gt;&lt;p&gt;---&lt;/p&gt;&lt;p&gt;www.davidebarranca.com&lt;/p&gt;&lt;p&gt;www.cs-extensions.com&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9125deab-5e72-4bd3-b1ff-30223f0060bc] --&gt;</description>
      <pubDate>Tue, 14 Oct 2014 11:51:03 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6823646?tstart=0#6823646</guid>
      <dc:date>2014-10-14T11:51:03Z</dc:date>
      <clearspace:dateToText>1 month 6 hours ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Single Dev Environment and Code Line for 6 and CC?</title>
      <link>https://forums.adobe.com/message/6817346?tstart=0#6817346</link>
      <description>&lt;!-- [DocumentBodyStart:a5c0d8e2-c5a0-4e76-90e3-c045524fdce4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi All,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Up until now, we were developing for customers who only used InDesign CS5.5 and CS6 - using Extension Builder 2.1.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem is that now a new customer only has CC 2014&lt;strong&gt;.1&lt;/strong&gt; (they just purchased it today). I found one hack how to create an Extension using 2.1 for CC 2014/2014.1. However, this hack doesn't support HostAdapters, which we require as we want to control the fly panel of the panel menu.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Also, I think CC 2014.1 supports only HTML5 panels. Does that mean a total re-write of all our code? And since CS6 does not support HTML5 panels - do we now have to maintain 2 parallel code lines until the last of our customers migrates to CC???&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'd appreciate any advice.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a5c0d8e2-c5a0-4e76-90e3-c045524fdce4] --&gt;</description>
      <pubDate>Sun, 12 Oct 2014 15:26:34 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6817346?tstart=0#6817346</guid>
      <dc:date>2014-10-12T15:26:34Z</dc:date>
      <clearspace:dateToText>1 month 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How to Create a ZXP for CC, and for CS6-&gt;CC</title>
      <link>https://forums.adobe.com/message/6817345?tstart=0#6817345</link>
      <description>&lt;!-- [DocumentBodyStart:74e18542-ce9b-4afe-b1b8-caf0b90bbe35] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;One last addition:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I saw the hack on page &lt;a class="jive-link-external-small" href="http://blogs.adobe.com/cssdk/2014/06/adobe-extension-builder-and-creative-cloud-2014.html" rel="nofollow"&gt;Adobe Extension Builder and Creative Cloud 2014&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem is that that hack it doesn't seem to work if you use Host Adapters (and we do).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;All help appreciated,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:74e18542-ce9b-4afe-b1b8-caf0b90bbe35] --&gt;</description>
      <pubDate>Sun, 12 Oct 2014 15:13:32 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6817345?tstart=0#6817345</guid>
      <dc:date>2014-10-12T15:13:32Z</dc:date>
      <clearspace:dateToText>1 month 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How to Create a ZXP for CC, and for CS6-&gt;CC</title>
      <link>https://forums.adobe.com/message/6817134?tstart=0#6817134</link>
      <description>&lt;!-- [DocumentBodyStart:4bb0a6b5-1037-4eae-b43f-3b5245408514] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I think I am beginning to understand the enormous depth of the problem. If I understand correctly, the current CC version is "2014.1" (i.e., the InDesign version is 10.1.*). Since Extension Builder 2.1 seems only able to produce an MXI/ZXP up to InDesign 9.9, I think I am in deep, deep trouble.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there any solution with Extension Builder 2.1, or must I install Extension Builder 3 and rewrite all my tens of thousands of lines of code in JSX (we wrote our Extensions in ActionScript 3)?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA for any advice,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4bb0a6b5-1037-4eae-b43f-3b5245408514] --&gt;</description>
      <pubDate>Sun, 12 Oct 2014 13:42:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6817134?tstart=0#6817134</guid>
      <dc:date>2014-10-12T13:42:24Z</dc:date>
      <clearspace:dateToText>1 month 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to Create a ZXP for CC, and for CS6-&gt;CC</title>
      <link>https://forums.adobe.com/message/6817158?tstart=0#6817158</link>
      <description>&lt;!-- [DocumentBodyStart:2e1969e8-410d-410d-9fa0-b095fdfc6615] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Up until now, I used the Extension Builder to create InDesign Extensions. I chose CS5-CS6 as the range, and the ZXP thus created worked on CS5, CS5,5 and CS6 without a hitch. I used the popup menu option Export--&amp;gt;Adobe Application Extension to create the ZXP.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now, we have out first customer who uses CC. So we installed CC in house for testing, and I chose the range CS5-&lt;strong&gt;CC&lt;/strong&gt; in the manifest editor.&lt;/p&gt;&lt;p&gt;My attempts to install the ZXP failed with the notice:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This extension can not be installed, it requires InDesign64 version in range of inclusively between 9.0 and 9.9.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I also get the same error if I choose exclusively CC (selecting CC to CC range in the manifest editor).&lt;/p&gt;&lt;p&gt;What am I doing wrong???&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;TIA,&lt;/p&gt;&lt;p&gt;mlavie&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:2e1969e8-410d-410d-9fa0-b095fdfc6615] --&gt;</description>
      <pubDate>Sun, 12 Oct 2014 12:00:58 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6817158?tstart=0#6817158</guid>
      <dc:date>2014-10-12T12:00:58Z</dc:date>
      <clearspace:dateToText>1 month 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Introducing HTML5 Extensions</title>
      <link>https://forums.adobe.com/message/6816563?tstart=0#6816563</link>
      <description>&lt;!-- [DocumentBodyStart:7833ba4a-ea23-42a1-9dff-9eb0703a87f3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Dear Developer Colleagues ,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;i think the Change is the best for Photoshop.&lt;/p&gt;&lt;p&gt;Flash Panels are totally inflexible and extreme Slow.&lt;/p&gt;&lt;p&gt;Iam a Developer on C++ and Delphi since 20 Years and hadn't liked Scripting in the Past.&lt;/p&gt;&lt;p&gt;I think the Idea to integrate Webservices,Hybrid Applications and so many much more you don't know at this Time is really Cool.&lt;/p&gt;&lt;p&gt;HTML5 is really nice and much better as the old HTML Standard&lt;/p&gt;&lt;p&gt;The Migration from Configurator is easy.&lt;/p&gt;&lt;p&gt;Some things are a little bit different,you need in your Photoshop.jsx the "," as end of a function looks like this example.&lt;/p&gt;&lt;p&gt;Take the Time to understand the Technology and you have really much fun with extensionbuilder3.&lt;/p&gt;&lt;p&gt;Iam no Scripting freak but i like the Concept.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;$._ext_PHXS={ // from the&amp;nbsp; generated Project its really easy to call they from the index.HTML and ext.JS &lt;/p&gt;&lt;p&gt;If you need functions or global Variables add they before "$._ext_PHXS={" begins.Wheter its goes to add they after that i don't know,i think its much more readable by working Structured :-)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;$._ext_PHXS={&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;run : function &lt;/p&gt;&lt;p&gt;{&lt;/p&gt;&lt;p&gt;do.something&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;at the end is&amp;nbsp; "};" needed&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;cheers &lt;/p&gt;&lt;p&gt;Dirk&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7833ba4a-ea23-42a1-9dff-9eb0703a87f3] --&gt;</description>
      <pubDate>Sun, 12 Oct 2014 03:05:39 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6816563?tstart=0#6816563</guid>
      <dc:date>2014-10-12T03:05:39Z</dc:date>
      <clearspace:dateToText>1 month 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>HostAdapter for Illustrator CC 2014 HTML</title>
      <link>https://forums.adobe.com/message/6811717?tstart=0#6811717</link>
      <description>&lt;!-- [DocumentBodyStart:bfe4f7cb-b32e-4ed2-aa82-bf013901118d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello there&lt;/p&gt;&lt;p&gt;Could you please give us a hint if and when are you planning support host adapters for illustrator cc 2014?&lt;/p&gt;&lt;p&gt;Thanks in advance.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:bfe4f7cb-b32e-4ed2-aa82-bf013901118d] --&gt;</description>
      <pubDate>Fri, 10 Oct 2014 09:13:28 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6811717?tstart=0#6811717</guid>
      <dc:date>2014-10-10T09:13:28Z</dc:date>
      <clearspace:dateToText>1 month 4 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Flyout menu for PS CC 2014 HTML extension panel</title>
      <link>https://forums.adobe.com/message/6795737?tstart=0#6795737</link>
      <description>&lt;!-- [DocumentBodyStart:edb74cf2-010b-49bd-9132-742011c8214e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello ! I would also like to add fly out menu items to my panel. I suppose the next release you're talking about is a new release of Photoshop (because I suppose a CSInterface update alone couldn't bring us flyout menus) ...? Is is scheduled yet ?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance&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;Yannick&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:edb74cf2-010b-49bd-9132-742011c8214e] --&gt;</description>
      <pubDate>Mon, 06 Oct 2014 17:20:17 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6795737?tstart=0#6795737</guid>
      <dc:date>2014-10-06T17:20:17Z</dc:date>
      <clearspace:dateToText>1 month 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How do I install and build and extension with extension builder 2.1?</title>
      <link>https://forums.adobe.com/message/6795160?tstart=0#6795160</link>
      <description>&lt;!-- [DocumentBodyStart:738d7f56-ea6c-42cc-9ef4-d78477604d3c] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Thanks for your help that makes perfect sense. Is there any possibility that in the future place builder 4.7 will support the extension builder 3.0 SDK? &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:738d7f56-ea6c-42cc-9ef4-d78477604d3c] --&gt;</description>
      <pubDate>Mon, 06 Oct 2014 15:49:15 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6795160?tstart=0#6795160</guid>
      <dc:date>2014-10-06T15:49:15Z</dc:date>
      <clearspace:dateToText>1 month 1 week ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: aihostadapter for illustrator cc 2014 (for use with flex)</title>
      <link>https://forums.adobe.com/message/6777295?tstart=0#6777295</link>
      <description>&lt;!-- [DocumentBodyStart:f6f4842c-529f-451c-a3a7-66cd94747a86] --&gt;&lt;div class="jive-rendered-content"&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;are there any news? We are still looking for a way to use our "old" extensions.&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:f6f4842c-529f-451c-a3a7-66cd94747a86] --&gt;</description>
      <pubDate>Tue, 30 Sep 2014 14:07:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6777295?tstart=0#6777295</guid>
      <dc:date>2014-09-30T14:07:09Z</dc:date>
      <clearspace:dateToText>1 month 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How do I install and build and extension with extension builder 2.1?</title>
      <link>https://forums.adobe.com/message/6776473?tstart=0#6776473</link>
      <description>&lt;!-- [DocumentBodyStart:63f71d2f-0a06-478e-997a-1d71dc4e2546] --&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;First of all, remember that Extension Builder 2.1 only supports building Flash based extensions which have been phased out. If you are building extensions for Creative Cloud and beyond, you should use HTML5. See more info here: &lt;a class="jive-link-external-small" href="http://adobe.ly/1ouZWH6" rel="nofollow"&gt;Introducing HTML5 extensions | Adobe Developer Connection&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The installation is probably failing because you have some leftovers from a previous installation. The installer will detect if you have Flash Builder 4.5 or Flash Builder 4.6 installed (NOT Flash Builder 4.7). If it finds that you have Flash Builder 4.5/4.6 installed, it will attempt to install the plugin on top of it. If it does not detect Flash Builder 4.5/4.6, it will install Flash Builder 4.6 Premium.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I highly recommend you look into the new HTML5 extensibility. Here you can find tons of resources: &lt;a class="jive-link-external-small" href="http://bit.ly/SYYQpN" rel="nofollow"&gt;Adobe CEP Resources by Adobe-CEP&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Best regards,&lt;/p&gt;&lt;p&gt;Hallgrimur&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:63f71d2f-0a06-478e-997a-1d71dc4e2546] --&gt;</description>
      <pubDate>Tue, 30 Sep 2014 08:34:40 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6776473?tstart=0#6776473</guid>
      <dc:date>2014-09-30T08:34:40Z</dc:date>
      <clearspace:dateToText>1 month 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How do I install and build and extension with extension builder 2.1?</title>
      <link>https://forums.adobe.com/message/6773462?tstart=0#6773462</link>
      <description>&lt;!-- [DocumentBodyStart:61c262f2-1878-458e-a272-f5276398bf2a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I haven't found any solutions to my problem, I am interested in any insight that you or anyone else might have. &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:61c262f2-1878-458e-a272-f5276398bf2a] --&gt;</description>
      <pubDate>Mon, 29 Sep 2014 13:45:48 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6773462?tstart=0#6773462</guid>
      <dc:date>2014-09-29T13:45:48Z</dc:date>
      <clearspace:dateToText>1 month 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How do I install and build and extension with extension builder 2.1?</title>
      <link>https://forums.adobe.com/message/6772966?tstart=0#6772966</link>
      <description>&lt;!-- [DocumentBodyStart:9250b7d4-c119-4215-aa66-af90162bed96] --&gt;&lt;div class="jive-rendered-content"&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;Came across your concern while browsing through forum posts today. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is your concern solved now. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If not, though I am not from the product team, I can try getting in touch with concerned folks to get it looked into. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Let me know. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p&gt;Sharad&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9250b7d4-c119-4215-aa66-af90162bed96] --&gt;</description>
      <pubDate>Mon, 29 Sep 2014 10:25:14 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6772966?tstart=0#6772966</guid>
      <dc:date>2014-09-29T10:25:14Z</dc:date>
      <clearspace:dateToText>1 month 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Parameters of the functions importFiles() and exportTimeline() in Premiere Pro Extension</title>
      <link>https://forums.adobe.com/message/6754961?tstart=0#6754961</link>
      <description>&lt;!-- [DocumentBodyStart:e310977b-9022-41ea-b4f4-10f70f79b08b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=";"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt; ;&lt;/p&gt;&lt;/td&gt;&lt;td style=";"&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;qe.project.importFiles(fileName) &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var seq=qe.project.getSequenceAt(i);&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; seq.makeCurrent(); &lt;/p&gt;&lt;p&gt;seq.exportDirect( output path with extension , preset path);&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span aria-label="Silly" class="emoticon-inline emoticon_silly" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:e310977b-9022-41ea-b4f4-10f70f79b08b] --&gt;</description>
      <pubDate>Tue, 23 Sep 2014 09:46:06 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6754961?tstart=0#6754961</guid>
      <dc:date>2014-09-23T09:46:06Z</dc:date>
      <clearspace:dateToText>1 month 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How to delete extension?</title>
      <link>https://forums.adobe.com/message/6754911?tstart=0#6754911</link>
      <description>&lt;!-- [DocumentBodyStart:0d0cbf86-1a42-481e-82f4-3c7d98609b6d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Off the top of my head...depending on which version of InDesign you are using, you can delete the extension from the following locations:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;CS6 (8.0), CC (9.0), CC (9.1): C:\Users\&amp;lt;user&amp;gt;\AppData\Roaming\Adobe\CEPServiceManager4\extensions&lt;/li&gt;&lt;li&gt;CC (9.2): C:\Users\&amp;lt;user&amp;gt;\AppData\Roaming\Adobe\CEP\extensions.(I think this is correct for 9.2, if not, it will be the same as 9.1).&lt;/li&gt;&lt;li&gt;CC 2014 (10.0): C:\Users\&amp;lt;user&amp;gt;\AppData\Roaming\Adobe\CEP\extensions&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Let me know if you need Mac paths.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Tim&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0d0cbf86-1a42-481e-82f4-3c7d98609b6d] --&gt;</description>
      <pubDate>Tue, 23 Sep 2014 08:50:14 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6754911?tstart=0#6754911</guid>
      <dc:date>2014-09-23T08:50:14Z</dc:date>
      <clearspace:dateToText>1 month 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How to open an extension programatically?</title>
      <link>https://forums.adobe.com/message/6752151?tstart=0#6752151</link>
      <description>&lt;!-- [DocumentBodyStart:8de540af-af79-4a1b-8c84-44af5159a20b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Regarding the question from&lt;a class="jiveTT-hover-user jive-link-profile-small" data-containerId="-1" data-containerType="-1" data-objectId="503011" data-objectType="3" href="https://forums.adobe.com/people/Caleb+Clauset"&gt;Caleb Clauset&lt;/a&gt;..&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If you want to group menu items for extensions together in your own sub-menu, try this:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;Menu Placement="'Main:&amp;amp;amp;Window:.&amp;amp;amp;Typefi',100.0,'KBSCE Window menu'"&amp;gt;Menu Item&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;You can also use this menu path in your native plug-ins so that, if they have menus, those menus appear in your own menu too.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hope this helps!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Tim &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8de540af-af79-4a1b-8c84-44af5159a20b] --&gt;</description>
      <pubDate>Mon, 22 Sep 2014 14:50:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6752151?tstart=0#6752151</guid>
      <dc:date>2014-09-22T14:50:23Z</dc:date>
      <clearspace:dateToText>1 month 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How to open an extension programatically?</title>
      <link>https://forums.adobe.com/message/6751730?tstart=0#6751730</link>
      <description>&lt;!-- [DocumentBodyStart:558e4e8a-8d9e-4328-ab52-95e9b0b1f177] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Thanks Tim. This will be really helpful!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:558e4e8a-8d9e-4328-ab52-95e9b0b1f177] --&gt;</description>
      <pubDate>Mon, 22 Sep 2014 12:59:20 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6751730?tstart=0#6751730</guid>
      <dc:date>2014-09-22T12:59:20Z</dc:date>
      <clearspace:dateToText>1 month 3 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How to open an extension programatically?</title>
      <link>https://forums.adobe.com/message/6751503?tstart=0#6751503</link>
      <description>&lt;!-- [DocumentBodyStart:05299f5f-82fc-4801-9d1e-735ed36333b7] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;a class="jiveTT-hover-user jive-link-profile-small" data-containerId="-1" data-containerType="-1" data-objectId="1677711" data-objectType="3" href="https://forums.adobe.com/people/maddy1907"&gt;maddy1907&lt;/a&gt; We have made the APIs you need public ;-). They will be available in the next InDesign SDK release, but you will be able to access them sooner than that if you still have access to the pre-release site. The file you will need is &amp;lt;SDK&amp;gt;/source/public/interfaces/ui/ICSXSPlugPlugExtensions.h and the two APIs are LoadExtension(...) and UnloadExtension(...). Hopefully &lt;a class="jiveTT-hover-user jive-link-profile-small" data-containerId="-1" data-containerType="-1" data-objectId="2241441" data-objectType="3" href="https://forums.adobe.com/people/pierrel"&gt;pierrel&lt;/a&gt; will find this useful too.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:05299f5f-82fc-4801-9d1e-735ed36333b7] --&gt;</description>
      <pubDate>Mon, 22 Sep 2014 11:29:31 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6751503?tstart=0#6751503</guid>
      <dc:date>2014-09-22T11:29:31Z</dc:date>
      <clearspace:dateToText>1 month 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: aihostadapter for illustrator cc 2014 (for use with flex)</title>
      <link>https://forums.adobe.com/message/6744132?tstart=0#6744132</link>
      <description>&lt;!-- [DocumentBodyStart:a610ef9d-3821-4c33-a045-dda3d44a35c2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Thank you very much for reply.&lt;/p&gt;&lt;p&gt;Is this issue connected with VulcanLib ?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Looking forward for any update.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a610ef9d-3821-4c33-a045-dda3d44a35c2] --&gt;</description>
      <pubDate>Fri, 19 Sep 2014 11:04:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6744132?tstart=0#6744132</guid>
      <dc:date>2014-09-19T11:04:24Z</dc:date>
      <clearspace:dateToText>1 month 4 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: aihostadapter for illustrator cc 2014 (for use with flex)</title>
      <link>https://forums.adobe.com/message/6744038?tstart=0#6744038</link>
      <description>&lt;!-- [DocumentBodyStart:9a19ad6a-2325-4234-bf65-58b16786a5c3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;It is same with the previous issue that native AIHostAdapter CANNOT receive any event. More update coming soon.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9a19ad6a-2325-4234-bf65-58b16786a5c3] --&gt;</description>
      <pubDate>Fri, 19 Sep 2014 09:31:38 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6744038?tstart=0#6744038</guid>
      <dc:date>2014-09-19T09:31:38Z</dc:date>
      <clearspace:dateToText>1 month 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: aihostadapter for illustrator cc 2014 (for use with flex)</title>
      <link>https://forums.adobe.com/message/6744037?tstart=0#6744037</link>
      <description>&lt;!-- [DocumentBodyStart:9a01d44b-8b43-44dc-9148-1b86d02ea34d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Yes, there is something wrong when register the event from SWC library to native AIHostAdapter. &lt;/p&gt;&lt;p&gt;The native AIHostAdpater CANNOT receive any event to SWC client, so there always is a time-out or no event is dispatched to SWF client.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am investigating this issue for it has dependence on several other components. &lt;/p&gt;&lt;p&gt;Any update I will show you.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:9a01d44b-8b43-44dc-9148-1b86d02ea34d] --&gt;</description>
      <pubDate>Fri, 19 Sep 2014 09:30:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6744037?tstart=0#6744037</guid>
      <dc:date>2014-09-19T09:30:27Z</dc:date>
      <clearspace:dateToText>1 month 4 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>I canceled my month to month Extension Builder plan but "Withdrawn: active on September 27, 2014 " under the product, What does this mean? Is it going to be reactivated on September 27, 2014?</title>
      <link>https://forums.adobe.com/message/6740560?tstart=0#6740560</link>
      <description>&lt;!-- [DocumentBodyStart:aa8d844f-7163-4922-ac79-af0154dda012] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I canceled my month to month Extension Builder plan but "Withdrawn: active on September 27, 2014 " under the product, What does this mean? Is it going to be reactivated on September 27, 2014?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:aa8d844f-7163-4922-ac79-af0154dda012] --&gt;</description>
      <pubDate>Thu, 18 Sep 2014 10:02:13 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6740560?tstart=0#6740560</guid>
      <dc:date>2014-09-18T10:02:13Z</dc:date>
      <clearspace:dateToText>1 month 4 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How to open an extension programatically?</title>
      <link>https://forums.adobe.com/message/6740340?tstart=0#6740340</link>
      <description>&lt;!-- [DocumentBodyStart:912d6b07-5a3a-4598-bdf3-aec0b46811bd] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I noticed that under Help&amp;gt;What's New, the palette that appears is a modeless dialog which is HTML5 extension. Therefore there's surely a way to change the menu item's location other than the extensions location but probably it's not exposed to the third party developers. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This was the reply I got from adobe on 3rd March 2014 &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;[Internal 3/10/2014 3:25:33 AM]&lt;/strong&gt; Thank you for logging this enhancement request. We are adding it to our database of feature requests and presently closing it from the bug-base.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:912d6b07-5a3a-4598-bdf3-aec0b46811bd] --&gt;</description>
      <pubDate>Thu, 18 Sep 2014 06:09:15 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6740340?tstart=0#6740340</guid>
      <dc:date>2014-09-18T06:09:15Z</dc:date>
      <clearspace:dateToText>1 month 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: How to open an extension programatically?</title>
      <link>https://forums.adobe.com/message/6739010?tstart=0#6739010</link>
      <description>&lt;!-- [DocumentBodyStart:541661c4-f4a9-415c-990e-b1a70fd61f8b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Our desire (at Typefi) is to have all of our plug-ins/extensions be grouped under the same Windows submenu (e.g., Windows &amp;#8594; Typefi) rather than the C++ plug-ins appearing in one location and the HTML extensions appearing elsewhere. If it's not possible to relocate the HTML extension directly, then a fallback would be a stub C++ plug-in that would appear in the correct location that simply launch the HTML extension (panel).&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:541661c4-f4a9-415c-990e-b1a70fd61f8b] --&gt;</description>
      <pubDate>Wed, 17 Sep 2014 18:41:39 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6739010?tstart=0#6739010</guid>
      <dc:date>2014-09-17T18:41:39Z</dc:date>
      <clearspace:dateToText>1 month 4 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

