Applescript to save all open documents?

Hello,
When I close Numbers, I usually have about 15 documents with changes and I have to go through "Do you want to save changes" for all of them.
I've googled and tried, without success, to get a script that saves all open documents, except for untitled ones.
Is there anyone who know such a script?
Fred

Here is a revised version.
The problem was due to the fact that the script save and close the documents.
When I tested it, it was only saving them.
--[SCRIPT save&backup4iWork]
Enregistrer le script en tant que Script : save&zip4iWork.scpt
déplacer le fichier ainsi créé dans le dossier
<VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:
Aller au menu Scripts puis choisir “save&zip4iWork”
Tous les documents iWork ouverts, ayant déjà été enregistrés puis modifiés seront enregistrés et fermés.
Si la propriété avecSauvegarde a la valeur true, une copie horodatée de chaque fichier est créée.
Si le document principal est de type paquet, la copie est compressée (zip).
--=====
L’aide du Finder explique:
L’Utilitaire AppleScript permet d’activer le Menu des scripts :
Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
Cochez la case “Afficher le menu des scripts dans la barre de menus”.
Sous 10.6.x,
aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
--=====
Save the script as a Script: save&zip4iWork.scpt
Move the newly created file into the folder:
<startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
Go to the Scripts Menu then choose “save&zip4iWork”
Every open iWork document already saved then edited will be saved and closed.
--=====
The Finder’s Help explains:
To make the Script menu appear:
Open the AppleScript utility located in Applications/AppleScript.
Select the “Show Script Menu in menu bar” checkbox.
Under 10.6.x,
go to the General panel of AppleScript Editor’s Preferences dialog box
and check the “Show Script menu in menu bar” option.
if the property avecSauvegarde is set to true, a dateTime stamped copy of each document is also created.
It's zipped if the main document is a package.
Yvan KOENIG
based on my AutoSave script.
2011/06/09
--=====
property avecSauvegarde : false
true = keep a dateTime stamped copy
false = don't keep a dateTime stamped copy
property saveKeynote : false
property saveNumbers : true
property savePages : false
--=====
on run
          if savePages then my auto4PKN("Pages")
          if saveKeynote then my auto4PKN("Keynote")
          if saveNumbers then my auto4PKN("Numbers")
end run
--=====
on auto4PKN(theApp)
          local titres, theDocs, aDoc, aPath
          tell application "System Events" to set titres to title of processes
          if theApp is in titres then
                    tell application theApp
As we close the documents, we must store the list of docs in a variable
or scan the list from the end which would require an index !
                              set theDocs to every document
                              repeat with aDoc in theDocs
                                        if modified of aDoc then
                                                  set aPath to path of aDoc
                                                  try
                                                            set aPath to aPath as text
                                                  on error
Here if the document was never saved before
                                                            set aPath to ""
                                                  end try
                                                  if aPath is not "" then
Save and close documents which were already saved once
                                                            close aDoc with saving
                                                            if avecSauvegarde then my zipIt(aPath)
                                                  end if -- aPath
                                        end if -- modified
                              end repeat
                    end tell -- theApp
          end if -- theApp is…
end auto4PKN
--=====
on zipIt(fichier) (* fichier is an HFS path*)
          local Nom, ext, dossier, isPackage, nomAvecDateHeure, source, dest
          set fichier to "" & fichier
          tell application "System Events" to tell disk item fichier
                    set Nom to name
                    set ext to name extension
                    set dossier to path of container
                    set isPackage to package folder
          end tell
          set source to quoted form of POSIX path of fichier
          set nomAvecDateHeure to (text 1 thru -(2 + (count of ext)) of Nom) & (do shell script "date +_%Y%m%d-%H%M%S.") & ext
          if isPackage then
                    set dest to quoted form of POSIX path of (dossier & nomAvecDateHeure & ".zip")
                    do shell script "ditto -ck " & source & " " & dest
          else
                    set dest to quoted form of POSIX path of (dossier & nomAvecDateHeure)
                    do shell script "cp " & source & " " & dest
          end if
