<?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 : Unanswered Discussions - Bridge Scripting</title>
    <link>https://forums.adobe.com/community/bridge/bridge_scripting?view=discussions&amp;filter=open</link>
    <description>Unanswered Discussion Threads in Bridge Scripting</description>
    <language>en</language>
    <pubDate>Wed, 12 Nov 2014 17:05:46 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-11-12T17:05:46Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>script planning advise</title>
      <link>https://forums.adobe.com/thread/1632692</link>
      <description>&lt;!-- [DocumentBodyStart:f9b1e8a2-f33f-4b6d-b701-3bb7cf2cbfdb] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I would like to ask for help in planning a Bridge script.&lt;/p&gt;&lt;p&gt;I am a beginner Photoshop and Bridge developer.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Script behavior:&lt;/p&gt;&lt;p&gt;Check for selected thumbnail&lt;/p&gt;&lt;p&gt;Open the selected&amp;nbsp; thumbnail/s from Bridge in Photoshop.&lt;/p&gt;&lt;p&gt;Run a set of Photoshop actions&lt;/p&gt;&lt;p&gt;Save the changes to the file&lt;/p&gt;&lt;p&gt;Close the file&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How do I approach these tasks programmatically?&lt;/p&gt;&lt;p&gt;What are the sequence of events to necessary to execute the script?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Applying photoshop scripting as a model I can come up with this sequence which can be scripted with the if else statement. &lt;/p&gt;&lt;p&gt;// check if thumbnail is selected&lt;/p&gt;&lt;p&gt;// if no thumbnail is selected send alert message&lt;/p&gt;&lt;p&gt;// if thumbnail is selected open in Photoshop&lt;/p&gt;&lt;p&gt;// run photoshop actions&lt;/p&gt;&lt;p&gt;// save changes to file&lt;/p&gt;&lt;p&gt;// close file&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Will this approach work with a Bridge script?&lt;/p&gt;&lt;p&gt;How do I call the Photoshop application from Bridge?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f9b1e8a2-f33f-4b6d-b701-3bb7cf2cbfdb] --&gt;&lt;img src='/beacon?t=1415930014482' /&gt;</description>
      <pubDate>Tue, 11 Nov 2014 20:29:44 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1632692</guid>
      <dc:date>2014-11-11T20:29:44Z</dc:date>
      <clearspace:dateToText>1 day 9 hours ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Is it possible to modify this script to include subfolders?</title>
      <link>https://forums.adobe.com/thread/1632611</link>
      <description>&lt;!-- [DocumentBodyStart:d3e64187-a7d0-4997-af71-13b7225739b4] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have tried to do this with no luck. This script works great, but how to I make it apply to all sub-folders? Thanks for any suggestions.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;#target bridge&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt; if( BridgeTalk.appName == "bridge" ) {&amp;nbsp; &lt;/p&gt;&lt;p&gt;descToTitle = MenuElement.create("command", "Keys to Title", "at the end of Tools");&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;descToTitle.onSelect = function () { &lt;/p&gt;&lt;p&gt; if (ExternalObject.AdobeXMPScript == undefined) ExternalObject.AdobeXMPScript = new ExternalObject("lib:AdobeXMPScript");&lt;/p&gt;&lt;p&gt; var thumb = app.document.selections;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for(var s in thumb){&lt;/p&gt;&lt;p&gt; if(thumb[s].hasMetadata){&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var selectedFile = thumb[s].spec;&lt;/p&gt;&lt;p&gt;&amp;nbsp; var myXmpFile = new XMPFile( selectedFile.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_UPDATE);&lt;/p&gt;&lt;p&gt;&amp;nbsp; var myXmp = myXmpFile.getXMP();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var Description =&amp;nbsp; getArrayItems(XMPConst.NS_DC, "keywords"); &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myXmp.deleteProperty(XMPConst.NS_DC, "title");&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myXmp.appendArrayItem(XMPConst.NS_DC, "title", Description, 0, XMPConst.ALIAS_TO_ALT_TEXT);&lt;/p&gt;&lt;p&gt;&lt;span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myXmp.setQualifier(XMPConst.NS_DC, "title[1]", "&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.w3.org/XML/1998/namespace" rel="nofollow"&gt;http://www.w3.org/XML/1998/namespace&lt;/a&gt;&lt;span&gt;", "lang", "x-default");&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;function getArrayItems(ns, prop){&lt;/p&gt;&lt;p&gt;var arrItem=[];&lt;/p&gt;&lt;p&gt;try{&lt;/p&gt;&lt;p&gt;var items = myXmp.countArrayItems(ns, prop);&lt;/p&gt;&lt;p&gt; for(var i = 1;i &amp;lt;= items;i++){&lt;/p&gt;&lt;p&gt; arrItem.push(myXmp.getArrayItem(ns, prop, i));&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;return arrItem;&lt;/p&gt;&lt;p&gt;}catch(e){alert(e +" Line: "+ e.line);}&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (myXmpFile.canPutXMP(myXmp)) { &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myXmpFile.putXMP(myXmp);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myXmpFile.closeFile(XMPConst.CLOSE_UPDATE_SAFELY); &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;/p&gt;&lt;p&gt;&amp;nbsp; xmpFile.closeFile();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d3e64187-a7d0-4997-af71-13b7225739b4] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">keywords</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">sub-folder</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">scrit</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bride_cc</category>
      <pubDate>Tue, 11 Nov 2014 19:05:41 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1632611</guid>
      <dc:date>2014-11-11T19:05:41Z</dc:date>
      <clearspace:dateToText>2 days 4 hours ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>complicated question: dialog box-batch processing script</title>
      <link>https://forums.adobe.com/thread/1630466</link>
      <description>&lt;!-- [DocumentBodyStart:db42e89c-546f-4ecc-8bc5-1b17bf3b958d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am adapting the working script I found on this forum.&lt;/p&gt;&lt;p&gt;Script: O&lt;span style="font-size: 10pt; line-height: 1.5em;"&gt;pen files as layers in Photoshop&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-thread-small" data-containerId="3477" data-containerType="14" data-objectId="1313579" data-objectType="1" href="https://forums.adobe.com/thread/1313579"&gt;https://forums.adobe.com/thread/1313579&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The goal of the adaptation is to include a javascript Folder dialog to set the save folder destination at run time and&lt;/p&gt;&lt;p&gt;use this folder destination for the remaining script batch processing functions.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Presently, the script loads a Bridge stack as Photoshop layers and saves the layered tiff using the Folder dialog.&lt;/p&gt;&lt;p&gt;The folder dialog is manifesting every time the script encounters a Bridge stack.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The question is what is the correct script logic to set the destination folder once at run time and keep this destination&lt;/p&gt;&lt;p&gt;folder for the stack batch processing.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;#target bridge &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var stacks = app.document.stacks;&lt;/p&gt;&lt;p&gt;var stackCount = stacks.length;&lt;/p&gt;&lt;p&gt;for(var s = 0;s&amp;lt;stackCount;s++){&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var stackFiles = getStackFiles( stacks[s] );&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(stackFiles.length&amp;gt; 1){&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; var bt = new BridgeTalk;&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; bt.target = "photoshop";&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; var myScript = ("var ftn = " + psRemote.toSource() + "; ftn("+stackFiles.toSource()+");");&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; bt.body = myScript;&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; bt.send(5);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;p&gt;function getStackFiles( stack ){&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var files = new Array();&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for( var f = 0; f&amp;lt;stack.thumbnails.length;f++){&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; files.push(stack.thumbnails[f].spec);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return files;&lt;/p&gt;&lt;p&gt;};&lt;/p&gt;&lt;p&gt;function psRemote(stackFiles){&lt;/p&gt;&lt;p&gt;app.bringToFront();&lt;/p&gt;&lt;p&gt;var thisDoc = open(File(stackFiles[0]));&lt;/p&gt;&lt;p&gt;var Name = decodeURI(app.activeDocument.name).slice(0,-4);&lt;/p&gt;&lt;p&gt;thisDoc.layers[0].name = decodeURI(Name);&lt;/p&gt;&lt;p&gt;for(var a = 1;a&amp;lt;stackFiles.length;a++){&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; open(File(stackFiles[a]));&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name = decodeURI(app.activeDocument.name).slice(0,-4);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; activeDocument.activeLayer.duplicate(thisDoc);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; thisDoc.layers[0].name = Name;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var tifOptions = new TiffSaveOptions();&lt;/p&gt;&lt;p&gt;tifOptions = new TiffSaveOptions();&lt;/p&gt;&lt;p&gt;tifOptions.embedColorProfile = true;&lt;/p&gt;&lt;p&gt;tifOptions.imageCompression = TIFFEncoding.TIFFLZW;&lt;/p&gt;&lt;p&gt;tifOptions.alphaChannels = false;&lt;/p&gt;&lt;p&gt;tifOptions.byteOrder = ByteOrder.MACOS;&lt;/p&gt;&lt;p&gt;tifOptions.layers = true;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;var theFolder = Folder.selectDialog ("Select Folder");&lt;/p&gt;&lt;p&gt;if (theFolder) {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var myFile = new File( theFolder + "/" + app.activeDocument.name);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.activeDocument.saveAs(myFile, tifOptions, true);&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;/p&gt;&lt;p&gt;app.activeDocument.close(SaveOptions.DONOTSAVECHANGES); &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;}&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:db42e89c-546f-4ecc-8bc5-1b17bf3b958d] --&gt;</description>
      <pubDate>Sat, 08 Nov 2014 22:25:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1630466</guid>
      <dc:date>2014-11-08T22:25:23Z</dc:date>
      <clearspace:dateToText>5 days 3 hours ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Can an Illustrator Action be batched out of bridge?</title>
      <link>https://forums.adobe.com/thread/1630398</link>
      <description>&lt;!-- [DocumentBodyStart:f3212b3c-9697-416f-919a-5c4d937fa3f7] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm looking for a way to automate an Illustrator action. I can do batch out of ILL. But was wondering if the Action can be run on a selection of images out of Bridge?&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;Max&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f3212b3c-9697-416f-919a-5c4d937fa3f7] --&gt;</description>
      <pubDate>Sat, 08 Nov 2014 21:18:37 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1630398</guid>
      <dc:date>2014-11-08T21:18:37Z</dc:date>
      <clearspace:dateToText>5 days 5 hours ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Is there a way to capitalize a string using batch rename regex in Bridge?</title>
      <link>https://forums.adobe.com/thread/1622743</link>
      <description>&lt;!-- [DocumentBodyStart:6c46b2de-d486-4b7a-86e4-b0071ecb4cb5] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Has anyone had success using more advanced pieces of regex to properly rename strings? I want to Capitalize the 3rd back reference in a file name, and although I believe I'm following the proper way of doing so via &lt;a class="jive-link-external-small" href="http://www.regular-expressions.info/replacecase.html" rel="nofollow"&gt;Replacement Text Case Conversion&lt;/a&gt;, Bridge is just giving me a capital U instead. Please see what I am doing below. Additionally, does anyone know what flavor regex Bridge uses? Thanks!&lt;br/&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6884164-689917/Screen+Shot+2014-10-30+at+11.18.58+AM.png"&gt;&lt;img alt="Screen Shot 2014-10-30 at 11.18.58 AM.png" class="jive-image image-1" height="582" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6884164-689917/Screen+Shot+2014-10-30+at+11.18.58+AM.png" style="height: 444px; width: 620px;" width="812"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:6c46b2de-d486-4b7a-86e4-b0071ecb4cb5] --&gt;</description>
      <pubDate>Thu, 30 Oct 2014 18:23:19 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1622743</guid>
      <dc:date>2014-10-30T18:23:19Z</dc:date>
      <clearspace:dateToText>2 weeks 7 hours ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>str.replace can't recognize some character in adobe js</title>
      <link>https://forums.adobe.com/thread/1622740</link>
      <description>&lt;!-- [DocumentBodyStart:b20c4cff-9d46-47c1-8586-746c47352f35] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Some file name with foreign character like &amp;agrave;&amp;nbsp; &amp;#232;&amp;nbsp; &amp;#236;&amp;nbsp; &amp;#242;&amp;nbsp; &amp;#249;&amp;nbsp; &amp;#192;&amp;nbsp; &amp;#200;&amp;nbsp; &amp;Igrave;&amp;nbsp; &amp;#210;&amp;nbsp; &amp;Ugrave;. Want to replace with others and for this str.replace(/&amp;agrave;/g, '1OeL1') use this js function but this function can't recognize those character.&lt;br/&gt;How can i recognize those character with adobe js. &lt;span style="color: #333333; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;please help me in this regards. i'm working on adobe bridge cs5.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #333333; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;thanks in advance.&lt;br/&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b20c4cff-9d46-47c1-8586-746c47352f35] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">adobe bridge</category>
      <pubDate>Thu, 30 Oct 2014 17:39:31 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1622740</guid>
      <dc:date>2014-10-30T17:39:31Z</dc:date>
      <clearspace:dateToText>1 week 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>4</clearspace:messageCount>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Bridge alert</title>
      <link>https://forums.adobe.com/thread/1612988</link>
      <description>&lt;!-- [DocumentBodyStart:427bab05-a728-42ef-932f-7c108458ed32] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Can Bridge send an alert after a file has been opened 10 minutes in Photoshop?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:427bab05-a728-42ef-932f-7c108458ed32] --&gt;</description>
      <pubDate>Tue, 21 Oct 2014 01:01:46 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1612988</guid>
      <dc:date>2014-10-21T01:01:46Z</dc:date>
      <clearspace:dateToText>3 weeks 3 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>attach UI to script</title>
      <link>https://forums.adobe.com/thread/1611692</link>
      <description>&lt;!-- [DocumentBodyStart:35913914-a5ac-497d-ade5-9186561ff36d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;I stated this post in ht photoshop forum originally.&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&lt;a class="jive-link-message-small" data-containerId="3342" data-containerType="14" data-objectId="6844404" data-objectType="2" href="https://forums.adobe.com/message/6844404#6844404"&gt;https://forums.adobe.com/message/6844404#6844404&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;I use a custom script to batch process files into photoshop layers.&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;Every time I run the script I have to manually edit the folder path in the script to save the new images in a new folder.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;Can a UI dialog be implemented into a script used for batch file processing?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;The UI dialog:&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;Enter folder path&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;Remember the last folder path used&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;When the scripts runs the UI dialog displays. After the user enters the folder path the the scripts batch processes a folder of images.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:35913914-a5ac-497d-ade5-9186561ff36d] --&gt;</description>
      <pubDate>Sun, 19 Oct 2014 15:53:00 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1611692</guid>
      <dc:date>2014-10-19T15:53:00Z</dc:date>
      <clearspace:dateToText>3 weeks 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Bridge script UI folder path</title>
      <link>https://forums.adobe.com/thread/1609257</link>
      <description>&lt;!-- [DocumentBodyStart:3456f338-b3b2-4148-bac0-f934d2956325] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am using a custom Bridge script to load stacks into photoshop layers.&lt;/p&gt;&lt;p&gt;Every time I run the script I have to change the folder path manually to save the images in a new folder.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like to find out if a UI dialog can be used with the script to edit the folder path.&lt;/p&gt;&lt;p&gt;The UI dialog would offer to use the previous folder path or to enter/select a new folder location.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have not been able to incorporate the core Javascript class Folder successfully with the Bridge script.&lt;/p&gt;&lt;p&gt;The scripts hangs, does not complete when I add the core JS Folder class.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How do I approach building a script UI in Bridge?&lt;/p&gt;&lt;p&gt;Are there any simple Bridge script UI samples available to deconstruct?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3456f338-b3b2-4148-bac0-f934d2956325] --&gt;</description>
      <pubDate>Thu, 16 Oct 2014 15:58:44 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1609257</guid>
      <dc:date>2014-10-16T15:58:44Z</dc:date>
      <clearspace:dateToText>2 weeks 8 hours ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>extract metadata from selected files in bridge</title>
      <link>https://forums.adobe.com/thread/1597575</link>
      <description>&lt;!-- [DocumentBodyStart:ef20604d-f4d0-49fe-a848-4409946b190b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I used to use extensis portfolio to quickly export metadata from selected files to create print worksheets. I could customize which metadata would be displayed.&lt;/p&gt;&lt;p&gt;For instance:&lt;/p&gt;&lt;p&gt;Thumbnail&lt;/p&gt;&lt;p&gt;title&lt;/p&gt;&lt;p&gt;pixels&lt;/p&gt;&lt;p&gt;file type&lt;/p&gt;&lt;p&gt;date created and modified&lt;/p&gt;&lt;p&gt;height and width&lt;/p&gt;&lt;p&gt;dpi&lt;/p&gt;&lt;p&gt;embedded icc profile&lt;/p&gt;&lt;p&gt;file location &lt;/p&gt;&lt;p&gt;iptc description&lt;/p&gt;&lt;p&gt;It was a quick drag and drop process, but portfolio is now only available in the server edition for over $1000. Does anyone have script for Mac OS that would accomplish this?&lt;/p&gt;&lt;p&gt;Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ef20604d-f4d0-49fe-a848-4409946b190b] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">metadata</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bridge scripting</category>
      <pubDate>Wed, 08 Oct 2014 19:26:44 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1597575</guid>
      <dc:date>2014-10-08T19:26:44Z</dc:date>
      <clearspace:dateToText>1 month 6 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Bridge open file run photoshop action combo</title>
      <link>https://forums.adobe.com/thread/1595132</link>
      <description>&lt;!-- [DocumentBodyStart:db7de1ac-f5b3-47a8-a2b0-24bec8804052] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;When opening photoshop documents via Bridge, &lt;/p&gt;&lt;p&gt;can a photoshop action run automatically on the files opened by Bridge?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:db7de1ac-f5b3-47a8-a2b0-24bec8804052] --&gt;</description>
      <pubDate>Mon, 06 Oct 2014 18:35:14 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1595132</guid>
      <dc:date>2014-10-06T18:35:14Z</dc:date>
      <clearspace:dateToText>1 month 7 days ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Bridge Scripting!</title>
      <link>https://forums.adobe.com/thread/1594444</link>
      <description>&lt;!-- [DocumentBodyStart:c43c3866-5fd7-4334-8039-5c1bd87d11af] --&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 would like to open a folder images in Adobe Bridge, -&amp;gt; Open Images in Camera Raw --&amp;gt; Adjust tone curve as 'Medium Contrast" and save it.&lt;/p&gt;&lt;p&gt;and then&lt;/p&gt;&lt;p&gt;I would start editing the processed images through photoshop scripting.&lt;/p&gt;&lt;p&gt;help me! &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&gt;rajiv.s&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c43c3866-5fd7-4334-8039-5c1bd87d11af] --&gt;</description>
      <pubDate>Mon, 06 Oct 2014 08:59:13 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1594444</guid>
      <dc:date>2014-10-06T08:59:13Z</dc:date>
      <clearspace:dateToText>1 month 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>open image stack as a layered photoshop document</title>
      <link>https://forums.adobe.com/thread/1594386</link>
      <description>&lt;!-- [DocumentBodyStart:82a332e4-abfd-40fc-818d-00f1764fa137] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Can image stacks be opened as a layered photoshop document with the help of a script?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:82a332e4-abfd-40fc-818d-00f1764fa137] --&gt;</description>
      <pubDate>Mon, 06 Oct 2014 06:48:11 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1594386</guid>
      <dc:date>2014-10-06T06:48:11Z</dc:date>
      <clearspace:dateToText>1 month 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>custom menu</title>
      <link>https://forums.adobe.com/thread/1587068</link>
      <description>&lt;!-- [DocumentBodyStart:fdb05c7a-caed-43d1-aaeb-9835a8f413c2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Is it possible to add a custom menu item to Adobe Bridge to call the Liquify Interface?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Currently Photoshop CC 2014 is not able to load the liquify interface through and action or script &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:fdb05c7a-caed-43d1-aaeb-9835a8f413c2] --&gt;</description>
      <pubDate>Sat, 27 Sep 2014 21:19:09 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1587068</guid>
      <dc:date>2014-09-27T21:19:09Z</dc:date>
      <clearspace:dateToText>1 month 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>menu shortcut</title>
      <link>https://forums.adobe.com/thread/1586135</link>
      <description>&lt;!-- [DocumentBodyStart:d61138d0-6e71-40e9-9fd1-a63c5b80a9ae] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Cana Br script lunch a menu item?&lt;/p&gt;&lt;p&gt;Trying to find out id Dr brown Services placeamatic script can be launched with a menu shortcut or through a script.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d61138d0-6e71-40e9-9fd1-a63c5b80a9ae] --&gt;</description>
      <pubDate>Fri, 26 Sep 2014 15:19:13 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1586135</guid>
      <dc:date>2014-09-26T15:19:13Z</dc:date>
      <clearspace:dateToText>1 month 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Comment selectioner des photos par heure de prise</title>
      <link>https://forums.adobe.com/thread/1580753</link>
      <description>&lt;!-- [DocumentBodyStart:5f0ddc87-d2e8-4b1a-b500-97d93d2fd05e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Bonjour&lt;/p&gt;&lt;p&gt;J'ai cherch&amp;#233; cet argument par tous mais j'ai rien trouv&amp;#233; donc je pose ici la question.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Depuis Javier 2014 j'ai une gopro qui chaque jour prend une photo chaque minute, maintenant (21 septembre 2014) j'aimerais pouvoir voir le timelapse final, mais vu qu'il s'agit d'un timelapse d'un chantier, l'action se passe du lundi au vendredi de 8h00 &amp;agrave; 18h00, vu que le timelapse est assez &amp;#233;norme, je cherche un moyen pour s&amp;#233;lectionner que les photos qu'il sont &amp;#233;t&amp;#233; cr&amp;#233;e dans cette plage horaire. j'ai vu que sur bridge existe la possibilit&amp;#233; de cr&amp;#233;er des collections smart, mais on peut juste d&amp;#233;finir la plage de date.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Donc est ce que existe un moyen pour am&amp;#233;liorer la recherche de bridge pour lui ajouter un filtre horaire???&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;J&amp;#8217;esp&amp;#232;re que ma question soit assez compr&amp;#233;hensible, je ne suis pas fran&amp;ccedil;ais.&lt;br/&gt;Merci&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Simone&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5f0ddc87-d2e8-4b1a-b500-97d93d2fd05e] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">script</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bridge</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">selection</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">timelapse</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">photos;</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">heures</category>
      <pubDate>Sun, 21 Sep 2014 12:44:45 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1580753</guid>
      <dc:date>2014-09-21T12:44:45Z</dc:date>
      <clearspace:dateToText>1 month 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Seeking method to change what is displayed in Filter--&gt;Focal length</title>
      <link>https://forums.adobe.com/thread/1579760</link>
      <description>&lt;!-- [DocumentBodyStart:b419303f-463a-48fa-9bc6-4f15ba1a10dc] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;When in Bridge under the Filter tab--&amp;gt;Focal length what I have listed is 5mm, 5.8mm, 6mm, 6.2mm, 6.3mm, 6.5mm etc. etc. and the list goes on and on. The conclusion being that this list is way too lo0ng to serve as a good filter to me.&lt;/p&gt;&lt;p&gt;I sold all of my lenses 2 years ago and replaced them with one zoom lens (and at times a pocket camera also with a zoom). I couldn't care less if the photo was taken at 6mm or 6.2mm. To me they are just about the same thing. However, I would like it if it actually game me a range say 5mm-10mm; 10.1 mm-15mm etc. Now the filter makes sense to me being more manageable. Is there any way of making it so?&lt;/p&gt;&lt;p&gt;In other words I no longer want to see:&lt;/p&gt;&lt;p&gt;5.8mm,&lt;/p&gt;&lt;p&gt;6mm,&lt;/p&gt;&lt;p&gt;6.2mm,&lt;/p&gt;&lt;p&gt;6.3mm,&lt;/p&gt;&lt;p&gt;6.5mm&lt;/p&gt;&lt;p&gt;But would like instead to see:&lt;/p&gt;&lt;p&gt;5mm--10mm&lt;/p&gt;&lt;p&gt;10.1mm--15mm&lt;/p&gt;&lt;p&gt;15.1mm--20mm&lt;/p&gt;&lt;p&gt;Which are in increments of 5, BUT, increments of 10 would be fine as well or even better.&lt;/p&gt;&lt;p&gt;Thank you&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b419303f-463a-48fa-9bc6-4f15ba1a10dc] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bridge</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">filter</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">organization</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">focal length</category>
      <pubDate>Fri, 19 Sep 2014 20:31:19 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1579760</guid>
      <dc:date>2014-09-19T20:31:19Z</dc:date>
      <clearspace:dateToText>3 weeks 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Script to view SVG files in Bridge?</title>
      <link>https://forums.adobe.com/thread/1578659</link>
      <description>&lt;!-- [DocumentBodyStart:d823b026-4ac6-4b04-96da-e6a4df496772] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Is there a script to view SVG files in Bridge? I have to compare 55k images converted from eps to svg. &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d823b026-4ac6-4b04-96da-e6a4df496772] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">scripting</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">scripts</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">adobe bridge</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">svg's</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">svg file</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">svg format</category>
      <pubDate>Thu, 18 Sep 2014 19:02:10 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1578659</guid>
      <dc:date>2014-09-18T19:02:10Z</dc:date>
      <clearspace:dateToText>1 month 4 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>smart collection of image files linked to InDesign documents?</title>
      <link>https://forums.adobe.com/thread/1570209</link>
      <description>&lt;!-- [DocumentBodyStart:334b5669-34fe-461b-9bd7-bac31250c660] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I would like to create a Smart Collection that finds all of the image files linked to InDesign documents in a specific folder.&lt;br/&gt;I am the yearbook advisor at school and I need to easily find all of the images that have been placed so that we don't reuse images by mistake.&lt;/p&gt;&lt;p&gt;I have no scripting experience, so I can't create something myself, and I haven't been able to find anything that does such a thing.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Many yearbook design software programs do offer something like this - indicating that an image has been used previously.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I guess it would need to look at the metadata of the InDesign Files for the Linked Files and then pit all of the files found there into a Smart Collection.&amp;nbsp; Ideally, I would be able to further limit it by file type. ANd to not include Master pages if so desired (although that would just be a bonus!)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I greatly appreciate any assistance anyone can give.&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:334b5669-34fe-461b-9bd7-bac31250c660] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bridge</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">smart collections</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">linked files</category>
      <pubDate>Tue, 09 Sep 2014 18:04:52 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1570209</guid>
      <dc:date>2014-09-09T18:04:52Z</dc:date>
      <clearspace:dateToText>2 months 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>6</clearspace:messageCount>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>can i send email directly from bridge cs6 and cc ?</title>
      <link>https://forums.adobe.com/thread/1556671</link>
      <description>&lt;!-- [DocumentBodyStart:1d22ec88-a50f-497a-afd8-b300b927bef7] --&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;can i send emails directly from bridge cs6 or cc directly from bridge?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;i found this scripts &lt;a class="jive-link-external-small" href="http://kb2.adobe.com/community/publishing/894/cpsid_89450.html" rel="nofollow"&gt;http://kb2.adobe.com/community/publishing/894/cpsid_89450.html&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;but i run cs6 and cc under windows 7 sp1 64bit and windows 8.1 64bit&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;and i have thunderbird email client&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;is there a way to make it work?&lt;/p&gt;&lt;p&gt;maybe i can install another email client&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:1d22ec88-a50f-497a-afd8-b300b927bef7] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">script</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">mail</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">send</category>
      <pubDate>Mon, 25 Aug 2014 07:05:45 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1556671</guid>
      <dc:date>2014-08-25T07:05:45Z</dc:date>
      <clearspace:dateToText>2 months 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>4</clearspace:messageCount>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Have bridge search a folder and its subfolders and covert files to specific file type?? possible?</title>
      <link>https://forums.adobe.com/thread/1552018</link>
      <description>&lt;!-- [DocumentBodyStart:d1110cbb-1c79-4b62-9823-c4d9ffcf530d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Dear adobe community,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My question is whether or not Bridge can automatically search through an archive of folders and convert any TIFF or DNG files into jpeg format. I am just starting this venture and am wondering where to get started in the scripting SDK or if there are other resources at our disposal. &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;Thank You for your time,&lt;/p&gt;&lt;p&gt;~joacampb&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d1110cbb-1c79-4b62-9823-c4d9ffcf530d] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">jpeg</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">script</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">convert</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">dng</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">automate</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">tiff</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">batch edit</category>
      <pubDate>Tue, 19 Aug 2014 21:06:48 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1552018</guid>
      <dc:date>2014-08-19T21:06:48Z</dc:date>
      <clearspace:dateToText>2 months 4 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Script to add the title from the filename without the extension?</title>
      <link>https://forums.adobe.com/thread/1550991</link>
      <description>&lt;!-- [DocumentBodyStart:d9be1192-85ef-4a29-ab94-7fdc49b1a368] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm looking for a way to add the filename to the "title", but minus the extension... Anyone have any ideas?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d9be1192-85ef-4a29-ab94-7fdc49b1a368] --&gt;</description>
      <pubDate>Mon, 18 Aug 2014 19:00:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1550991</guid>
      <dc:date>2014-08-18T19:00:54Z</dc:date>
      <clearspace:dateToText>2 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to support metadata for docx, csv, indb and others.</title>
      <link>https://forums.adobe.com/thread/1538739</link>
      <description>&lt;!-- [DocumentBodyStart:697b5b01-eb04-4fe1-8712-504e60bba507] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;Is there a plugin or a way to extend the supported extensions for metadata, especially IPTC Core?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:697b5b01-eb04-4fe1-8712-504e60bba507] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bridge</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">extension</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">metadata</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">iptc core</category>
      <pubDate>Mon, 04 Aug 2014 10:34:38 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1538739</guid>
      <dc:date>2014-08-04T10:34:38Z</dc:date>
      <clearspace:dateToText>3 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Preview custom text presets for AE via Bridge</title>
      <link>https://forums.adobe.com/thread/1536197</link>
      <description>&lt;!-- [DocumentBodyStart:6a3a7588-18a8-4191-bcd8-c4e2d1ea8be8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi there,&lt;/p&gt;&lt;p&gt;Can I preview custom text presets for After Effects via Bridge?&lt;/p&gt;&lt;p&gt;If so, can I control it somehow via scripting?&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;/div&gt;&lt;!-- [DocumentBodyEnd:6a3a7588-18a8-4191-bcd8-c4e2d1ea8be8] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bridge</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">presets</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">after effects</category>
      <pubDate>Thu, 31 Jul 2014 14:06:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1536197</guid>
      <dc:date>2014-07-31T14:06:27Z</dc:date>
      <clearspace:dateToText>3 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Mouse events listener</title>
      <link>https://forums.adobe.com/thread/1535400</link>
      <description>&lt;!-- [DocumentBodyStart:f71c96de-2418-4343-874f-7c52e7a2d4ce] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm having trouble listening for mouse events in Bridge CS6.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This example script works well in Photoshop and Toolkit, but not in Bridge:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:ab483fce-1fb8-4ef6-9838-afbf004f6b18][excluded]--&gt;&lt;pre class="javascript" name="code"&gt;var w =new Window ("dialog");
