Can I embed Illustrator tools in my Scripts ?

Hallo every one
Background story
My work colleges and I have gotten our hands on a ridicules amount of illustrator files. These are divided in to category’s and hold more then one object/group in each file.
we have managed to find/wright a script that will extract each group as an individual *.ai file, but we still need to unite the shapes in each group before it is being exported. this would usually be done via the pathfinder (Unite compound shape [CS4]).
My Question
What is the best way to embed an Adobe Illustrator tool in our Java script?
and were can I find a list with the commands that correspond to Illustrators tools?
General information
Version: CS4
Script: Java Script

CarlosCanto wrote:
sorry but Javascript does not have access to Pathfinder operations...if it helps, you could apply an already existing Graphic Style, being Effect->Pathfinder->Add (there's no Unite)
Do you mean it is possible to apply the Pathfinder->Add operation in our Java script ? This is basically what I am looking for. I am looking for the command that addresses exactly that and will apply Pathfinder->Add idiomatically for us.
Autodesk Maya has a very helpful Editor for these cases. It is called Scrip editor and basically shows you every operation you perform in mel script. Is there a way to find out what command we have to add in order to apply Pathfinder->Add  to our script?

Similar Messages

  • How can i use gradient tool in Illustrator

    Hello,
    I am trying to use gradient tool in illustrator.
    My image is active but how can i start using gradient tool.
    I clicked the tool and tried to drag with my mouse but, i can not activate the tool itself.
    Can any one help me, I am using CS4 extended with Mac.
    Thank you very much.
    Steve

    First in order to use the gradient tool you must have a gradient fill applied to an object not an raster image it can be a vector illustration..
    Select the object or objects or groups of objects
    Now click on the gradient bar in the Gradient Panel while the object(s) are still selected that will fill the object with the default gradient.
    You can also use a gradient swatch in the Swatches panel, you can make a gradient swatch as well.
    Now your object(s) is filled with the default gradient fill.
    Now in the tool panel select the gradient tool this will allow you to control the way the gradient is oriented and applied to the object.
    Now you can change the colors and add colors to you gradient by clicking on the color markers below the gradient bar which will bring up the color or swatches panels.
    Now finally and this is the most important factor to consider you have to purchase a book and or tutorials and the book that will probably do you the most good at this stage is Mordy Golding's Real World Illustrator CS 4 this you shoud do before you go any further. Honest.

  • How can i add a new tool in adobe illustrator tool box ?

    Hi,
    I want to create a new tool in Adobe illustrator tool box, which calls another application. I am a beginner in Adobe illustrator plug-in programming.
    Please help me................
    Thanks in advance
    Sreejesh K V

    Much easier with a toolkit but you could use ADO objects,
    get connection, make a SQL object "INSERT record INTO table where  ...." 
    Execute the parameterized query
    Free up record sets data
    close connection when done.
    This is a very simplified version
    Paul
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • Can I embed a full shell script inside an applescript?

    I have a friend who is running Tiger on a PPC Mac and wants to download a large number of files from the web. Unfortunately, this friend is barely able to do basic web browsing with Safari or Firefox.
    I thought of just sending him a shell script with a lot of curl commands, but I don't suppose making it executable on my Mac would make it executable on his. I would like to be able to send him an Applescript that he could just run by clicking on it, but it would be awkward to make each curl command a separete shell script within the applescript..
    Is there a way of directly including in an applescript a multi-line shell script as a single entity that invokes only one shell? I know I can do it by putting the shell script in a separate file and have the applescript give it the necessary permissions, but then I'd have to explain to my friend where to put the shell script!

    While it is possible to do this in the Applescript if the shell script gets at all complicated escaping characters and debugging will be much harder then it needs to be.
    For example taking twtwtw's example and just adding one Applescript variable gives:
    set dir to POSIX path of (choose folder)
    set ss to "cd " & dir & "
    echo 'This is a file list for the \"" & dir & "\" folder'
    echo
    ls -l"
    set dlf to do shell script ss
    display alert dlf giving up after 10
    Twtwtw's suggestion of creating an Applescript application bundle is, I believe, the best way to go. You can keep the shell script and Applescript separate making maintenance and debugging much simpler and your friend just gets one 'file' to install and run.
    regards

  • Is there a way to embed an image inside a script?

    I've a logo I use on a user interface.  Right now I'm opening the image from a file, is there a way to embed the image inside the script so I don't have to distribute the image with the script?

    xbytor, of the photoshop scripting forum has a tool kit that you can download & instal. The majority is to do with PS but part of that contains some conversions that 'may' be of use to you… See this recent post in the Photoshop forum…
    http://forums.adobe.com/thread/729330?tstart=0
    Not done this myself so if you have any problems you may be better posting back there… I probably won't be able to help…

  • After using an ExtendScript (via ESTK) Illustrator becomes corrupted and "Can't open illustration."

    Hey, thanks for reading.
    I'm having a strange problem with Illustrator CS5 and ESTK CS5. I'm new to writing ExtendScripts, so I haven't a clue what could be going wrong here but here's the skinny:
    I've written the following code, which is very specialized to the exact document I'm working with. Using the ExtendScript Toolkit, the script goes through the following loops:
    The primary problem:
    For some reason, running this script causes Illustrator to become somehow corrupted. I can continue working with the document as long as it is open, but if I try to close it and re-open it, I get the infuriatingly unhelpful error dialog "Can't open illustration." With no extra details.
    The same error comes up if I try to open any other .ai files. Shutting down and rebooting doesn't fix the problem. I have to completely uninstall Illustrator, then re-install it before it will work again. And even then, if I try to open the ExtendScript-corrupted file the whole Illustrator app gets corrupted and needs to be reinstalled.
    Oh, also Illustrator itself shows up as "(Not responding)" while the script is running, but the ESTK console clearly shows that the script is chugging along as expected.
    Specifics about the script:
    There are 4 "Buttons" on the document, and a library full of nearly-identical symbols in the Library (different colored backgrounds for the buttons).
    The script cycles through every symbol in the library, replacing and deleting instances of the previous symbol.
    Then, for each symbol, it cycles through an array (technically an object-literal) of { language-code: "string" } pairs, and saves a .png of each artboard for each word.
    What follows is a pared-down version of the full script:
    (I tried to add a few $.sleep(10); calls, hoping that maybe just a brief slowdown in the processes might help. It didn't.)
    This script (in its original form) outputs a ton of files very, very quickly.
    Script Example
    var folder = Folder.selectDialog();                     // Ask for a folder choice.
    var aDoc = app.activeDocument;                        // Declare an active Document reference.
    var textLayer = aDoc.layers.getByName('text');   // Get the text layer, for moving it back/forward
    var textFrms = aDoc.textFrames;                       // Get all text frames, for language swap
    var allSymbols = aDoc.symbols;                         // Get array of all symbols in the symbol library
    var allSymbolItems = aDoc.symbolItems;            // Get an array of all symbol instances in the active document
    var helpTextArray =
        en: "help",
        az: "Kömək",
        cs: "Nápověda",
        da: "Hjælp",
        de: "hilfe",
        el: "Bοήθεια",
        en: "help",
        es: "ayuda",
            * There's normally 3 arrays with many more languages / translations
    if( aDoc &&                                      // We have an activeDocument
         folder &&                                    // and we have a selected output folder
         allSymbols.length > 0 &&             // We've got symbols
         allSymbolItems.length > 0 &&      // and we've got symbol instances "symbolItems"
         textFrms.length > 0 ) {                 // and we've got textFrames to manipulate.
        // For each symbol in our symbol library...
        for(var i = 0; i < allSymbols.length; i++) {
            // Run through all instances of symbols (symbolItems), and replace with a different symbol.
            for(var ii = 0; ii < allSymbolItems.length; ii++) {
                // Move text layer out of the line of fire.
                $.writeln('Move text to back');
                textLayer.zOrder(ZOrderMethod.SENDTOBACK);
                var currObj = allSymbolItems[ii];
                var newObj = aDoc.symbolItems.add(aDoc.symbols[i]);
                var symbolColor = aDoc.symbols[i].name;
                // Add the new / replacement symbol.
                newObj.left = currObj.left;
                newObj.top = currObj.top;
                newObj.width = currObj.width;
                newObj.height = currObj.height;
                // Remove the old symbol.
                currObj.remove();
                // Bring text back up to the front.
                $.writeln('Bring text to front');
                textLayer.zOrder(ZOrderMethod.BRINGTOFRONT);
                redraw();
                $.sleep(10)
            // Run through each language and each buttonText and save a copy.
            var currArray = helpTextArray;
            var currArrayName = "help";
            for(currLang in currArray) {
                switchText(currLang, currArray);
                $.sleep(10)
                // Run function to save .pngs of each artboard
                exportAll(currLang, symbolColor, currArrayName);
            } // end for (currLang in currArray)
        } // end symbols.length
    } // end if
    function switchText(lang, array) {
        //var textFrms = activeDocument.textFrames;
        var newText = array[lang];
        newText = (newText === "") ? array["en"] : newText;
        for(var i = 0; i < textFrms.length; i++) {
            var isHorizontal = ( textFrms[i].width > textFrms[i].height );
            var scale = 100;
            var scaleMatrix;
            textFrms[i].contents = newText;
               * There's normally an automatic text-resizer here
        } // for var i
    function exportAll(lang, color, buttonText) {
        var artBds = aDoc.artboards;
        var options = new ExportOptionsPNG24();
            options.antiAliasing = true;
            options.transparency = true;
            options.artBoardClipping = true;
        for(var i = 0; i < artBds.length; i++) {
             var currBoard = artBds.setActiveArtboardIndex(i);
             var buttonPosition =  artBds[i].name;
             var newFile = new File(folder.fsName+"/"+buttonText+"_"+color+"_"+buttonPosition+"_"+lang+".png");
             aDoc.exportFile(newFile,ExportType.PNG24,options);
             $.writeln('A file was saved with the name:: '+buttonText+'_'+color+'_'+buttonPosition+'_'+lang+'.png');
             $.sleep(10)
    function revertToOriginal() {
        $.writeln('Revert');
        // Switch the text back to help.
        switchText("en", helpTextArray);
        // For each symbol instance...
        for(var i = 0; i < allSymbolItems.length; i++) {
            // Move text layer out of the line of fire.
            $.writeln('Move text to back');
            textLayer.zOrder(ZOrderMethod.SENDTOBACK);
            var currObj = allSymbolItems[i];
            // Add in the placeholder since we're reverting.
            var newObj = aDoc.symbolItems.add(aDoc.symbols[0]);
            var symbolColor = aDoc.symbols[0].name;
            // Add the new / replacement symbol.
            newObj.left = currObj.left;
            newObj.top = currObj.top;
            newObj.width = currObj.width;
            newObj.height = currObj.height;
            // Remove the old symbol.
            currObj.remove();
            // Bring text back up to the front.
            $.writeln('Bring text to front');
            textLayer.zOrder(ZOrderMethod.BRINGTOFRONT);
            redraw();
            $.sleep(10)
            $.writeln('REVERT');
    revertToOriginal();
    Are there best practices that I'm unaware of here that could be causing this corruption?
    Does anyone know what could be happening?
    The only error I ever get is "Can't open illustration." There's never anything more helpful, so I have no idea what could be going wrong.
    If there's any more information that would be of use to anyone I'd be happy to share. This is wasting a lot of my time and making me pull my hair out like crazy,

    I have not had the time to look over your script but at a glance there are a few things I would handle differently…
    Firstly returning a document to a given state… If you play with this snippet you can see that app.undo() returns to the last called app.redraw() if there is one else it undo's the whole script…
    #target illustrator
    doSymbols();
    function doSymbols() {
        var doc = app.activeDocument;
        var sym = doc.symbols[0];
        for ( var i = 0; i < 4; i++ ) {
            var foo = doc.symbolItems.add( sym );
            foo.position = Array( i * 72, -( i * 72 ) );
            app.redraw(); // Comment this out to see…
        app.undo(); // Returns to last redaw state if any…?
    Secondly your symbols… You know you can just change the symbol instance's symbol reference…? If they are almost the same particualy size then its an easy swap…?
    #target illustrator
    doSymbols();
    function doSymbols() {
        var doc = app.activeDocument;
        var sym = doc.symbols[1]; // Next symbol in the palette
        for ( var i = 0; i < 4; i++ ) {
            doc.symbolItems[i].symbol = sym;
            app.redraw();

  • How can I embed a HTML document onto my webpage?

    What I am trying to do: I am trying to make an image that has links to urls from different parts of the image.
    What I have done so far: I have built a photoshop image to embed on my webpage, following the instructions offered by many online forums, but cannot actually embed it as it isn't a url.
    Firstly, I sliced up an image, adding url's and alt tage etc to each slice. Then I did:
    File > Save for web > (Prest: JPEG High) > Save > (entered my file name) Format: HTML and Iamges > Save
    When I locate my file where I saved it, it has been saved as a Chrome HTML Document, but I can't then embed this on my website, using the 'embed code' tool I normally use. I presume this is because it doesn't begin with http:// ?
    Here is the HTML document I have made: file:///C:/Users/Daniel/Desktop/UK%20map%20interactive/Afternoon/UK-map-locations.html
    (If you can see this) This is the image I want and the links are working too but it's getting this onto an existing webpage.
    Other pages I have seen have talked about iamge maps, but I take it using the slice tool is better for what I am trying to acheive?
    Any suggestions/help would be greatly appreciated.

    One: Users can't see links on your local desktop. You would have to upload the files somewhere. Two: Images generally don't contain links. URLs are meta information build around the image in HTML. Three: Because of the previous point, whether you use sliced images or an image map doesn't matter, if you have no way of inserting the information into the native HTML structure of the web pages. If at all, you would open the HTML file in a suitable editor like Dreamweaver (or even a basic text editor) and copy&paste it into the web page sourcve code, but you'd still have to upload the image(s). The rest we can't know. You have not provided any link to the web site or told us which hosting provider you use. From your description it sounds like one of those "free" providers that restrict user's options to customize to the bare minimum and the rest is based on templates and plastered with advertising. In any case, the solution is not in Photoshop and you would have to read up on web design basics, HTML, CSS and al lthat on a more general level or review your hosting provider's guides on how to set all this up.
    Mylenium

  • I can't get my tool bar to get the return arrow or the forward arrow so i can browse. i have to quit the browser and start all over again everytime i go to another site and want to return. not on tool bar and get it on.

    ''Duplicate post, continue here - [https://support.mozilla.com/en-US/questions/787149]''
    second time i have had to go through this, so here goes, i can't get the return or forward buttons on the tool bar and can't return to the website i am in have to quit the web site altogether and restart the firefox after viewing any site, as i have no return arrows or forward buttons on the toolbar.

    In Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • What sort of video can i embed in muse?

    i have youtube videos embedded in my site no problem. i tried to embed a funny or die video, but it wouldn't work. am i limited to using youtube videos? are there other sites i can/cannot embed video from?

    You should be able to use any embed code, since the embed code is designed to be portable. I tried embedding a video from Funny or Die and had no issues. Is it possible you had inserted another script in your page that was causing a conflict? Do you have the same problem with any video from Funny or Die or just the one?
    Are you using the embed code from this section of Funny or Die:
    And just to be sure, does the video play when you switch to Preview mode, Preview the page in the browser, or when you publish?
    Best regards,
    Corey

  • How can I Embed Video

    I'm trying to create an application that allows a user to
    combine several types of media files into one swf file that can
    then be passed around and viewed elsewhere. How can I embed a video
    into the swf file? It won't work if you just use the Embed keyword.
    Any ideas?

    To insert a video in a Pages document it's really simple.
    You open *_Pages User Guide_* and you use the Search tool to find the word "video".
    As I'm not a bad guy, I will add that it's described page 24 (in the English version)
    This said, I'm not sure that you will be able to play the video in an exported PDF.
    In fact, I'm quite sure that you can't.
    I don't have an available video file to make tests.
    Yvan KOENIG (VALLAURIS, France) dimanche 16 janvier 2011 21:29:29

  • Installed CS6 all but Illustrator installed correctly, I received error DF024, DW063, and DW050, how can I install Illustrator and fix these errors?

    installed CS6 all but Illustrator installed correctly, I received error DF024, DW063, and DW050, how can I install Illustrator and fix these errors?
    this is the log error file I get:
    Exit Code: 6
    Please see specific errors and warnings below for troubleshooting. For example, ERROR: DF024, DW063 ...
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 4 error(s), 0 warning(s)
    ----------- Payload: {AAF0D225-F129-40F2-916E-12E28DBD19ED} Adobe Illustrator CS6 Core 16.0.0.0 -----------
    ERROR: DF024: Unable to preserve original file at "/Applications/Adobe Illustrator CS6/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/AdobeCrashReporter" (Seq 1649)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 1649)
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050: - Adobe Illustrator CS6 Core_AdobeIllustrator16en_USLanguagePack: Install failed
    ERROR: DW050: - Adobe Illustrator CS6 Core: Failed due to Language Pack installation failure

    hold down shift-cmd-alt while starting ai.  if done correctly, you'll see a preferences reset prompt.
    if that fails, uninstall, clean and reinstall per Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • Tool Tip / GUI-script battle

    I've got a slider that invokes a handler that performs some AppleScript GUI scripting ( ... unfortunate, yes, but there's no other way.)
    The slider has a Tool Tip.
    If I click and drag outside of the slider's mouseDown region, no problem. The GUI stuff works as expected.
    If I drag inside the slider's mouseDown region, the ToolTip appears at it designated time, as if I were hovering. This causes a NSReceiverEvaluationScriptError: 4 (1) error. Certainly makes sense that I'd get an error when the Tool Tip comes to the front. But I'm confused as to why it appears. None of my non-GUI related sliders have this problem.
    Suggestions?
    Here are a few other Tool Tip questions:
    1) Can I increase or decrease the display length for all tool tips?
    2) Is it possible to keep tool tips visible indefinitely while the user hovers the mouse over the object, closing on mouseLeave?
    3) Can I toggle all Tool Tips to enabled or disabled?
    Thanks, John

    I've got a slider that invokes a handler that
    performs some AppleScript GUI scripting ( ...
    unfortunate, yes, but there's no other way.)
    The slider has a Tool Tip.
    If I click and drag outside of the slider's mouseDown
    region, no problem. The GUI stuff works as expected.
    If I drag inside the slider's mouseDown region, the
    ToolTip appears at it designated time, as if I were
    hovering. This causes a
    NSReceiverEvaluationScriptError: 4 (1) error.
    Certainly makes sense that I'd get an error when the
    Tool Tip comes to the front. But I'm confused as to
    why it appears. None of my non-GUI related sliders
    have this problem.
    Suggestions?
    Just noticed: on another computer (a powerBook) I get the NSReceiver error at any click or drag. Cleaned all targets and got the same result.
    I set a one second delay to make sure the GUI window gets time to come to the front but to no avail. There's a error at every click or drag.
    John

  • Can Servlet embed flash??

    hi,all
    Recently,I've start write servlet code,and client UI which use flash application.But I have problem with write out page through servlet.
    I want to know can servlet embed flash (swf.file).Below I post some section of my code.
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException,IOException
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head>");
    out.println("<meta http-equiv=Content-Type content='text/html>");
    out.println("<title>XXX</title>");
    out.println("<script language='JavaScript'>");
    out.println("function openNewWindow(URLtoOpen, windowName, windowFeatures){");
    out.println("newWindow=window.open(URLtoOpen, windowName, windowFeatures); } </script>");
    out.println("<script language='JavaScript' type='text/JavaScript'>");
    out.println("<!-- ");
    out.println("function setFlashVars() {");
    out.println("enterprise.SetVariable('userid'," + UserID + "); }");
    out.println("function openBrWindow(theURL) {");
    out.println("window.open(theURL,'desc','width=588,height=285'); }") ;
    out.println("//--> </script>");
    out.println("</head>");
    out.println("<BODY bgcolor='#999999' onLoad=\"setFlashVars()\">");
    out.println("<A HREF=javascript:top.close()></A> <A HREF=e-date.swf></A> <!-- text used in the movie-->");
    out.println("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" WIDTH='100%' HEIGHT=\"100%\" id=\"enterprise\" ALIGN=\"\">");
    out.println("<PARAM NAME=movie VALUE=\"enterprise.swf\">");
    out.println("<PARAM NAME=quality VALUE=high>");
    out.println("<PARAM NAME=scale VALUE=exactfit>");
    out.println("<PARAM NAME=devicefont VALUE=true>");
    out.println("<PARAM NAME=bgcolor VALUE=#999999>");
    out.println("<PARAM name=flashvars value=\"gatewayURL=" + gatewayURL + "&Userid=" + UserID + "&Today=" + today + "\">");
    out.println("<EMBED src=\"enterprise.swf\" quality=high scale=exactfit devicefont=true bgcolor=#999999 WIDTH='100%' HEIGHT='100%' NAME=\"enterprise\" ALIGN=\"\" TYPE=\"application/x-shockwave-flash\" flashvars=\"gatewayURL=" + gatewayURL + "&Userid=" + UserID + "&Today=" + today + "\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\"> </EMBED>");
    out.println("</OBJECT>");
    out.println("</BODY>");
    out.println("</html>");
    out.close();

    You should use the path to the .swf file, i.e. /myapp/flash/whatever.swf

  • Can't open Illustrator after update error 16

    Adobe did an automatic update and since I can not open illustrator or any adobe program.
    tells me uninstall then reinstall and gives me error code 16, anything else I can do, or a reason it did this?
    thanks

    i,
    You could try to reinstall using the full three step way:
    Uninstall, run the Cleaner Tool, and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Illustrator path to Presets/Scripts including locale

    Hi,
    I've made a little jsx Illustrator script I'd like to pack as an extension.
    Looked at MXI tech note Path Tokens appending and found the $presets token.
    Unfortunately it does NOT include the locale in it's path.
    For example, my path is /Applications/Adobe Creative Suite 5/Adobe Illustrator CS5/Presets.localized/en_GB/Scripts
    For other locales that will be different and the $presets toke doesn't help, it's the sames as $illustrator/Presets.localized as far as I can tell.
    How can can I set the path of my script to Illustrator's Scripts folder from my MXI ?

    Hello Carl,
    Thank you very much for taking your time for this.
    It looks promising, but unfortunately this doesn't fully work as expected.
    I've updated XManConfig.xml as advised and repackaged/installed my script
    but it gets written into en_US instead of en_GB.
    Not sure how the $LOCALE token works.
    The 'workaround' I have in place at the moment works, but it's pretty messy/hacky:
    I copy the script for EVERY locale illustrator has.
    Even with this, I'm not sure if all the possible install locales are the ones that are listed
    in the Illustrator Download page:
    <!-- Illustrator Install Locales -->
              <file source="Save Selection Coordinates.jsx" destination="$presets/cs_CZ/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/da_DK/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/nl_NL/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/en_GB/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/en_US/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/fr_FR/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/en_GB/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/de_DE/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/it_IT/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/ja_JP/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/ko_KR/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/pl_PL/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/ru_RU/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/es_ES/Scripts/" shared="true" />
              <file source="Save Selection Coordinates.jsx" destination="$presets/sv_SE/Scripts/" shared="true" />
    or the ones used in the legal notes:
    <!--All legal locales-->
    <file source="Save Selection Coordinates.jsx" destination="$presets/ar_AE/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/cs_CZ/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/da_DK/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/de_DE/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/el_GR/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/en_GB/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/en_US/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/es_ES/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/es_MX/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/fi_FI/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/fr_CA/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/fr_FR/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/he_IL/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/hu_HU/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/it_IT/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/ja_JP/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/ko_KR/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/nb_NO/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/nl_NL/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/pl_PL/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/pt_BR/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/ro_RO/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/ru_RU/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/sv_SE/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/tr_TR/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/uk_UA/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/zh_CN/Scripts/" shared="true" />
    <file source="Save Selection Coordinates.jsx" destination="$presets/zh_TW/Scripts/" shared="true" />
    I really hope you're solution can be tweaked to work as it would be cleaner to update XManConfig.xml along with the script than making loads of unneccesary copies.
    Regarding the next release, yes, the localized presets token would be very helpful.

Maybe you are looking for

  • JDBC Adpater in XI

    Hello all, I need to use JDBC adapter for my scenario to connect to a database. I came to know that I need to install JDBC drivers. My questions are: 1) Is that my responsibility to install the drivers or is that Basis person's duty? 2) Where can I d

  • Can't make MPEG-2 with audio via Compressor

    Hi guys, help, I'm trying to make a single file MPEG-2 with video AND audio exporting from FCP. This file is intented for broadcast television, so i can't end up with 2 seperate audio/video files. Every time I select MULTIPLEXED MPEG-1/LAYER 2 AUDIO

  • SQL 2005 v9.0.2047 (SP1) - The query processor could not produce a query plan

    Hi Everyone: *Before* I actually call up Microsoft SQL Customer Support Services and ask them, I wanted to ping other people to see if you have ever ran into this exact error "Internal Query Processor Error: The query processor could not produce a qu

  • "Export Audio To Movie" is out of sync - please help.

    Hi I recently upgraded to LP8.01 and am trying to put audio (sound design) to a piece of animation. Despite the audio being perfectly sync'ed in Logic, when I bounce to Quicktime, the audio is anything from 0.5 to 1 seconds late in the resulting movi

  • Is Office 2011 compatible with Yosemite ?

    As a student, i can't lose Office Word (specially during my semester!) so i wanted to know if they are compatible? I want to upgrade to Yosemite ( i am on Mavericks), but i am scared that my office won't be working after.. Thanks!