end zipIt
--=====
--[SCRIPT]
--{code}
I included your specific requirements.
Yvan KOENIG (VALLAURIS, France) jeudi 9 juin 2011 18:03:20
iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
Please : Search for questions similar to your own before submitting them to the community
To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

Similar Messages

  • How to save all open document in png 24 by javacsript

    how to save all open document in png 24 by javacsript

    yeah, i can definitely see how it would be useful for some
    people! and
    hey, for all i know, i'm the one who's not an average user. i
    was
    pretty much just saying that i can see how that's something
    Firefox
    would think to do, but not necessarily a program like
    Dreamweaver. but i
    agree that it would be a useful feature in lots of programs.
    and i think
    that what Murray suggested is probably pretty close to what
    you're
    looking for, if not exactly.
    d_macman wrote:
    > To respond to both...
    >
    > courtney (n h c)... I must not be the average user then.
    We have many sites,
    > and I do a LOT of development, and many times, I may
    have several pages with
    > several includes on a page. IE, for a form page, I may
    have 10-12 pages total
    > (including headers, footers, java, PHP process pages,
    etc) and to work out the
    > processes and for development, I may create several
    versions depending on the
    > problems I run into.So to not go nuts, I would LOVE to
    save the batch of pages
    > out, and then be able to re-open them all at once.
    Making it easy to jump in an
    > out of a test section (I have them saved in a site, and
    dont want to make
    > second sites just for this purpose).
    >
    > Not to mention, leaving work and coming back in and
    finding out the power went
    > out over the weekend and my machine shutdown (and yes, I
    have a UPS, but it
    > wont run the system for that long).
    >
    > So, you see why I would like to save them as batch, like
    Firefox, way easier.
    >
    > Murray *ACE* ...
    >
    > I will try that, I did not even know that was there. Way
    cool ! I hope it
    > works, especially for power outages, like I mentioned
    above!
    >
    > Thanks all,
    >
    > Don
    >
    >

  • Looking for PS Script to Save and Close All Open Documents

    I used ACR and CS5 to process my Nikon D3 NEF files. I would like a script that would save all open documents (witin PS) with the highest possible quality (12). I've found several scripts that will close all open documents with save but cannot figure out how to implement a save script.
    For example, I may have 20 converted .jpeg files open. I would like to run a script to save & close all open documents.
    Is it possible? Can someone post an example working script?

    Take a look at the image processor, under the scripts menu.
    MTSTUNER

  • Save all open images

    I didn't find this when I did a forum search, but I find it hard to believe that there isn't a feature request for this already. Photoshop needs a "Save All" feature. I've seen suggestion to just make this an action, but the problem with that is that you must continually hit the action in order to perform it. Maybe I'm just missing something but I find it odd that a photo editing program, in which it is quite possible that you could have dozens of images open at the same time has no "Save All" or "Autosave" features...still.

    If you want to give it a try paste the following text into a new file in ExtendScript Toolkit (part of Photoshop’s installation, Applications/Utilities/Adobe Utilities - CS5/ExtendScript Toolkit CS5) and save it as a jsx-file into Photoshop’s Presets/Scripts-folder.
    After restarting Photoshop the Script should be available under File > Scripts and can be assigned a Keyboard Shortcut directly, recorded into an Action, (in CS4 and CS5) be used in a Configurator-Panel or started from ExtendScript Toolkit directly.
    // save all open documents;
    // 2011, use it at your own risk;
    #target photoshop;
    if (app.documents.length > 0) {
    var theFirst = app.activeDocument;
    var theDocs = app.documents;
    // psd options for unsaved files;
    psdOpts = new PhotoshopSaveOptions();
    psdOpts.embedColorProfile = true;
    psdOpts.alphaChannels = false;
    psdOpts.layers = true;
    psdOpts.spotColors = true;
    // go through all files;
    for (var m = 0; m < theDocs.length; m++) {
         var theDoc = theDocs[m];
         app.activeDocument = theDoc;
    // getting the name and location;
         var docName = theDoc.name;
    // thanks to xbytor for the regexp;
         if (docName.indexOf(".") != -1) {var basename = docName.match(/(.*)\.[^\.]+$/)[1]}
         else {var basename = docName};
    // getting the location, if unsaved save to desktop;
         try {
              var docPath = theDoc.path;
    // save the file if unsaved;
              if (theDoc.saved == false) {theDoc.save()}
    // if file has not been saved yet save to desktop;
         catch (e) {
              var docPath = "~/Desktop";
              theDoc.saveAs((new File(docPath+'/'+basename+".psd")), psdOpts, false, Extension.LOWERCASE);
    app.activeDocument = theFirst;

  • Run applescript on all open documents

    hi all,
    I have an applescript that was created to run on the active document. I dont have any applescript abilites but would like to change it to run on all open documents. the script removes all unused master pages and i would like it to run on all opened docs. what do i need to change to make it work?
    here is the script....
    set moreMasters to {}
    tell application "Adobe InDesign CS3"
        tell document 1
            set allMasters to every master spread
            set theMasters to applied master of every page
            repeat with x in theMasters
                set end of moreMasters to applied master of x
            end repeat
            set theMasters to theMasters & moreMasters
            repeat with x in allMasters
                if x is not in theMasters then delete x
            end repeat
        end tell
    end tell
    thanks in advance
    Dan

    Rather than using the numeric index, you can also leave that to AppleScript.
    tell application "Adobe InDesign CS4"
         repeat with doc in documents
              tell doc
                   set theName to name -- of doc
                   display dialog theName
              end tell
         end repeat
    end tell

  • Save all Open Files in CS4?

    Hi all,
    Looking for a script that will save all open files as a a JPG to a specific directory.  I tried using this in CS4 but it doesnt work.  It just opens the save dialog and thats it.  Want something a bit more automated:
    var tempFolder = new Folder ("C:/Your_Temporary_Folder")
    tempFolder.create();
    var DL = documents.length;
    for(a=1;a<=DL;a++){
       activeDocument = documents[a-1];
       var AD=activeDocument;
       var imgName= AD.name;
       imgName = imgName.substr(0, imgName.length -4);
       AD.flatten();
       saveFile = new File("C:/Your_Temporary_Folder/"+imgName+".jpg");
       saveOptions = new JPEGSaveOptions();
       saveOptions.embedColorProfile = true;
       saveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
       saveOptions.matte = MatteType.NONE;
       saveOptions.quality = 12;
       AD.saveAs(saveFile, saveOptions, true,Extension.LOWERCASE);
    Thanks.

    Hi guys,
    That fixed it.  The other problem was that the name length was too short:
       imgName = imgName.substr(0, imgName.length -0);
    So I corrected that as well.  Thanks for your help.
    Is it possible to add a "close without prompting to save" in the script?  So it basically saves the file then closes the window in PS without prompting me to save it again?

  • Save all open files?

    Is there a way or a script to save all open files in Adobe Illustrator?
    Thanks

    Thanks. How would one edit this, especially so that it doesn't close the files?
    Do I just delete the 4th line from the bottom?
    var WR="WR-SaveAndCloseAll v0.2\n\n";
    if (language == "de") {
      var MSG_nodocs = WR+"Kein Dokument ge\xF6ffnet.";
      var MSG_ask = WR+"Sollen alle Dokumente gespeichert und geschlossen werden?";
    } else {
      var MSG_nodocs = WR+"You have no open document."
      var MSG_ask = WR+"Are you sure to save and close all open documents?";
    var itemstoprocess=0;
    var error=0;
    var Docs=documents.length;
    if (Docs<1) {
      error++;
      alert(MSG_nodocs);
    } else {
      if(confirm(MSG_ask)) {
        for(var i=0;i<Docs;i++) {
          activeDocument.close(SaveOptions.SAVECHANGES);

  • Sales document report for all open documents

    hi i need the code for sales document report for all open documents is sd
    ...      can anyone help me out.
                                     thanks in advance

    Try transaction VA05. In that choose "Open Orders" along with other selection criteria.
    If you want the Open sales order qty in output and its not displayed, do the following.
    Sales -> System modification -> create new fields ( without condition technique) -> New fields for lists.
    You can change V05TZZMO and structure VBMTVZ from there or use SE38 / SE11.
    For both you'll need an object registration in OSS.
    Hope this helps.
    Thanks,
    Balaji

  • Command in Java for "all opened documents"

    I have a script that needs modification. Thank you all in the forum for helping me design this script from start btw!
    Anyway, this is the script.
    var myDoc = app.activeDocument;
    app.findGrepPreferences = app.changeGrepPreferences = null;
    // Change "Condition 1" to name of your condition
    myConditionList = app.activeDocument.conditions.everyItem().getElements();
    for (i=myConditionList.length-1; i>=0; i--)
        if (myConditionList[i].visible == false)
            myConditionList[i].visible = true;
            app.findGrepPreferences.appliedConditions = [myConditionList[i].name] ;
            app.findGrepPreferences.findWhat = ".+";
            myDoc.changeGrep();
            app.activeDocument.conditions.item(myConditionList[i].name).remove();
    I'm looking for a variable that can apply for "all" opened documents rather than the active one only. I'm having difficulty finding the right command.
    BTW, the script removes all hidden text and objects.

    Programming has never been my strong side. Never understood it properly and probably never will =(. But thank you solving it. The code "JUMO_OVER" wrote, worked like charm. No need to execute the script 10x for 10 documents.
    Pardon me for giving you guys more out headaches, I have two additional scripts that needs revision for the same purpose as above, i.e. able to exceute the scrip for all opened docs, saved or unsaved. I would really appreciated if you guys could help me convert them. I tried it do it on my own own, but I can't get it working... =(
    Delete Empty Frames in active doc
    var myStories = app.activeDocument.stories.everyItem().getElements();
    for (i = myStories.length - 1; i >= 0; i--)
        var myTextFrames = myStories[i].textContainers;
        for (j = myTextFrames.length - 1; j >= 0; j--)
            if (myTextFrames[j].contents == "")
                myTextFrames[j].remove();
    Delete Empty Pages in active doc
    app.doScript("main()", ScriptLanguage.JAVASCRIPT, undefined, UndoModes.ENTIRE_SCRIPT,"Remove  Blank Pages");
    function main () {
        if (app.documents.length === 0) {
            alert ("Please open a document.");
            return;
        app.scriptPreferences.enableRedraw = false;
        removeBlankPages (app.Documents);
        app.scriptPreferences.enableRedraw = true;
        function removeBlankPages (doc) {
            var pages = doc.pages.everyItem().getElements().slice(0);
            var i = pages.length;
            while (i-- >1) { // a bit quicker here
                !pages[i].allPageItems.length && pages[i].remove ();
            !pages[i].allPageItems.length && pages[i] != doc.pages[-1] && pages[i].remove ()
    BTW, I didn't write them. So they may look quirky in your eyes.

  • How to get all open document?

    I want to replace some elements through all open documents in
    dreamweaver.
    eg. replace <b> to <strong> and </b> to
    </strong>
    I know i can do this by using "replacing all", but i want to
    replace a lot of things together. it's boring to replace them one
    by one :P
    Anyone know how to make it?
    Thank you for your help! ^^

    "xsiren" <[email protected]> wrote in
    message
    news:f1v1o5$333$[email protected]..
    > the "dreamweaver.getDocumentList()" is only for get all
    the list of open
    > documens, istn't it?
    > i tried to alert the value of it, and it show something
    like
    > "file://D:\develop\1.html" "file://D:\develop\2.html"
    And then you are supposed to get the DOM out of the url,
    passing it as an
    argument to dreamweaver.getDocumentDOM()
    Massimo Foti, web-programmer for hire
    Tools for ColdFusion and Dreamweaver developers:
    http://www.massimocorner.com

  • I used to be able to save all open tabs to a folder in Bookmarks, but cannot figure out how to do that in Firefox 4.0.

    Older versions of Firefox allowed the user to save all open tabs to a folder in Bookmarks with one touch (not laboriously bookmarking each tab), so if Firefox did not remember your tabs when re-opening your browser after closing down for the night, you could at least re-open each tab if you'd been clever enough to save them to a Bookmarks folder. I still have my Bookmarked folders full of tabs from previous months, so I know I'm not imagining this useful Bookmark function.
    I cannot find this function, Save All Tabs (I think that's what it was called,) under Bookmarks anymore.

    THANK YOU! So easy, now I feel stupid. ;)
    Sorry, Firefox 4.0 is driving me nuts in many ways, this is just one of them.

  • HELP:script that iterates through all opened documents and rezise them to match the biggest one.

    Hi,
    I'm making a batch processing action and I really need a script that iterates through all open documents, finds the one with the biggest image size and then iterates one more time to change the rest of the documents to the same image size dimensions. At the end all documents must share identical image size.  I'll really  appreciate if someone can put a quick script for doing this. Thank you !

    I think should do…
    #target photoshop
    if (documents.length > 1) {
         var smallest = 1000000; // Set beyond any size you may be expecting this should do?
         for (var a = 0; a < documents.length; a++) {
              smallest = Math.min(smallest,documents[a].width.as('px'));
         for (var b = 0; b < documents.length; b++) {
              if (documents[b].width.as('px') != smallest) {
                   app.activeDocument = documents[b];
                   var newWidth = new UnitValue(smallest, 'px');
                   documents[b].resizeImage(newWidth,undefined,undefined,ResampleMethod.BICUBICSMOOTHER);
    }else{
         alert("NOT enough docs to resize?");

  • How do i print all open documents

    is there any way to print all open documents?

    Oh, and if you want to use one of your print presets, do it like this:
    app.documents.everyItem().print(false,
    app.printerPresets.itemByName("myFabPreset"));
    Ariel

  • Bug Report: Enabling Application Frame forces all open documents into tabs

    Steps to reproduce the problem:
    Set Preferences -> Interface -> "Open Documents as Tabs" to OFF
    Open a bunch of documents. Observe that they are separate floating windows, which is good
    Choose Window -> "Application Frame" which will turn the default Application Frame off
    Choose Window -> "Application Frame" which will re-enable the Application Frame and force all of your open docs into tabs, which is undesired!
    System Info:
    Adobe Photoshop Version: 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00) x64
    Operating System: Mac OS 10.7.3
    System architecture: Intel CPU Family:6, Model:37, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 2400 MHz
    Built-in memory: 8192 MB
    Free memory: 1848 MB
    Memory available to Photoshop: 6664 MB
    Memory used by Photoshop: 70 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Normal
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Version: 2.1 NVIDIA-7.18.11
    OpenCL Unavailable
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: NVIDIA GeForce GT 330M OpenGL Engine
    Display: 2
    Display Depth:= 32
    Display Bounds:=  top: 390, left: -1680, bottom: 1440, right: 0
    Video Renderer ID: 16918034
    Video Card Memory: 204 MB
    Video Rect Texture Size: 8192
    OpenGL Version: 2.1 NVIDIA-7.18.11
    OpenCL Unavailable
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: NVIDIA GeForce GT 330M OpenGL Engine
    Display: 1
    Main Display
    Display Depth:= 32
    Display Bounds:=  top: 0, left: 0, bottom: 1440, right: 2560
    Video Renderer ID: 16918034
    Video Card Memory: 204 MB
    Video Rect Texture Size: 8192
    Serial number: Tryout Version
    Application folder: SledgeHammer:Applications:Adobe Photoshop CS6:
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      SledgeHammer, 446.8G, 154.1G free
    Required Plug-ins folder: SledgeHammer:Applications:Adobe Photoshop CS6:Adobe Photoshop CS6.app:Contents:Required:
    Primary Plug-ins folder: SledgeHammer:Applications:Adobe Photoshop CS6:Plug-ins:
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.3.8.19346   66.1025012
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.2.29.18602   66.490082
       adobe_caps.framework   adobe_caps   5.0.11.0   1.256674
       AdobeACE.framework   AdobeACE   2.19.18.19243   66.492997
       AdobeAGM.framework   AdobeAGM   4.26.17.19243   66.492997
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.02.19243   66.492997
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   66.492997
       AdobeCoolType.framework   AdobeCoolType   5.10.31.19243   66.492997
       AdobeCrashReporter.framework   AdobeCrashReporter   6.0.20120201  
       AdobeExtendScript.framework   AdobeExtendScript   4.2.12.18602   66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
       AdobeLinguistic.framework      17206  
       AdobeMPS.framework   AdobeMPS   5.8.0.19463   66.495174
       AdobeOwl.framework   AdobeOwl   4.0.93   66.496052
       AdobePDFL.framework   AdobePDFL   10.0.1.18562   66.419471
       AdobePDFSettings.framework   AdobePDFSettings   1.4  
       AdobePIP.framework   AdobePIP   6.0.0.1642  
       AdobeScCore.framework   AdobeScCore   4.2.12.18602   66.490082
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   66.145661   66.145661
       AdobeXMPFiles.framework   AdobeXMPFiles   66.145661   66.145661
       AdobeXMPScript.framework   AdobeXMPScript   66.145661   66.145661
       ahclient.framework   ahclient   1.7.0.56  
       aif_core.framework   AdobeAIF   3.0.00   62.490293
       aif_ocl.framework   AdobeAIF   3.0.00   62.490293
       aif_ogl.framework   AdobeAIF   3.0.00   62.490293
       AlignmentLib.framework   xcode   1.0.0.1  
       amtlib.framework   amtlib   6.0.0.75  
       boost_date_time.framework   boost_date_time   6.0.0.0  
       boost_signals.framework   boost_signals   6.0.0.0  
       boost_system.framework   boost_system   6.0.0.0  
       boost_threads.framework   boost_threads   6.0.0.0  
       Cg.framework   NVIDIA Cg     
       CIT.framework   CIT   2.0.5.19287   145486
       data_flow.framework   AdobeAIF   3.0.00   62.490293
       dvaaudiodevice.framework   dvaaudiodevice   6.0.0.0  
       dvacore.framework   dvacore   6.0.0.0  
       dvamarshal.framework   dvamarshal   6.0.0.0  
       dvamediatypes.framework   dvamediatypes   6.0.0.0  
       dvaplayer.framework   dvaplayer   6.0.0.0  
       dvatransport.framework   dvatransport   6.0.0.0  
       dvaunittesting.framework   dvaunittesting   6.0.0.0  
       dynamiclink.framework   dynamiclink   6.0.0.0  
       FileInfo.framework   FileInfo   66.145433   66.145433
       filter_graph.framework   AdobeAIF   3.0.00   62.490293
       hydra_filters.framework   AdobeAIF   3.0.00   62.490293
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       image_compiler.framework   AdobeAIF   3.0.00   62.490293
       image_flow.framework   AdobeAIF   3.0.00   62.490293
       image_runtime.framework   AdobeAIF   3.0.00   62.490293
       LogSession.framework   LogSession   2.1.2.1640  
       mediacoreif.framework   mediacoreif   6.0.0.0  
       PlugPlug.framework   PlugPlug   3.0.0.383  
       UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24   "6.0.0.24"
       wrservices.framework        
    Required plug-ins:
       3D Studio 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       ADM 3.10x16, Copyright © 1987-2008 Adobe Systems Inc.  All rights reserved. - from the file “AdobeADM.bundle”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 7.0 (308), Copyright © 2012 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 13.0 20120305.m.415 2012/03/05:21:00:00  ©2002-2012 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.0 20120305.m.415 2012/03/05:21:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 13.0 20120305.m.415 2012/03/05:21:00:00  ©1997-2012 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Enable Async I/O 13.0 20120305.m.415 2012/03/05:21:00:00  © 2004-2012 Adobe Systems Incorporated - from the file “Enable Async IO.plugin”
       Entropy 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 13.0 20120305.m.415 2012/03/05:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 13.0 20120305.m.415 2012/03/05:21:00:00  ©2001-2012 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Measurement Core 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 13.0 20120305.m.415 2012/03/05:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 13.0 20120305.m.415 2012/03/05:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.0 20120305.m.415 2012/03/05:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Picture Package Filter 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 13.0 20120305.m.415 2012/03/05:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.0 20120305.m.415 2012/03/05:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 13.0 20120305.m.415 2012/03/05:21:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 13.0 20120305.m.415 2012/03/05:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Summation 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       U3D 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wavefront|OBJ 13.0 20120305.m.415 2012/03/05:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.0 20120305.m.415 2012/03/05:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    Found another option which is helpful for those trying to rid themselves of tabs:
    Preferences -> Interface -> Uncheck "Enable Floating Document Window Docking"
    This will prevent you from accidentally dragging a document near the top of the Aplication Frame and having it sucked into a tab.
    That said, I think it is still a problem to have all documents brought into tabs when turning on Window -> Application Frame when all of the available "don't use tabs" options are chosen.

  • Save all open jpg files

    I have the script partially working. It saves all the open psd as jpg into into a separate directory and it close some of the open files not all. The directory has five files. The script saves only three files, What am I doing wrong?
    #target photoshop
    if (app.documents.length > 0) {
    //flatten the active document
    app.activeDocument.flatten();
    //jpeg options
    var myJPEGOptions = new JPEGSaveOptions();
    myJPEGOptions.embedColorProfile = true;
    myJPEGOptions.formatOptions = FormatOptions.STANDARDBASELINE;
    myJPEGOptions.matte = MatteType.WHITE;
    myJPEGOptions.quality = 12;
    myJPEGOptions.scans = 3;
    // get documents;
    var docs = app.documents;
    for (var m = 0; m < app.documents.length; m++) {
    app.activeDocument = docs[m];
    try {
    //save file to folder
    var myFile = new File(("~/Desktop/forum-test") + "/" + activeDocument.name);
    app.activeDocument.saveAs(myFile, myJPEGOptions, true);
    //close the document
    activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    catch (e) {
    alert ("Error the script did not execute");

    This forum is about scripts in Acrobat. You need the Illustrator Scripting forum, I'm guessing.

Maybe you are looking for

  • Mail window for a new message does'nt open

    When I click on the new-message icon in mail the message window will not open. Who knows a solution? With thanks on beforehand,Gerard Morselt

  • Query form requires Logical operators and/or Quotes

    In ORACLE 9I Jdeveloper beta I used the BC4J JSP wizard to create a - Query Form. The query form looks nice and runs except I have to also include the logical operators (= > <) and Quotes. For example to query on the name Joe I have to enter it as ="

  • Artists/ Music not on itunes - Canada

    Why is it that artists are not on itunes (I am in Canada) and yet were quite known in Canada. Parachute club, Idle eyes are not on itunes. Any reason?

  • Viewing a file in JEditorPane

    hi, I am new to JEditorPane component. I am using RedHat Linux. I am having a text file which I want to display it in JEditorPane for 'preview' purposes. Is it possible. Or it can display only HTML files. Please make it clear. thanks in advance. bhuv

  • Will the iPad play the formats .wmv, .pps and .mpg?

    Will it play these formats? If not, what apps are best? Or what iPad formats do I convert to using a PC?