var b = w.add ("button", undefined, "Qwerty");

b.addEventListener("click", function (k){whatsup (k)});

function whatsup (p)
{
&amp;nbsp; if(p.button == 2){ $.writeln ("Right-button clicked.") }
&amp;nbsp; if(p.shiftKey){ $.writeln ("Shift key pressed.") }
&amp;nbsp; $.writeln ("X: "+ p.clientX);
&amp;nbsp; $.writeln ("Y: "+ p.clientY);
}
w.show ();&lt;/pre&gt;&lt;!--[CodeBlockEnd:ab483fce-1fb8-4ef6-9838-afbf004f6b18]--&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;Other event types like resize or focus work well. &lt;/p&gt;&lt;p&gt;The event types that seem to be broken are: mousedown, mouseup, mouseover, mouseout, click&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there a work-around to this problem?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f71c96de-2418-4343-874f-7c52e7a2d4ce] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">mouse</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">mouseover</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">click</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">addeventlistener</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">events</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">mousedown</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">mouseup</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">mouseout</category>
      <pubDate>Wed, 30 Jul 2014 14:46:15 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1535400</guid>
      <dc:date>2014-07-30T14:46:15Z</dc:date>
      <clearspace:dateToText>3 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>7</clearspace:messageCount>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>multi column menus</title>
      <link>https://forums.adobe.com/thread/1535219</link>
      <description>&lt;!-- [DocumentBodyStart:ef2edd56-7ceb-4aed-9007-e00fe739b8c8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hey,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have a custom menu item which lists a lot of content. &lt;/p&gt;&lt;p&gt;Actually so much content that it goes off-screen, but doesn't wrap into a second column.&lt;/p&gt;&lt;p&gt;I have to hover over the arrow at the bottom of the menu to get it to scroll. &lt;/p&gt;&lt;p&gt;That arrow is only visible on the main monitor, not on the second smaller monitor.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there any way to get multi-column menus instead of scrollable menus? windows start button style.&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;Antoine&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ef2edd56-7ceb-4aed-9007-e00fe739b8c8] --&gt;</description>
      <pubDate>Wed, 30 Jul 2014 10:59:12 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1535219</guid>
      <dc:date>2014-07-30T10:59:12Z</dc:date>
      <clearspace:dateToText>3 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Adobe Bridge CC: Batch Rename using any metadata field</title>
      <link>https://forums.adobe.com/thread/1510850</link>
      <description>&lt;!-- [DocumentBodyStart:51af2f89-2ceb-4f62-9a66-e09398a69cda] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;How can I add certain Metadata fields to the pull down menu in the batch rename function?&lt;/p&gt;&lt;p&gt;I need to do a batch rename of files, but using metadata fields that are not available as an option on the pull down menu.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Hoping to use any or all of these:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Audio : Artist, Album, Genre&lt;/p&gt;&lt;p&gt;IPTC Core : Description, Keywords, etc..&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:51af2f89-2ceb-4f62-9a66-e09398a69cda] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">#metadata</category>
      <pubDate>Mon, 30 Jun 2014 15:56:28 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1510850</guid>
      <dc:date>2014-06-30T15:56:28Z</dc:date>
      <clearspace:dateToText>4 months 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Adobe Bridge CC : metadata copy from one field to another for multiple files</title>
      <link>https://forums.adobe.com/thread/1510738</link>
      <description>&lt;!-- [DocumentBodyStart:4f3d3153-4357-48aa-b663-5b12148fc849] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;So I am using Bridge CC for managing audio files and have many many MP3's that I need to copy or move one field of metadata to another.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;ie:&amp;nbsp; copy "Audio Artist" field to "IPTC Core Creator" Field&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; move "IPTC Core Description" to "Video Log Comment" field&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there a script I can add that will let me select multiple files, and have it copy or move all the info from one of these fields to another?&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&gt;Scott&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-email-small" href="mailto:sootysax@yahoo.com"&gt;sootysax@yahoo.com&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4f3d3153-4357-48aa-b663-5b12148fc849] --&gt;</description>
      <pubDate>Mon, 30 Jun 2014 15:49:57 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1510738</guid>
      <dc:date>2014-06-30T15:49:57Z</dc:date>
      <clearspace:dateToText>4 months 4 days ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Scripts need to be updated for use from Bridge to Photoshop. Broken with CC2014</title>
      <link>https://forums.adobe.com/thread/1504072</link>
      <description>&lt;!-- [DocumentBodyStart:d0d091d9-018d-4d52-9149-342f3a65f325] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;Nasty news.&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;One cannot (though Adobe advises!) run the Uninstaller for Photoshop CC.&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;It removes the Bridge: Tools: Photoshop scripts, i.e. "Image Processor."&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;I reinstalled the older (CC) version, and the scripts returned&amp;#8212;HOWEVER&amp;#8212;the scripts STILL don't work.&lt;br/&gt;It launches the CC2014 version, and delivers an error message (attached).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt;&lt;a data-containerId="-1" data-containerType="-1" data-objectId="648505" data-objectType="111" href="/servlet/JiveServlet/downloadImage/2-6485412-648505/Screen+Shot+2014-06-22+at+6.11.01+PM.png"&gt;&lt;img alt="Screen Shot 2014-06-22 at 6.11.01 PM.png" class="jive-image image-1" height="173" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6485522-648515/450-173/Screen+Shot+2014-06-22+at+6.11.01+PM.png" style="border: 0px; font-style: inherit; font-family: inherit;" width="450"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:d0d091d9-018d-4d52-9149-342f3a65f325] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">photoshop bug</category>
      <pubDate>Mon, 23 Jun 2014 01:37:14 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1504072</guid>
      <dc:date>2014-06-23T01:37:14Z</dc:date>
      <clearspace:dateToText>4 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>execute command in command line.</title>
      <link>https://forums.adobe.com/thread/1497674</link>
      <description>&lt;!-- [DocumentBodyStart:5cd45631-755e-4114-a668-4d73856e54b1] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am trying to connect to a local database. I can use the terminal to execute commands to the database that work. The trick is that I am having difficulty sending those commands from bridge. This is what I have tried.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:3f90859c-74c0-41b3-abaf-4818acaf1064][excluded]--&gt;&lt;pre class="javascript" name="code"&gt;
