Mac file location of InDesign Scripts

Hi quick question.
I do not own a mac and thus anyone with one would be able to answer this quite easily.
I have a .jsx (javascript) file which I would like to run.
If simply copy it into the preset folder will it show up in the scripts palette? as on a PC?
Can someone tell me the default directory of the MAC preset folder for indesign cs2/cs3?
(I know the PC one for CS3 is C:\Program Files\Adobe\Adobe InDesign CS3\Scripts\Scripts Panel)
Thanks in advance.
Joel

You might want to ask in the InDesign forum.
-X
for photoshop scripting solutions of all sorts
contact: [email protected]

Similar Messages

  • Whatever happened to the File: Place: In InDesign Script?! I want it back!

    Whatever happened to the File: Place: In InDesign Script?! I want it back!

    I think Configurator will happen for InDesign CC, just not yet.
    For now, you could write a startup script.
    I only suggest these as alternatives. It would have been better if Adobe had made it an option. Very heavy handed and another thing that is going to P loyal users off.
    P.

  • Location of InDesign scripts

    I'm trying to find the moved location of the InDesign zip archive of the scripts shown in the InDesign_ScriptingGuide_JS.pdf.
    Adobe lists this link in the pdf as
    http://www.adobe.com/products/indesign/scripting/index.html.
    but it just takes you to their InDesgin CC page.
    Thanks

    Try going down the page and in one of the side list is a link
    Resources
    Adobe Exchange
    Adobe Configurator
    Developer Center
    Automating InDesign
    Custom editorial publishing solutions
    Creative Suite Printing Guide
    Print production
    Click on the Automating InDesign and then the Scripting Resources.

  • Where are Pantone color library file locations for InDesign CC?

    I cannot believe how difficult it is to find this information. It should be a quick search in the regular Help system.
    I'd really like to find the file locations for Illustrator CC and Photoshop CC too, because I need to update my Pantone libraries, but every place I can find to save them does not seem to be the default location, so I end up with a really long dropdown menu of strangely duplicated library names, and I have no idea how to clean it up or where the program is looking to give me that list.
    As far as I can tell, the default libraries are located whereever that first set is. The lower sets must be somewhere else, but I don't know where, because I've deleted all Pantone sets but one that I could find, but I can still see them (and the other non-pantone color books) duplicated in the lower sets.
    Please help! Also, Adobe, if you see this, this information should be READILY and EASILY found through the main Help menu in any Adobe product.

      This was the correct answer:
           Laubender     Jun 2, 2014 12:18 AM  (in response to Maurice Castelbuono)   
    @Maurizio – the standard settings, the joboption files with the brackets like [PDF/X-1a:2001] are stored inside the inDesign app for InDesign CC 9.2.1.
    The path for these would be:
    /Applications/Adobe InDesign CC.app/Contents/MacOS/Resources/Adobe PDF/settings/mul
    or with a Japanese version of InDesign:
    /Applications/Adobe InDesign CC.app/Contents/MacOS/Resources/Adobe PDF/settings/japan
    If you do a right-click on the InDesign app you can show them with "Show Package Contents" options.
    All other PDF joboptions that you are creating are relative to your current User Library. They are stored in:
    ~/Library/Application Support/Adobe/Adobe PDF/Settings
    Where the tilde sign at the beginning indicates the home of the currently used user.
    You can access ~/Library, if you press the alt key when accessing the "Go To" menu in the Finder. Otherwise it's invisible.
    Uwe

  • InDesign Script to find images w/ prefix code, place img on page along with file name.

    Hello,
    I'm looking for an InDesign script that will prompt me for a code/text, this code/text will be the prefix of images in the sever, and then return the images found with this prefix by placing them on the document page and also display their file names in a text box. Is there such a script out there that anyone recommends. Thank you for your help. I'm on a Mac, using InDesign CS6, Javascript or any other would do.

    Hello,
    I'm looking for an InDesign script that will prompt me for a code/text, this code/text will be the prefix of images in the sever, and then return the images found with this prefix by placing them on the document page and also display their file names in a text box. Is there such a script out there that anyone recommends. Thank you for your help. I'm on a Mac, using InDesign CS6, Javascript or any other would do.

  • Move group of pages from one InDesign file to another InDesign File using VB.Script

    Dear team,
    I am trying to move group of InDesign pages from one indesign file to another indesign file using vb.script.
    I have written the code like
    Dim Pages=IndDoc.Pages
    Dim Mytype=TypeName(Pages)
    Pages.Move(InDesign.idLocationOptions.idBefore,IndDoc1.Pages.LastItem)
    but it is giving an error as method Move is not a member of Pages 
    please give mme the solution to move the Multiple pages or a group of page from one Indd to another Indd.

    Hey Peter, if I wan to move several page that part of Auto Flow text, I checked the "delete page after moving" but the content still there, not deleted.
    Is there any way to delete it automatically, just to make sure I have moved that autoflowed page?

  • How to Run Indesign Script in a file from plugin code in CS4?

    Hi,<br />I have the code to execute the InDesign script stored in external file for InDesign CS3.<br /><br />InterfacePtr<IScriptManager> scriptManager(Utils<IScriptUtils>()->QueryScriptManager(kJavaScriptMgrBoss)); <br />InterfacePtr<IScriptRunner> scriptRunner(scriptManager, UseDefaultIID()); <br />     IDFile scriptFile(scriptFilePath); <br />     if (scriptRunner->CanHandleFile(scriptFile)) <br />     { <br />       ScriptData returnValue; <br />       PMString errorString; <br />       ErrorCode error = scriptRunner->RunFile(scriptFile); <br />         ASSERT(error == kSuccess); <br />     } <br /><br />But the RunFile() method is cs4 expects an additional argument of the type RunScriptParams. <br />Someone please show me with a code snippet on how to excute a script file in CS4??

    Dear Ian
      Here I'm used the below coding in CS3, Its working fine....
    //In CS3 Coding
      PMString jsFullPath("c:\\windows\\sample.jsx"); // a path to my java script file
    do
    const
    IDFile outFile(jsFullPath);InterfacePtr<IScriptManager> scriptManager(Utils<IScriptUtils>()->QueryScriptManager(kJavaScriptMgrBoss));
    ASSERT( scriptManager ) ;
    InterfacePtr<IScriptRunner> scriptRunner(scriptManager,UseDefaultIID());
    ASSERT( scriptRunner ) ;
    if(scriptManager){
    InterfacePtr<IScriptRunner>scriptRunner(scriptManager,UseDefaultIID());
    RunScriptParams params(scriptRunner);
    ErrorCode err = scriptRunner->RunFile(outFile, kTrue, kFalse);
    while(kFalse);
    But the same time I used this coding in CS4, Its not woking
    //In CS4 Coding
    PMString jsFullPath("c:\\windows\\MacID\\BIN\\sample.jsx"); // a path to my java script file
    do
    const
    IDFile outFile(jsFullPath);InterfacePtr<IScriptManager> scriptManager(Utils<IScriptUtils>()->QueryScriptManager(kJavaScriptMgrBoss));
    ASSERT( scriptManager ) ;
    InterfacePtr<IScriptRunner> scriptRunner(scriptManager,UseDefaultIID());
    ASSERT( scriptRunner ) ;
    if
    (scriptManager){
    InterfacePtr<IScriptRunner>scriptRunner(scriptManager,UseDefaultIID());
    RunScriptParams params(scriptRunner);
    ErrorCode err = scriptRunner->RunFile(outFile, params);
    while(kFalse);
    I changed the "RunFile" arguments also
    RunScriptParams params(scriptRunner);
    ErrorCode err = scriptRunner->RunFile(outFile, params);
    But Still I'm facing the problem in InDesign CS4.  That's mean  "Adobe InDesign CS4" shout down for serious error happend.
    Please kindly help me, for solving this problem.
    Thanks & Regards
    T.R.Harihara Sudhan
    Message was edited by: Adobe-InDesign CS4

  • How to spool file to where start script file located

    I'm writing a sqlplus script, eg. runMe.sql, which is going to run in customer env, will generate some data files eg. result.csv.
    By specify location such as 'spool /certain/path/on/disk/result.csv', I can spool to any path I want. However, my concern is  below:
    1. We gets many customers and the script might be run under different location.
    2. I don't know where customer would save the script, furthermore, I don't want customer to input location manually every time.
    3. Generally, customer would run the script something like "sqlplus username/password@sid @/certain/path/on/disk/runMe.sql". They don't want to pass any parameter at run time.
    4. I wanna spool file to "/certain/path/on/disk" automatically, as a result, result.csv file would appear under same path with runMe.sql.
    5. I tried "spool ./result.csv" but it navigate to where sqlplus session is running.
    6. Also tried &0 etc, but make no sense.
    Can anyone tell me how to obtain start running script file path in sqlplus script(runMe.sql) ? Just like access command parameters under Linux.
    $0 is the name of the command
    $1 first parameter
    $2 second parameter
    $3 third parameter etc. etc
    $# total number of parameters
    $@ all the parameters will be listed
    Thanks in advance.

    Are you looking for SQLPATH ?
    A good and clear example by Paul @ https://forums.oracle.com/message/3727891
    In this way your customer has to set one environment variable SQLPATH=/location/of/script/file/where/they/put/your/runMe.sql and just say :
    spool %sqlpath%\result.csv
    in your runMe.sql.  So, runMe.sql and result.csv will be on SQLPATH location.
    Regards
    Girish Sharma

  • Script for Place PDF file into a InDesign file

    Hi everyone, i need to import a PDF file into a InDesign document and in order to do this i used scripts found over  the net (e.g. Zanelli's script ecc.) but i tried this solution:
    function(){
        app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
        var myDocument, myPage;
        if(app.documents.length != 0){
            myDocument = app.activeDocument;
        else{
            alert("No document opened");
            exit();
         if (app.selection[0] == undefined) {
            alert("Select box");
            exit();
         } else {
                var myPDFFile = File.openDialog("Select PDF:");
                if((myPDFFile != "")&&(myPDFFile != null)){
                    myDocument.viewPreferences.rulerOrigin = RulerOrigin.PAGE_ORIGIN;
                    myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.MILLIMETERS;
                    myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.MILLIMETERS;   
                    var myData = new Array;
                    myData[0] = app.selection[0].parentPage;
                    myData[1] = app.selection[0].geometricBounds;
                    myData[2] = app.selection[0];
                    myPlacePDF(myDocument, myData, myPDFFile);
        //FUNCTIONS
        function myPlacePDF(myDocument, myData, myPDFFile){
            var myPDFPage;
            var myPage = myData[0];
            var myGeometricBounds = myData[1].toString().split(",");
            app.pdfPlacePreferences.pdfCrop = PDFCrop.cropMedia;
            var myCounter = 1;
            var myBreak = false;
            while(myBreak == false){
                if(myCounter > 1){
                    myPage = myDocument.pages.add(LocationOptions.after, myPage);
                 app.pdfPlacePreferences.pageNumber = myCounter;
                 myRectangle = myPage.rectangles.add(undefined, undefined, undefined, {geometricBounds:[myGeometricBounds[0],myGeometricBounds[1],myGeometricBounds[2],myGeometricBounds[3]]});
                 myRectangle.clearFrameFittingOptions();  
                 myRectangle.frameFittingOptions.fittingOnEmptyFrame = EmptyFrameFittingOptions.PROPORTIONALLY;
                 myRectangle.frameFittingOptions.autoFit = true;
                 myRectangle.frameFittingOptions.fittingAlignment = AnchorPoint.CENTER_ANCHOR;
                 myPDFPage = myRectangle.place(File(myPDFFile), false)[0];           
                 if(myCounter == 1){
                    var myFirstPage = myPDFPage.pdfAttributes.pageNumber;
                else{
                    if(myPDFPage.pdfAttributes.pageNumber == myFirstPage){
                        myPage.remove();
                        myBreak = true;
                myCounter = myCounter + 1;
             myData[2].remove();  
    what i would is, before the script place every single page of PDF file in the document, determine if the same page of the Pdf file is vertical or horizontal, to make the right section for the page.
    Is it possible?
    Thank you

    Moved to scripting forum...

  • Couldn't create a postscript file for the devnagri script from indesign

    Hi,
    Couldn't create the postscript file for the indesign devnagri script. Its throughing error saying offending fonts.
    I have added a link where u can download the rar file which contains indesign file and required fonts.
    http://wikisend.com/download/278714/Devnagri Script.rar

    @Raghugada – I tested with your new font (no license restriction) and could print to PostScript and distill to PDF without problems. Something else is wrong on your side. Could you provide an IDML file instead of the inDesign file? I will test this as well.
    And: How do you print to PostScript?
    Do you do it with the right PPD? The "Adobe PDF 9.0" ? (PPD => PostScript Printer Description File)
    Do you do it with the right setting in the print dialog of InDesign?
    PostScript Level 3, binary, all fonts fully embedded?
    Here a screenshot of a sample PDF from Acrobat Pro with SHREE-DEV-7-0715 font:
    Uwe

  • Include current file location of document in InDesign

    Hi There,
    is it possible to include the current location of my file in my InDesign-document like it is in MS Word?
    Please don't ask me why I need that, I also find it stupid but it is a requirement a project work...
    I would be glad to read your answers!
    Thanks!

    There is a filename text variable that is available. If you go to Type > Text Variables > Define... you can select it, then hit the Edit Button and seelct the checkbox to include the full path. You might also want to give it a new name so you can have more than one if you need them.
    Variables can be inserted into text anywhere you want, but they won't break across lines, columns, or frames, so if there isn't enough space onthe line in which they appear the text will compress and stack up on itself into an unreadable mess.

  • MacBook Air, can I partition my Mac external drive to have an ISO image file location for Windows downloads?

    Hi, in preparation for installing bootcamp and windows 7, and in the absence of a DVD drive on my MacBook Air, can I partition my Mac external drive to have an ISO image file location for Windows downloads?

    The Boot Camp instructions are located here: http://www.apple.com/support/bootcamp/
    The Boot Camp Discussion Community is located here: https://discussions.apple.com/community/windows_software/boot_camp

  • Can't import Mac Photoshop 6.x.x/Mac Pagemaker 6-7 files into Windows Indesign CS2

    Do i need to rename the files.  Indesign does not recognize them as any format.  Yet they are pagemaker invoices (archaic mac version)...and adobe photoshop mac files (layouts, etc) have no extension.  what would the correct extension be...maybe if i change the extension it can see them, but not sure what they should be?
    many thanks

    If I remember correctly:
    Pagemaker 6 = .pm6
    Pagemaker 6.5 = .p65
    Pagemaker 7 = .pmd
    Now the Photoshop files are more tricky since PS can save in numerous different file formats.
    A regular Photoshop document would be .psd
    But you may have saved the files from Photoshop as:
    .tif  or .tiff
    .jpg or .jpeg
    .eps
    .pdf
    These are the most likely formats that were used back then.
    You may have to try several different extensions before a file will open.

  • Indesign Script for placing excel-file

    Hi all, I'm new to Indesign Scripting, and I'm hoping someone can help me with the following code:
    All I want to do is:
    open indesign file
    open excel file
    place excelfile as a table (with flow enabled)
    save document & export as PDF
    Thanks!
    //Define file to open
    var myDocumentFile = new File("/d/Projecten/Indesign Server/document.indd");
    //Define file to save
    //var mySaveFile = new File("/d/Projecten/Indesign Server/document_save.indd");
    //Define file to export
    var exportPDF = new File("/d/Projecten/Indesign Server/document_save.pdf");
    //Open xls-file to place as table
    var myExcelFile = new File ("/d/Projecten/Indesign Server/products.xls");
    var result = "";
    if(!myDocumentFile.exists) {
        result = "Unable to find DOCUMENT:  " + myDocumentFile.path;
        $.writeln(result);
        exit();
    } else if(!myExcelFile.exists) {
        result = "Unable to find EXCEL:  " + myDocumentFile.path;
        $.writeln(result);
        exit();
    } else {
        // Open file
        var myDocument = app.open(myDocumentFile);
        with(app.documents.item(0).pages.item(0)){
            myTarget = textFrames.item("tabel");
        var myPage = myDocument.pages.item(0);
        //Set excel placement properties
        setXLimportPrefs();
        // Place Excel file
           try {
                 $.writeln("Place Excel file");
                //HELP!! HOW TO PLACE EXCEL FILE?
                //myTextFrame.place(myFile);
            catch (e) {
                 $.writeln("Place Excel file "  + e + " " + app.excelImportPreferences.errorCode);
                myDocument.close();
                exit();
        if(!exportPDF.parent.exists && !exportPDF.parent.create()) {
            result = "Not exported.  Unable to create the folder:  " + exportPDF.parent.fullName;
            $.writeln(result);
        } else {
            app.documents.item(0).exportFile(ExportFormat.pdfType, exportPDF, app.pdfExportPresets.item("[Press Quality]"));
        myDocument.exportFile(ExportFormat.PDF_TYPE,exportPDF);
        myDocument.close();
    function setXLimportPrefs(){    $.writeln("setXLimportPrefs()");
            with(app.excelImportPreferences){
                //alignmentStyle property can be:
                //AlignmentStyleOptions.centerAlign
                //AlignmentStyleOptions.leftAlign
                //AlignmentStyleOptions.rightAlign
                //AlignmentStyleOptions.spreadsheet
                alignmentStyle = AlignmentStyleOptions.spreadsheet;
                decimalPlaces = 4;
                preserveGraphics = true;
                //Enter the range you want to import as "start cell:end cell".
                rangeName = "A1:B16";
                sheetIndex = 1;
                sheetName = "Appetizers";
                showHiddenCells = false;
                //tableFormatting property can be:
                //TableFormattingOptions.excelFormattedTable
                //TableFormattingOptions.excelUnformattedTabbedText
                //TableFormattingOptions.excelUnformattedTable
                tableFormatting = TableFormattingOptions.excelFormattedTable;
                useTypographersQuotes = true;
                viewName = "";
    result;

    "I just loaded a table into a text frame but it still contains nothing". I wonder how I'd check that, actually.
    @Jongware:
    To prevent this situation you could set the max. allowed cell height below your min. text frame height.
    If this is not applicable, because in some situations you cannot know the usable text frame height beforehand, you can iterate through all your set rows and check if the parentTextFrames[0].parentPage.name property of the first insertionPoint of its first cell is defined. If it's undefined and your last text frames parentPage.name is not equal to the last defined parentPage.name of your check your table will remain overset.
    Thinking about that method I must admit, that you can get a false positive, if a text wrap object on an applied master page comes into play…
    So no, I see no fail-safe check for this situation.
    Uwe

  • After installing Reader 11.0.07 update on my Mac OS X 10.8.5, when I open an Adobe pdf file I see Chinese script next to the blue loading bar at the bottom of the screen.  This never appeared before and I am concerned that my computer is being hacked into

    After installing Reader 11.0.07 update on my iMac OS X, v.10.8.5, when I open an Adobe pdf file I see Chinese script next to the blue loading bar at the bottom of the screen.  This never appeared before when downloading pdf files and I am worried that my computer is being hacked into or I acquired a virus.  Is this normal or do I have to uninstall this update?

    After installing Reader 11.0.07 update on my iMac OS X, v.10.8.5, when I open an Adobe pdf file I see Chinese script next to the blue loading bar at the bottom of the screen.  This never appeared before when downloading pdf files and I am worried that my computer is being hacked into or I acquired a virus.  Is this normal or do I have to uninstall this update?

Maybe you are looking for

  • Opening RAW photos in PSE 8

    I have recently bought PSE 8. When I had my Canon 350D I could use it to edit RAW photos. I have just bought a Canon 550D and PSE 8 cant open any RAW photos now for editing.

  • WAS/ UME session expiry concerns

    I have an application built using UME as its authorisation module. When we set the session timeout for WAS at 15 mins, if we leave our application idle and try to access any page after that time, we get this error: The Web Dynpro Application XXX has

  • Passing function parameters in a non-sequential fashon

    Consider the function below: function personal(Name:String,age:int,city:String):void    trace(Name+" is "+age+ " years old and lives in "+city+ ".") The parameters can only(???) be passed in the order they are declared in the function as shown below.

  • Please help is any way you can.

    Hi. I am getting so sick of this program. I have been trying to do it for the past couple of weeks and I am getting nowhere. I really wish someone can help me on it ... like totaly help me on it. I am getting so frustrated. I would appreciate all the

  • User Manual for RoboHelp?

    Does anyone know of any kind of user manual (authorized or no) for RoboHelp?