app.system("Mongod --fork");
app.system("mongo");
app.system("use mydb");
app.system("db.testData.update({ name: 'bg'}, { $set: { name: 'Brett Gonterman'}})");
&lt;/pre&gt;&lt;!--[CodeBlockEnd:3f90859c-74c0-41b3-abaf-4818acaf1064]--&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;if I type this manually it works. If I send this through Bridge nothing happens. &lt;/p&gt;&lt;p&gt;&lt;strong&gt;How can I execute this?&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5cd45631-755e-4114-a668-4d73856e54b1] --&gt;</description>
      <pubDate>Mon, 16 Jun 2014 13:10:01 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1497674</guid>
      <dc:date>2014-06-16T13:10:01Z</dc:date>
      <clearspace:dateToText>3 months 1 month ago</clearspace:dateToText>
      <clearspace:messageCount>4</clearspace:messageCount>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Bridge and network drive</title>
      <link>https://forums.adobe.com/thread/1480873</link>
      <description>&lt;!-- [DocumentBodyStart:f1e879c0-4278-42ce-922f-5141bab926e6] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am planing to set up a Drobo network drive and three mac work stations with PSCC and BRCC.&lt;/p&gt;&lt;p&gt;Can Bridge run as a network application?&lt;/p&gt;&lt;p&gt;In other words if the source files live in the network drive, when computer A makes a Br collection,&lt;/p&gt;&lt;p&gt;do computers B and C see the same Br collection? &lt;/p&gt;&lt;p&gt;When computer B labels a files do computers A and C see the same label?&lt;/p&gt;&lt;p&gt;When computer C makes a PSCC edit do computer B and C see the updated image preview?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f1e879c0-4278-42ce-922f-5141bab926e6] --&gt;</description>
      <pubDate>Fri, 23 May 2014 02:20:08 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1480873</guid>
      <dc:date>2014-05-23T02:20:08Z</dc:date>
      <clearspace:dateToText>5 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>4</clearspace:messageCount>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Can Bridge CC create a list of files in .txt format ?</title>
      <link>https://forums.adobe.com/thread/1480142</link>
      <description>&lt;!-- [DocumentBodyStart:8b479df3-bcc3-4e1e-b3eb-95d22a42e591] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;hi all,&lt;/p&gt;&lt;p&gt;i'd like to know if i can create a list of files in .txt format using Bridge CC&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;It could be a good way to verify the integrity of an external database.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;thank you all&lt;/p&gt;&lt;p&gt;rafa&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&lt;span class="emoticon-inline emoticon_happy"&gt;&lt;/span&gt;&lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8b479df3-bcc3-4e1e-b3eb-95d22a42e591] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bridge</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">scripting</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">txt</category>
      <pubDate>Thu, 22 May 2014 07:25:13 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1480142</guid>
      <dc:date>2014-05-22T07:25:13Z</dc:date>
      <clearspace:dateToText>5 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>5</clearspace:messageCount>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Changing lens and aperture Exif data with script possible?</title>
      <link>https://forums.adobe.com/thread/1475586</link>
      <description>&lt;!-- [DocumentBodyStart:75a62ce3-72b6-4cef-ac98-3dcc80949d5d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I'm photographing with manual lenses that do not transmit exif data about lens type, focal length and aperture. I was looking for a Bridge addon that allows me to add this information, but found nothing. Is it possible to change this field with a Bridge script? I've read the documentation and found no evidence that it isn't allowed, but I've read on another site that it's impossible to change this kind of fields. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Can anybody shed some light on this? If it's generally possible I would write such a script. &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:75a62ce3-72b6-4cef-ac98-3dcc80949d5d] --&gt;</description>
      <pubDate>Fri, 16 May 2014 13:13:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1475586</guid>
      <dc:date>2014-05-16T13:13:24Z</dc:date>
      <clearspace:dateToText>5 months 1 month ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Script to customize 'Description' from Keywords?</title>
      <link>https://forums.adobe.com/thread/1465007</link>
      <description>&lt;!-- [DocumentBodyStart:0f41a32f-5329-4521-8347-2af5f9eff398] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I process multiple image galleries of 100-125 images on a daily basis using Bridge, and I add keywords to these images which then get converted to Wordpress tags when uploaded to my site. What I also want to do is add meaningful 'Description' (alt/text) to my images using the keywords I already have for the images.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For example, let's say I have 3 images in a gallery titled - 'X-Men Movie Premiere'.&lt;/p&gt;&lt;p&gt;Image001.jpg has keywords Hugh Jackman, Bryan SInger&lt;/p&gt;&lt;p&gt;Image002.jpg has keywords Hugh Jackman, Bryan SInger, Jennifer Lawrence&lt;/p&gt;&lt;p&gt;Image003.jpg has keyword Jennifer Lawrence&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 run a script that takes the keywords and append it to the gallery title or a customized text and make it the 'Description' for the image. So in this case, &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Customized Text = "at the X-Men Premiere"&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Image001.jpg should have description Hugh Jackman, Bryan SInger at the X-Men Premiere&lt;/p&gt;&lt;p&gt;Image002.jpg should have description Hugh Jackman, Bryan SInger, Jennifer Lawrence at the X-Men Premiere&lt;/p&gt;&lt;p&gt;Image003.jpg should have description Jennifer Lawrence at the X-Men Premiere&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any scripting gurus that can help? Thanks in advance!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0f41a32f-5329-4521-8347-2af5f9eff398] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">keyword</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">customize</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">description</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">descriptions</category>
      <pubDate>Sun, 04 May 2014 00:48:07 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1465007</guid>
      <dc:date>2014-05-04T00:48:07Z</dc:date>
      <clearspace:dateToText>6 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Sort by SOURCE - Metadata</title>
      <link>https://forums.adobe.com/thread/1463833</link>
      <description>&lt;!-- [DocumentBodyStart:13f732f8-21da-4aca-a035-6f24362732d9] --&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;I'm trying to find a way to sort photos in Bridge&amp;nbsp; by a specific metatdata field - SOURCE. &lt;/p&gt;&lt;p&gt;Does anyone know if there is a script for this, or if it's possible to make one? &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any guidance would 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:13f732f8-21da-4aca-a035-6f24362732d9] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">sort</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">metadata</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">source</category>
      <pubDate>Thu, 01 May 2014 16:18:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1463833</guid>
      <dc:date>2014-05-01T16:18:05Z</dc:date>
      <clearspace:dateToText>6 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>HTML5 Extensions for Bridge</title>
      <link>https://forums.adobe.com/thread/1462254</link>
      <description>&lt;!-- [DocumentBodyStart:8766a27c-224b-44f8-a9bb-73519ac72fd2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;span&gt;Many other Adobe products are moving to HTML5-based panels (&lt;/span&gt;&lt;a class="jive-link-external-small" href="http://blogs.adobe.com/cssdk/2013/09/introducing-html5-extensions.html" rel="nofollow" target="_blank"&gt;http://blogs.adobe.com/cssdk/2013/09/introducing-html5-extensions.html&lt;/a&gt;&lt;span&gt;), is there any way to find out if Bridge will do this too?&lt;/span&gt;&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:8766a27c-224b-44f8-a9bb-73519ac72fd2] --&gt;</description>
      <pubDate>Tue, 29 Apr 2014 22:23:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1462254</guid>
      <dc:date>2014-04-29T22:23:54Z</dc:date>
      <clearspace:dateToText>6 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Script contact sheet</title>
      <link>https://forums.adobe.com/thread/1462260</link>
      <description>&lt;!-- [DocumentBodyStart:10b7b1ec-efb4-4618-a583-a760a00a99aa] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi there,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm new to Bridge CC and I'm looking at helping a photographer friend streamline his time consuming manual process.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;He currently has a folder containing many sub-folders which each contain 6 images.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;He works his way through each sub-folder selecting all 6 images and clicking the pdf generation button on the Output panel to generate a contact sheet using a custom template including a footer and watermark.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I think I can manage looping through the folders but I'm unsure on how to start the pdf generation or apply the template and can't see anything about this in the SDK documentation.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Does anyone have any pointers? Links to useful resources or code snippets would also be great?&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;/div&gt;&lt;!-- [DocumentBodyEnd:10b7b1ec-efb4-4618-a583-a760a00a99aa] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">script_driven</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bridge_cc</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">contact_sheets</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">output_panel</category>
      <pubDate>Tue, 29 Apr 2014 22:13:41 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1462260</guid>
      <dc:date>2014-04-29T22:13:41Z</dc:date>
      <clearspace:dateToText>6 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>BW work space</title>
      <link>https://forums.adobe.com/thread/1448698</link>
      <description>&lt;!-- [DocumentBodyStart:1d0838bd-df13-4c52-af01-6d4380aae8ab] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have a need to sort color images by contrast. I find this task more efficient when looking at a BW version of the color image. &lt;/p&gt;&lt;p&gt;Can a BW work space be created through scripting? &lt;/p&gt;&lt;p&gt;Is there a way to turn the thumbnail view into BW in Bridge?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1d0838bd-df13-4c52-af01-6d4380aae8ab] --&gt;</description>
      <pubDate>Sat, 12 Apr 2014 04:32:03 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1448698</guid>
      <dc:date>2014-04-12T04:32:03Z</dc:date>
      <clearspace:dateToText>7 months 3 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Event handler if new File added in current folder</title>
      <link>https://forums.adobe.com/thread/1448231</link>
      <description>&lt;!-- [DocumentBodyStart:fc519962-6fb9-44df-89d4-3b7852168ee3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi folks,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm just trying to write a little jsx script for Bridge CS6. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;How can I implement an event handler that will react if the user adds a new thumbnail (new file) to the current folder in bridge. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I've tested it with this code, but it doesn't work:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;blockquote class="jive-quote"&gt;&lt;p&gt;app.document.thumbnail.watch ("children", function(id, oldVal, newVal) {&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $.writeln (oldVal + " to " + newVal);&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // some code here&lt;/p&gt;&lt;p&gt;});&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/blockquote&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks. Greetings&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:fc519962-6fb9-44df-89d4-3b7852168ee3] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">file</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bridge</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">new</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">javascript</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">event</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">listener</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">scripting</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">handler</category>
      <pubDate>Fri, 11 Apr 2014 14:45:00 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1448231</guid>
      <dc:date>2014-04-11T14:45:00Z</dc:date>
      <clearspace:dateToText>7 months 3 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>objects and events</title>
      <link>https://forums.adobe.com/thread/1445404</link>
      <description>&lt;!-- [DocumentBodyStart:16b9b134-e65b-4b59-a677-8c8f699a8f15] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;What event is triggered when I update an image's metadata? I want to automate a process that should occur when I rate/reject an image.&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;/div&gt;&lt;!-- [DocumentBodyEnd:16b9b134-e65b-4b59-a677-8c8f699a8f15] --&gt;</description>
      <pubDate>Mon, 07 Apr 2014 18:29:29 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1445404</guid>
      <dc:date>2014-04-07T18:29:29Z</dc:date>
      <clearspace:dateToText>7 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Script for creating grid spreads of photos from the Adobe Bridge</title>
      <link>https://forums.adobe.com/thread/1444814</link>
      <description>&lt;!-- [DocumentBodyStart:f04bcadd-dfd8-43a0-823f-f166150e2249] --&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;Someone once showed me a script for being able to select multiple images while looking at them in the bridge and making grid layouts on pages from them. Does anyone know how to do that? Thanks!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f04bcadd-dfd8-43a0-823f-f166150e2249] --&gt;</description>
      <pubDate>Sun, 06 Apr 2014 19:56:34 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1444814</guid>
      <dc:date>2014-04-06T19:56:34Z</dc:date>
      <clearspace:dateToText>7 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Open indesign links in photoshop</title>
      <link>https://forums.adobe.com/thread/1444615</link>
      <description>&lt;!-- [DocumentBodyStart:07f2a111-285d-4529-b461-a85e9893a5f3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi everyone,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Since im very new to scripting... i m requesting your help to fix this issue..&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My need is to export the indesign page as jpg and then open the jpgs' in photoshop and save as psd.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I tried to the below script... indesign page exported as jpg, but the exported jpg is not opened in photoshop.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;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;Main();&lt;/p&gt;&lt;p&gt;function Main() {&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; var result=CreateBridgeTalkMessage();&lt;/p&gt;&lt;p&gt; var myOutFolderPathName = "C:\\Users\\Unique&lt;a href=""&gt;\\Desktop\\JPG\\&lt;/a&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;doc_name = app.activeDocument.name.split(".indd")[0];&lt;/p&gt;&lt;p&gt;myPDFFilePath = myOutFolderPathName+"&lt;a href=""&gt;\\"+(doc_name&lt;/a&gt;) +'.jpg';&lt;/p&gt;&lt;p&gt;app.activeDocument.exportFile (ExportFormat.JPG, myPDFFilePath, false );&lt;br/&gt; &lt;br/&gt; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function CreateBridgeTalkMessage() {&lt;br/&gt;&amp;nbsp; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var bt = new BridgeTalk();&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var re;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.target = "photoshop";&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.body = openFile.toString();&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.onResult = function(e) {&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; re= e.body;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.send(900);&lt;br/&gt;&amp;nbsp;&amp;nbsp; return re;&lt;br/&gt; &lt;br/&gt;&amp;nbsp; &lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br/&gt;}&lt;br/&gt;function openFile() {&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.bringToFront();&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.displayDialogs = DialogModes.NO;&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; app.preferences.rulerUnits = Units.MM;&lt;br/&gt; var myOutFolderPathName = Folder("C:\\Users\\Unique\\Desktop\\JPG\\"); &lt;br/&gt;&amp;nbsp;&amp;nbsp; var fileList =myOutFolderPathName.getFiles("*.*");&lt;br/&gt;for (var a in fileList){&lt;br/&gt;&amp;nbsp;&amp;nbsp; var thisDoc = open(File(fileList[a]));&lt;br/&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp; return true;&lt;br/&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;Many thanks for the support.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:07f2a111-285d-4529-b461-a85e9893a5f3] --&gt;</description>
      <pubDate>Sun, 06 Apr 2014 11:34:21 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1444615</guid>
      <dc:date>2014-04-06T11:34:21Z</dc:date>
      <clearspace:dateToText>7 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Script to Rename Bracketed Photos</title>
      <link>https://forums.adobe.com/thread/1437708</link>
      <description>&lt;!-- [DocumentBodyStart:9c3fa476-413b-4bce-bd49-6f7674a9aa80] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have looked around and have had no luck finding anything similar to what I would like to do. I am trying to batch rename sets of bracketed photos with something similar to the following:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Scene-Bracket&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;001-01&lt;/p&gt;&lt;p&gt;001-02&lt;/p&gt;&lt;p&gt;001-03&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;002-01&lt;/p&gt;&lt;p&gt;002-02&lt;/p&gt;&lt;p&gt;002-03&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;003-01&lt;/p&gt;&lt;p&gt;003-02&lt;/p&gt;&lt;p&gt;003-03&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like the scene number to just be a sequence followed by a sequence for the 3 bracketed images&lt;/p&gt;&lt;p&gt;I am currently only taking brackets of 3 which should make this somewhat more simple. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have tried to write my own script by deconstructing others but I don't really know what I am doing and have not had any luck.&lt;/p&gt;&lt;p&gt;If there is anything similar out there that you could point me towards it would be helpful.&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:9c3fa476-413b-4bce-bd49-6f7674a9aa80] --&gt;</description>
      <pubDate>Thu, 27 Mar 2014 18:22:43 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1437708</guid>
      <dc:date>2014-03-27T18:22:43Z</dc:date>
      <clearspace:dateToText>7 months 2 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Intermittent delays in BT communication</title>
      <link>https://forums.adobe.com/thread/1428485</link>
      <description>&lt;!-- [DocumentBodyStart:74703819-8a76-4941-b6dc-6699eb7f6858] --&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,&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I've posted this in general discussions but no luck, I was told I might get better help here so here goes:&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'm playing with a bridgetalk script to pass just one argument back and forth between PS and AI all run from Bridge, this in the future will be a key driver to the main script, I have all the components of PS scripts and AI scripts ready, now working on the workflow order. Due to asynchronous behavior I have to do it in this manner. Basically Bridge selects multiple folders containing multiple files and based on the type sends it either to AI or PS for processing then comes back goes to the next file and so on. I want it to process only one file at a time, raise the counter by one return it as a result and onResult continue on with a main function.&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;The script I'm testing does it until the counter =10&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;Here it is:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;It all works fine, but WHY am I getting time delays so different to each other. One time script will take 3 seconds, other times over a minute and it's not even performing any tasks in AI or PS:&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;here's my results:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Start&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 0 from PS, passing it to AI&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Result: undefined&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 1 from AI, passing it to PS&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 2 from PS, passing it to AI&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 3 from AI, passing it to PS&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 4 from PS, passing it to AI&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 5 from AI, passing it to PS&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 6 from PS, passing it to AI&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 7 from AI, passing it to PS&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 8 from PS, passing it to AI&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 9 from AI, passing it to PS&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Done&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;10 documents opened in 3.50 seconds&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Start&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 0 from PS, passing it to AI&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Result: undefined&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 1 from AI, passing it to PS&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 2 from PS, passing it to AI&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 3 from AI, passing it to PS&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 4 from PS, passing it to AI&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 5 from AI, passing it to PS&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 6 from PS, passing it to AI&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 7 from AI, passing it to PS&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 8 from PS, passing it to AI&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 9 from AI, passing it to PS&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;Done&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-size: 10px; font-family: Helvetica;"&gt;10 documents opened in 101.85 seconds&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;the code is as follows:&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;[code]&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;#target bridge;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;$.hiresTimer; // start timer&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;$.writeln("Start");&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;var counter = 0;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;function lastFunction(counter){&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;if(counter&amp;gt;=10){&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; var time = $.hiresTimer/1000000;&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;&amp;nbsp; $.writeln("Done");&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;&amp;nbsp; $.writeln(counter+" documents opened in " + time.toFixed(2) + " seconds" );&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }else{&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $.writeln( "Got&amp;nbsp; " + counter +" from PS, passing it to AI");&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infoFromPS(counter);&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&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; }&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;lastFunction(counter);&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;function infoFromPS(counter) {&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var bt = new BridgeTalk();&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.target = "Illustrator";&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.body = "ai("+counter+");";&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.body += ai.toString();&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.onResult = function( msg ) {&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp;&amp;nbsp; BridgeTalk.bringToFront("bridge");&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;&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 myResult = msg.body;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; doSomethingNow( myResult );&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.send();&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function ai(counter){&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; counter ++;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return counter;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function doSomethingNow( counter ) {&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $.writeln( "Got&amp;nbsp; " + counter +" from AI, passing it to PS");&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infoFromAI(counter);&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function infoFromAI(counter) {&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;&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 bt = new BridgeTalk();&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.target = "Photoshop";&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.body = "ps("+counter+");";&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.body += ps.toString();&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $.writeln(bt.body);&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.onResult = function( msg ) {&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp;&amp;nbsp; BridgeTalk.bringToFront("bridge");&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&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 myResult2 = msg.body;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lastFunction(myResult2);&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bt.send();&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; function ps(counter){&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; counter ++;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return counter;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;[/code]&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;In functions ai() and ps() I will be passing a lot of code that's why I do it as a function and pass it to BTalk this way.&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;Any Ideas?&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 have changed a few things and number of callbacks to 20 and this is what I get:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Start&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 0 from PS, passing it to AI - 0.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Result: undefined&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 1 from AI, passing it to PS - 0.19 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 2 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 3 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 4 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 5 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 6 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 7 from AI, passing it to PS - 0.70 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 8 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 9 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 10 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 11 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 12 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 13 from AI, passing it to PS - 0.50 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 14 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 15 from AI, passing it to PS - 0.70 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 16 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 17 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 18 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 19 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Done! 20 documents opened in 7.09 seconds&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Start&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 0 from PS, passing it to AI - 0.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Result: undefined&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 1 from AI, passing it to PS - 0.16 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 2 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 3 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 4 from PS, passing it to AI - 9.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 5 from AI, passing it to PS - 1.40 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 6 from PS, passing it to AI - 0.30 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 7 from AI, passing it to PS - 0.40 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 8 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 9 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 10 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 11 from AI, passing it to PS - 0.50 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 12 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 13 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 14 from PS, passing it to AI - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 15 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 16 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 17 from AI, passing it to PS - 0.70 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 18 from PS, passing it to AI - 10.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 19 from AI, passing it to PS - 3.60 s&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Done! 20 documents opened in 30.26 seconds&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Start&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 0 from PS, passing it to AI - 0.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Result: undefined&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 1 from AI, passing it to PS - 0.21 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 2 from PS, passing it to AI - 0.17 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 3 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 4 from PS, passing it to AI - 10.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 5 from AI, passing it to PS - 10.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 6 from PS, passing it to AI - 30.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 7 from AI, passing it to PS - 2.39 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 8 from PS, passing it to AI - 10.09 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 9 from AI, passing it to PS - 10.02 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 10 from PS, passing it to AI - 10.18 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 11 from AI, passing it to PS - 10.06 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 12 from PS, passing it to AI - 10.06 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 13 from AI, passing it to PS - 10.17 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 14 from PS, passing it to AI - 20.13 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 15 from AI, passing it to PS - 10.07 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 16 from PS, passing it to AI - 20.11 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 17 from AI, passing it to PS - 20.22 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 18 from PS, passing it to AI - 10.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 19 from AI, passing it to PS - 10.10 s&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Done! 20 documents opened in 214.92 seconds&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Start&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 0 from PS, passing it to AI - 0.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Result: undefined&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 1 from AI, passing it to PS - 9.90 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 2 from PS, passing it to AI - 10.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 3 from AI, passing it to PS - 6.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 4 from PS, passing it to AI - 1.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 5 from AI, passing it to PS - 3.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 6 from PS, passing it to AI - 1.90 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 7 from AI, passing it to PS - 10.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 8 from PS, passing it to AI - 10.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 9 from AI, passing it to PS - 9.98 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 10 from PS, passing it to AI - 20.12 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 11 from AI, passing it to PS - 8.91 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 12 from PS, passing it to AI - 10.09 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 13 from AI, passing it to PS - 1.39 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 14 from PS, passing it to AI - 0.12 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 15 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 16 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 17 from AI, passing it to PS - 4.18 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 18 from PS, passing it to AI - 0.12 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 19 from AI, passing it to PS - 0.50 s&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Done! 20 documents opened in 108.61 seconds&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="background-color: #e7e7e7; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I'm puzzled really, it's running on a reasonably quick i7.&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;after the restart of Bridge I get:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Start&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 0 from PS, passing it to AI - 0.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Result: undefined&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 1 from AI, passing it to PS - 0.80 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 2 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 3 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 4 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 5 from AI, passing it to PS - 0.50 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 6 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 7 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 8 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 9 from AI, passing it to PS - 0.50 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 10 from PS, passing it to AI - 0.30 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 11 from AI, passing it to PS - 0.40 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 12 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 13 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 14 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 15 from AI, passing it to PS - 0.50 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 16 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 17 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 18 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 19 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Done! 20 documents opened in 7.7 seconds&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Start&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 0 from PS, passing it to AI - 0.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Result: undefined&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 1 from AI, passing it to PS - 0.40 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 2 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 3 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 4 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 5 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 6 from PS, passing it to AI - 0.30 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 7 from AI, passing it to PS - 0.50 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 8 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 9 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 10 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 11 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 12 from PS, passing it to AI - 0.30 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 13 from AI, passing it to PS - 0.40 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 14 from PS, passing it to AI - 0.30 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 15 from AI, passing it to PS - 0.50 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 16 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 17 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 18 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 19 from AI, passing it to PS - 0.70 s&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Done! 20 documents opened in 7.4 seconds&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Start&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 0 from PS, passing it to AI - 0.00 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Result: undefined&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 1 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 2 from PS, passing it to AI - 0.30 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 3 from AI, passing it to PS - 0.50 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 4 from PS, passing it to AI - 0.10 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 5 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 6 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 7 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 8 from PS, passing it to AI - 0.30 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 9 from AI, passing it to PS - 0.40 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 10 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 11 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 12 from PS, passing it to AI - 0.30 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 13 from AI, passing it to PS - 0.40 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 14 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 15 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 16 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 17 from AI, passing it to PS - 0.50 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 18 from PS, passing it to AI - 0.20 s&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Got&amp;nbsp; 19 from AI, passing it to PS - 0.60 s&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Done! 20 documents opened in 7.6 seconds&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="font-size: 10px; font-family: Helvetica;"&gt;Do I need a cleanup code of some sort?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:74703819-8a76-4941-b6dc-6699eb7f6858] --&gt;</description>
      <pubDate>Sat, 15 Mar 2014 10:31:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1428485</guid>
      <dc:date>2014-03-15T10:31:25Z</dc:date>
      <clearspace:dateToText>7 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Help selecting next thumbnail via script</title>
      <link>https://forums.adobe.com/thread/1427245</link>
      <description>&lt;!-- [DocumentBodyStart:53bd15a1-4153-46a0-a83e-fd06a2ba2f0b] --&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'm trying to find a way to change the selection in the content pane from the current thumbnail to the next thumbnail. I've had a look through the bridge referance and guide but couldn't find any clues. Does anyone know if this is possible and how I might go about 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;/div&gt;&lt;!-- [DocumentBodyEnd:53bd15a1-4153-46a0-a83e-fd06a2ba2f0b] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">select</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">next</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">thumbail</category>
      <pubDate>Thu, 13 Mar 2014 17:17:12 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1427245</guid>
      <dc:date>2014-03-13T17:17:12Z</dc:date>
      <clearspace:dateToText>8 months 2 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>BridgeTalk.bringToFront ("aftereffects");  - No longer works?</title>
      <link>https://forums.adobe.com/thread/1426480</link>
      <description>&lt;!-- [DocumentBodyStart:1b577d6d-f3ad-4df8-9a32-3295b601ff75] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p class="jive-thread-post-body" style="margin: 0 85px 0 0; padding: 6px 6px 0 0;"&gt;&lt;span style="font-size: 10pt;"&gt;I tried posting this question in the after effects scripting forum and got no response.&amp;nbsp; Hopefully someone here knows about this.&lt;/span&gt;&lt;/p&gt;&lt;h3 style="font-size: 14px; margin: 1px 20px 0 1px; padding: 0 0 3px; font-weight: normal; color: #999999; font-family: inherit;"&gt;&lt;span style="font-size: 10pt;"&gt;&lt;span style="color: #333333;"&gt;I have been putsing around with a script since CS6.&amp;nbsp; Suddenly with the most recent updates to CC, BridgeTalk.bringToFront ("aftereffects"); isn't working on my pc&lt;/span&gt;&lt;span style="color: #333333;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;p class="jive-thread-post-body"&gt;&lt;span style="font-size: 10pt;"&gt;I have tested this on a mac and it seems to work fine however when I try on my windows 7 system, nothing.&amp;nbsp; I searched through the Javascript CC ref but I am getting no where.&lt;/span&gt;&lt;/p&gt;&lt;p class="jive-thread-post-body" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="jive-thread-post-body"&gt;&lt;span style="font-size: 10pt;"&gt;Here is what I have been trying.&amp;nbsp; I open a new javascript set it to run the Extend Script Toolkit CC, pull photoshop in front of after effects.&lt;/span&gt;&lt;/p&gt;&lt;p class="jive-thread-post-body" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="jive-thread-post-body"&gt;&lt;span style="font-size: 10pt;"&gt;I run this:&lt;/span&gt;&lt;/p&gt;&lt;p class="jive-thread-post-body"&gt;&lt;span style="font-size: 10pt;"&gt;BridgeTalk.bringToFront ("aftereffects");&lt;/span&gt;&lt;/p&gt;&lt;p class="jive-thread-post-body"&gt;&lt;span style="font-size: 10pt;"&gt;nothing&lt;/span&gt;&lt;/p&gt;&lt;p class="jive-thread-post-body" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="jive-thread-post-body"&gt;&lt;span style="font-size: 10pt;"&gt;However, if I put after effects or any other programs in front of photoshop and run this:&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;BridgeTalk.bringToFront ("photoshop")&lt;strong style="font-size: 13px;"&gt;;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="jive-thread-post-body"&gt;&lt;span style="font-size: 10pt;"&gt;Photoshop pops right up.&lt;/span&gt;&lt;/p&gt;&lt;p class="jive-thread-post-body" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="jive-thread-post-body"&gt;&lt;span style="font-size: 10pt;"&gt;Is anyone else having this same problem?&amp;nbsp; Does anyone know anything about it?&amp;nbsp; Can anyone offer advice for a work around?&lt;/span&gt;&lt;/p&gt;&lt;p class="jive-thread-post-body"&gt;&lt;span style="font-size: 13px;"&gt;&lt;span style="font-size: 10pt;"&gt;I would appreciate it if someone would try this on their windows system as all my adobe friends work on mac.&lt;/span&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="jive-thread-post-body-container" style="padding: 10px 15px 10px 20px;"&gt;&lt;div class="jive-thread-post-subject" style="margin: 0 0 25px;"&gt;&lt;div class="jive-thread-post-subject-content" style="border-bottom-style: none; margin: 0 0 10px; padding: 0 0 9px;"&gt;&lt;h3 style="font-size: 14px; margin: 1px 20px 0 1px; padding: 0 0 3px; font-weight: normal; color: #999999; font-family: inherit;"&gt;&lt;/h3&gt;&lt;/div&gt;&lt;p&gt;Thanks for looking.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:1b577d6d-f3ad-4df8-9a32-3295b601ff75] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">adobe</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bridge</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">windows</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">scripting</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">scripts</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">aftereffect</category>
      <pubDate>Wed, 12 Mar 2014 16:50:02 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1426480</guid>
      <dc:date>2014-03-12T16:50:02Z</dc:date>
      <clearspace:dateToText>8 months 3 days ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Open/save multiple workspace windows?</title>
      <link>https://forums.adobe.com/thread/1421631</link>
      <description>&lt;!-- [DocumentBodyStart:dd45d4ec-4466-433a-936a-11738d0e01be] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Sometimes I find it useful to have two or more Bridge windows open at once. &lt;/p&gt;&lt;p&gt;I havent been able to figure out how to save such a configuration or load. The only way it seems is to open the first Workspace, then create the other one(s). Then do it all over again if (when) Bridge crashes.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is there a way to open and save multiple Workspace windows at once? I'm using Bridge CS4 on a Mac running OSX 10.6.8.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:dd45d4ec-4466-433a-936a-11738d0e01be] --&gt;</description>
      <pubDate>Wed, 05 Mar 2014 22:03:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1421631</guid>
      <dc:date>2014-03-05T22:03:05Z</dc:date>
      <clearspace:dateToText>8 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Thumbnail select event</title>
      <link>https://forums.adobe.com/thread/1410821</link>
      <description>&lt;!-- [DocumentBodyStart:74217f14-297e-406f-95f9-bdd8cfc6f688] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;help me.&lt;/p&gt;&lt;p&gt;when i run the script every functionality will be loaded and before loaded if i not select a thumb on bridge i got message which i given but&amp;nbsp; after loaded the script when i select a thumb get no message which pinrt.&lt;/p&gt;&lt;p&gt;function addFilelogScriptPalette(doc)&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&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; var sel = doc.selections;&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; //$.writeln(sel.length);&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; &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; if(sel.length == 0)&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; {&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; alert("Select file");&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; return false;&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; }&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var fileName = sel[0].name;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $.writeln(sel[0].name);&lt;/p&gt;&lt;p&gt;&amp;nbsp; }&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;i mean when i select every thumb i want to get each file inforation. &lt;/p&gt;&lt;p&gt;would u please help me in this regards.&lt;/p&gt;&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:74217f14-297e-406f-95f9-bdd8cfc6f688] --&gt;</description>
      <pubDate>Wed, 19 Feb 2014 21:40:26 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1410821</guid>
      <dc:date>2014-02-19T21:40:26Z</dc:date>
      <clearspace:dateToText>8 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>How to open multiple folders and read file?</title>
      <link>https://forums.adobe.com/thread/1405561</link>
      <description>&lt;!-- [DocumentBodyStart:19e211aa-ee4e-4945-815b-4d2b0f75322e] --&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;I try to use this bridge script. The script work very well for me but some times I have multiple folders.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now script work that:&lt;/p&gt;&lt;p&gt;1. Read file in folder&lt;/p&gt;&lt;p&gt;2. Save text file and show me popup with full quadrature&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-message-small" data-containerId="3477" data-containerType="14" data-objectId="3996179" data-objectType="2" href="https://forums.adobe.com/message/3996179?tstart=56#3996179"&gt;http://forums.adobe.com/message/3996179?tstart=56&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1. Open folder&lt;/p&gt;&lt;p&gt;2. Read file&lt;/p&gt;&lt;p&gt;3. Close folder&lt;/p&gt;&lt;p&gt;4. Read next folder&lt;/p&gt;&lt;p&gt;5. Read file&lt;/p&gt;&lt;p&gt;6. Close folder&lt;/p&gt;&lt;p&gt;7. ....&lt;/p&gt;&lt;p&gt;8. Save text file with all folders and show me popup with full quadrature&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Please help!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Best regards.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:19e211aa-ee4e-4945-815b-4d2b0f75322e] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">adobe</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">bridge</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">folder</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=3477">batch-process</category>
      <pubDate>Thu, 13 Feb 2014 08:54:29 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1405561</guid>
      <dc:date>2014-02-13T08:54:29Z</dc:date>
      <clearspace:dateToText>8 months 1 month ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Add Startup scripts to Bridge</title>
      <link>https://forums.adobe.com/thread/1387651</link>
      <description>&lt;!-- [DocumentBodyStart:178eecc1-0bab-46c9-b212-a82e537e4c31] --&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;I would like to do as above, with InDesign you have a fodler called Scripts/Startup Scripts with scripts inside can i do the same with Bridge CS6?&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:178eecc1-0bab-46c9-b212-a82e537e4c31] --&gt;</description>
      <pubDate>Thu, 23 Jan 2014 15:29:56 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/1387651</guid>
      <dc:date>2014-01-23T15:29:56Z</dc:date>
      <clearspace:dateToText>9 months 3 weeks ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

