Scripting applications preferences in Indesign CS2

Hey folks, I'm attempting to set the cmsSettings preferences (current color management system) in Adobe InDesign CS2 using javascript but my code is not working. The script goes something like this:
#target InDesign
app.ColorSetting.cmsSettings="MyColorSettings";
This errors - ID says that it doesn't recognize the object called ColorSetting. Any assistance is appreciated.
Will

Check your documentation. The class name is ColorSettings; the property (name of the 'variable' inside a class) can have any name, such as "app.bob", "app.jack", or "app.colorSettings". It's sort of convention that these are written with lowercase, to let humans distinguish them easily from class names (which are, obviously, written using initial uppercase).

Similar Messages

  • I need this indesign cs3 script to run under Indesign cs2

    This is paragraph changes script which is run under indesign cs 3, I need this  script to run under my indesign cs 2, can anyone help me pls?. thank you  in advance
        Fixing paragraph style combinations
        Version: 1.1
        Script by Thomas Silkjær
        http://indesigning.net/
    var the_document = app.documents.item(0);
    // Create a list of paragraph styles
    var list_of_paragraph_styles = the_document.paragraphStyles.everyItem().name;
    // Make the dialog box for selecting the paragraph styles
    var the_dialog = app.dialogs.add({name:"Fix paragraph style pairs"});
    with(the_dialog.dialogColumns.add()){
        with(dialogRows.add()){
            staticTexts.add({staticLabel:"Find:"});
        with(borderPanels.add()){
            var find_first_paragraph = dropdowns.add({stringList:list_of_paragraph_styles, selectedIndex:0});
            staticTexts.add({staticLabel:"followed by"});
            var find_second_paragraph = dropdowns.add({stringList:list_of_paragraph_styles, selectedIndex:0});
        with(dialogRows.add()){
            staticTexts.add({staticLabel:"Change:"});
        with(borderPanels.add()){
            var change_first_paragraph = dropdowns.add({stringList:list_of_paragraph_styles, selectedIndex:0});
            staticTexts.add({staticLabel:"followed by"});
            var change_second_paragraph = dropdowns.add({stringList:list_of_paragraph_styles, selectedIndex:0});
    the_dialog.show();
    // Define paragraph styles
    var find_first_paragraph = the_document.paragraphStyles.item(find_first_paragraph.selectedIndex);
    var find_second_paragraph = the_document.paragraphStyles.item(find_second_paragraph.selectedIndex);
    var change_first_paragraph = the_document.paragraphStyles.item(change_first_paragraph.selectedIndex);
    var change_second_paragraph = the_document.paragraphStyles.item(change_second_paragraph.selectedIndex);
    // Set find grep preferences to find all paragraphs with the first selected paragraph style
    app.findChangeGrepOptions.includeFootnotes = false;
    app.findChangeGrepOptions.includeHiddenLayers = false;
    app.findChangeGrepOptions.includeLockedLayersForFind = false;
    app.findChangeGrepOptions.includeLockedStoriesForFind = false;
    app.findChangeGrepOptions.includeMasterPages = false;
    app.findGrepPreferences = NothingEnum.nothing;
    app.findGrepPreferences.appliedParagraphStyle = find_first_paragraph;
    app.findGrepPreferences.findWhat = "^";
    //Search the current story
    var the_story = app.selection[0].parentStory;
    var found_paragraphs = the_story.findGrep();
    var change_first_list = [];
    var change_second_list = [];
    // Loop through the paragraphs and create a list of words and mark them as index words
    myCounter = 0;
    do {
        try {
            // Create an object reference to the found paragraph and the next
            var first_paragraph = found_paragraphs[myCounter].paragraphs.firstItem();
            var next_paragraph = first_paragraph.paragraphs[-1].insertionPoints[-1].paragraphs[0];
            // Check if the next paragraph is equal to the find_second_paragraph
            if(next_paragraph.appliedParagraphStyle == find_second_paragraph) {
                    change_first_list.push(first_paragraph);
                    change_second_list.push(next_paragraph);
        } catch(err) {}
        myCounter++;
    } while (myCounter < found_paragraphs.length);
    // Apply paragraph styles
    myCounter = 0;
    do {
        change_first_list[myCounter].appliedParagraphStyle = change_first_paragraph;
        change_second_list[myCounter].appliedParagraphStyle = change_second_paragraph;
        myCounter++;
    } while (myCounter < change_first_list.length);
    alert("Done fixing pairs!");

    CS2 didn't support grep searches so you're going to have to do some serious reworking of the script. It's not a flick of the wrists.
    Dave

  • Indesign CS2 "selection to new document" script?

    Hi, just changing over to Indesign CS2 (i know! should be cs5 soon apparently), and noticed the scripting seems to be quite powerful with this software, i dont suppose anybody has created a script that would paste the currently selected object into a new document?  Would be handy when we're making templates for a self-build system to make it all on one document, then paste the various size boxes onto new documents ready to configure and upload!

    Alison, you just have a minor omission… You have not declared your object to dupe… This worked with a little tweek…
    --make a new document from selection
    tell application "Adobe InDesign CS5"
    set mySelection to selection
    if (count of mySelection) = 0 then
    display dialog "Nothing selected." & return & ¬
    "Select something and then run the script." buttons {"OK"} cancel button {"OK"}
    end if
    set openDoc to document 1
    tell openDoc
    --make group in order to get width/height of selection
    if (count of mySelection) > 1 then
    set myItem to make group with properties ¬
    {group itemsmySelection)}
    else
    set myItem to item 1 of selection
    end if
    set theBounds to geometric bounds of myItem
    set theHeight to (item 3 of theBounds) - (item 1 of theBounds)
    set theWidth to (item 4 of theBounds) - (item 2 of theBounds)
    end tell
    --make new document sized to the width/height of the selection
    set myDoc to make new document with properties ¬
    {document preferences:{page width:theWidth, page height:theHeight}}
    --duplicate selection to new document
    tell openDoc
    set myDupe to duplicate myItem to page 1 of myDoc
    --undo the grouping so selection is unchanged
    undo
    end tell
    --re-posistion in new size doc
    tell myDoc
    move myDupe to {0, 0}
    end tell
    end tell
    Sorry I've forgotten where you turn off the Emoticons… dammed : + (

  • Script exe for indesign cs2 is possible?

         i wrote a javascript for indesign cs2 application, user move that to script folder and run it.
    sometimes they edit the script for their own, it makes some problem.
    is it possible to make the script in exe format.
    by using Extend toolkit2 if i make it as binary format indesign cs3 accepts it, but the script not view in cs2 palette...
    how to solve it?
    thanks
    subha

    the scripts for Indesign can be exported as a binary format using the ExtendScript toolKit..
    This might prevent users from modifying them.
    However this jsxbin format can only be used in CS3 and CS4.
    Mayb u may consider upgrading to CS3 / CS4..
    hope this helps..

  • How to place a word document in a TextFrame with InDesign CS2 scripting (JavaScript)?

    I´m newbie with InDesign CS2 Scripting (JavaScript). I need some help to understand the way to place a Word document in an indesign template, using JavaScript(.jsx).
    Thank you for the help,
    Peter

    //PlaceTextFileInFrame.jsx
    //An InDesign CS3 JavaScript
    //Places a text file in a text frame.
    var myDocument = app.documents.add();
    //Set the measurement units to points.
    myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
    myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;
    //Create a text frame.
    var myTextFrame = myDocument.pages.item(0).textFrames.add({geometricBounds:myGetBounds(myDocument, myDocument.pages.item(0))});
    //Place a text file in the text frame.
    //Parameters for TextFrame.place():
    //File as File object,
    //[ShowingOptions as Boolean = False]
    //You'll have to fill in your own file path.
    myTextFrame.place(File("/c/test.txt"));
    function myGetBounds(myDocument, myPage){
    var myPageWidth = myDocument.documentPreferences.pageWidth;
    var myPageHeight = myDocument.documentPreferences.pageHeight
    if(myPage.side == PageSideOptions.leftHand){
    var myX2 = myPage.marginPreferences.left;
    var myX1 = myPage.marginPreferences.right;
    else{
    var myX1 = myPage.marginPreferences.left;
    var myX2 = myPage.marginPreferences.right;
    var myY1 = myPage.marginPreferences.top;
    var myX2 = myPageWidth - myX2;
    var myY2 = myPageHeight - myPage.marginPreferences.bottom;
    return [myY1, myX1, myY2, myX2];

  • Failure to fully export pdf from InDesign CS2 (application unexpectedly quits)

    I found a TechNote detailing such an issue when you save or export a PDF after the Adobe application has been left idle for several days. However, when I tried both suggested solutions, I was unable to fix the problem. Some say it may be that I have a corrupt file, but the file saves normally and shows no signs of error.
    When I try to export a file as a PDF file from InDesign CS2, I don't get an error message when I save the file. I only receive an error message when I try to open the resulting PDF file which has not been fully processed.
    The error message I see is as follows:
    * Exporting a PDF file from InDesign CS2: The file appears to save without error, but when I open the file with Acrobat I see the error "Acrobat could not open '[file name]' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded). To create an Adobe PDF document, go to the source application. Then print the document to Adobe PDF."
    Thus, I tried solution 1: upgrading my Mac to Mac OS X v10.5. That didn't work.
    Then I tried solution 2: save the file, and then restart the application. That also did not work.
    The TechNote goes into further detail, explaining:
    "When you save or export PDF files from Photoshop CS2, Acrobat 7, Illustrator CS2, or InDesign CS2, the application must reference the TemporaryItems file located in /tmp/501. Prior to Mac OS X.v10.4, Mac OS X regularly deleted files in the /tmp folder that had not been used or modified within a certain period (approximately two or three days). If an Adobe application is running but unused for several days, Mac OS X prior to version v10.4, would delete the TemporaryItems file. When you save or export a file as PDF, the Adobe application attempts to reference the no-longer existing TemporaryItems file which results in errors or faulty PDF creation.
    When you restarting the Adobe application and then save or export a PDF, the application rebuilds the TemporaryItems file."
    Does anyone have any other suggestions for a solution to my query?

    Similar to you, I've just posted the following in the InDesign section:
    Problems writing pdf from InDesign CS2
    Hello everyone, I've just gone and bought myself a new 2.4ghz iMac and done all of the updates for Tiger so I'm now running 10.4.11. InDesign CS2 is version 4.0.5.
    I have a simple A4 document with 3 placed images which is an updated version of many done previously. I've never had any trouble writing pdf's from them before until tonight on my new Mac. It seems to get about half way through and InDesign quits.
    If I print to a pdf file then it's okay, but a bit long winded when you get used to exporting from InDesign.
    Any ideas?
    Thanks
    Trev

  • How to call javascript using applescript in InDesign cs2 Mac

    Hi,
    I need to integrate javascript with my apple script??? how to use it???please help me...i need it immediately..........

    Hi Andrew,
    Here is an example for you – a snippet from my script:
    global myBridgeLabel
    -- function that runs on clicking the button in adobe script studio project
    on clicked theObject
    if name of theObject is "b1" then
    set processName to "Started working"
    set myBridgeLabel to "Red"
    set myLabel to 1
    else if name of theObject is "b2" then
    set processName to "Started doing this"
    set myBridgeLabel to "Green"
    set myLabel to 2
    else if name of theObject is "b3" then
    set processName to "Started doing that"
    set myBridgeLabel to "Yellow"
    set myLabel to 3
    else if name of theObject is "b4" then
    set processName to "Finished doing this"
    set myBridgeLabel to "Blue"
    set myLabel to 4
    else if name of theObject is "b5" then
    set processName to "Finished doing that"
    set myBridgeLabel to "Purple"
    set myLabel to 5
    end if
    tell application "Adobe InDesign CS2"
    set mydocument to active document
    set myDocumentPath to full name of mydocument
    set workerName to "Kasyan"
    tell metadata preferences of mydocument
    set theDate to current date
    set myWeekday to weekday of theDate as string
    set myDenNedeli to my convertWeekday(myWeekday)
    set myRecord to (processName & " – " & workerName & " – ") & myDenNedeli & " " & text 1 thru -4 of time string of theDate & " \r"
    set myHistory to get property namespace "http://ns.adobe.com/photoshop/1.0/" path "History"
    set property namespace "http://ns.adobe.com/photoshop/1.0/" path "History" value myHistory & myRecord
    end tell
    set myJavaScript to "var myLabel =\"" & myBridgeLabel & "\"; app.activate(); var bt = new BridgeTalk; bt.target = \"bridge\"; myScript = 'app.displayDialogs = \"none\"; var t = new Thumbnail (File (\"" & myDocumentPath & "\")); var mdata = t.metadata; mdata.namespace = \"http://ns.adobe.com/xap/1.0/\"; mdata.Label = \"' + myLabel + '\";'; bt.body = myScript; bt.send();"
    do script myJavaScript language javascript
    In this javascript I use pares of single and double quotes.
    The main java script – myJavaScript – (inside double quotes) contains another java script – myScript – (inside single quotes) which runs in Bridge via BridgeTalk.
    I also put variables from AppleScript into JavaScript by using two pares of double quotes – the outside pare I escape with slashes:
    set myBridgeLabel to "Red" -- a variable I defined in AppleScript
    set myJavaScript to "var myLabel =\"" & myBridgeLabel & "\"; app.activate();
    -- the contents of myBridgeLabel variable now becomes part of the JavaScript
    Kasyan

  • Suddenly getting "Missing Plug-Ins" errors when opening .indd files in InDesign CS2

    I have a PC running Windows 7 and InDesign CS2. The laptop's installation of Windows was corrupted and I had to re-install the OS. I backed up all files, reinstalled the OS, and then reinstalled applications. One of those applications was InDesign CS2. However, after the installation of CS2 on the fresh copy of Windows, I noticed that I have trouble opening most, but not all, of the InDesign files on my hard drive.
    When I try to open a .indd file I see an error message pop up that says "Missing Plug-ins. LILO.APLN, DYNAMICDOCUMENTS.RPLN, CONDITIONALTEXT.RPLN" and three more. Under that list of missing plugins is the warning "This document uses one or more plug-ins which are not currently available on your system. Do you want to open anyway?"  If I click "okay" I then am met with another dialog box that says "Cannot open file. TEXT.RPLN, LAYER.RPLN" and on and on for about 60 more items.
    I KNOW WHAT YOU'RE THINKING! I've searched around concerning this issue and it appears the consensus is that the file was opened by a newer version of InDesign. That possibility is, in fact, an impossibility. Never have I used a newer version of InDesign. The files that I am working on were backed up, stored on local storage and not touched once before reinstalling the OS and reinstalling InDesign CS2.
    I also noticed that not all InDesign file formats were associated with InDesign in "Windows Programs and Defaults." I changed those to look to InDesign. I've also uninstalled InDesign CS2 and re-installed.
    Not all InDesign CS2 files are exhibiting this behavior. So far, it appears more than half are, but some can be opened with no problems. There seems to be no correlation between which ones are able to be opened and which ones can't be opened.
    What could have happened to these files and is there any possibility of opened them again? Any guidance is greatly appreciated.

    [Jongware] wrote:
    Nonapeptide wrote:
    ...  an error message pop up that says "Missing Plug-ins. LILO.APLN, DYNAMICDOCUMENTS.RPLN, CONDITIONALTEXT.RPLN" and three more. ... 
    I KNOW WHAT YOU'RE THINKING! I've searched around concerning this issue and it appears the consensus is that the file was opened by a newer version of InDesign. That possibility is, in fact, an impossibility.
    Conditional Text was a new feature in CS4. I'm thinking, can you explain how your old CS2 documents became aware of it?
    Not exactly sure myself. Abiogenesis?
    [Edit]
    Almost forgot. I wrote a script to unequivocally determine the InDesign version a document was last saved as:
    http://forums.adobe.com/message/4071273
    I'll give that a try today. Even an affirmative judgement that the files are newer than CS2 would not impress me however. The fact remains, the files were copied off one hard drive over to another, the plug was pulled on the hard drive, the PC was re-imaged, CS2 was reinstalled, the files were copied back over... and whammo.

  • Call JavaScript from AppleScript using InDesign CS2

    Can this be done?
    The following script:
    tell application "Adobe InDesign CS2"
    tell active document
    do script "var thisNumber = 5;" language javascript
    end tell
    end tell
    results in the error:
    tell application "Adobe InDesign CS2"
    do script "var thisNumber = 5;" language javascript
    "Adobe InDesign CS2 got an error: \"var thisNumber = 5;\" doesnt understand the do script message."
    Why doesn't this work and what can I do to fix it?
    William

    On 4/12/08 5:41 AM, "Olav Kvern" <[email protected]> wrote:<br /><br />> These sorts of things are hard to see in AppleScript, because the dictionary<br />> browser(s) don't group methods with their parent objects. Sal Soghoian at<br />> Apple has long said that this needs fixing.<br /><br />And in fact it has been fixed -- it just needs app developers to write their<br />dictionaries appropriately. For a good example, have a look at the<br />dictionary of Script Debugger 4.5 -- you'll see classes listed with<br />elements, properties, and "Responds to". And none of that truncation ID's<br />dictionary is full of.<br /><br />-- <br />Shane Stanley <[email protected]><br />AppleScript Pro Florida, April 2009 <a href=http://scriptingmatters.com/aspro>

  • InDesign CS2 'Unlock' greyed out ?

    I am using CS2 (v4.0.5/WinXP SP3) and wish to replace some .AI/.PDF objects with newer versions in an InDesign document that is a couple of years' old.
    I recall locking the objects, but find that the 'Unlock Position' option on the Object menu is greyed out (when the .AI/.PDF objects are selected). NB These are not on a master page, nor is the layer locked.
    Any suggestions to recover 'lock/unlock' feature would be much appreciated.
    Regards,
    Dave.

    Replacing your preferences:<br /><br />Fast way, which causes you to lose any customizations if it turns out not to be the problem is to hold down Ctrl + Alt + Shift, and while holding the keys down launch InDesign from the start menu or by right-clicking a desktop shortcut and selecting open (it won't work if you you hold the keys down before double-clicking a shortcut, but you can press them IMMEDIATELY after launching InDesign) and saying yes to the dialog asking if you want to delete your preferences. If you don't see the dialog, you weren't fast enough with the keyboard or you didn't hold the keys down long enough. <br /><br />My preferred method, which saves your old prefs in case you want them back, is to close ID, open Explorer and make sure you are set to show hidden and system files, then navigate to (for CS and CS2) C:\Documents and Settings\<User Name>\Application Data\Adobe\InDesign\Version [no.] and rename the two preference files: InDesign Defaults and InDesign SavedData. In CS3 the SavedData file has been moved to \Documents and Settings\<User Name>\Local Settings\Application Data\Adobe\InDesign\Version 5.0\Caches. The preferences will be replaced with a fresh set of factory defaults when you relaunch ID, but if that doesn't solve your problem you can always go back to explorer and throw out the new set and name the old ones back again, restoring any customizations. If new prefs solve your problem you should delete the renamed files.<br /><br />It's a good idea to also export any custom document and printer presets from the appropriate Preset > Define dialog prior to doing a preference replacement. Then you can just go back to the dialog and select load and you won't have to recreate all those wonderful things you've made and saved, and that will be wiped out with the old prefs files.<br /><br />Once you have a customized set of preferences which work, make a copy and store it somewhere on your system for easy retrieval and you can simply replace the two files with your good copies when things get funny.

  • Find & Replace the text and apply paragraph style in indesign CS2.

    Hai below script are working in cs4 - cs5.5. i need to run the script in indesign cs2.
    can you please help.
    Main();
    function Main() {
        var foundItem;  
        var doc = app.activeDocument;
        //app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
    app.findTextPreferences.findWhat = "^p";
           //app.findTextPreferences.appliedParagraphStyle = "head";
        var foundItems = doc.findText();
        for (var i = 0; i < foundItems.length; i++) {
            foundItem = foundItems[i];
            foundItem.applyParagraphStyle(doc.paragraphStyles.item("content body indent"), false);
         app.findGrepPreferences = app.changeGrepPreferences = NothingEnum.NOTHING;
         var myDocument = app.activeDocument;
    //Clear the find/change text preferences.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    //Set the find options.
    app.findChangeTextOptions.caseSensitive = false;
    app.findChangeTextOptions.includeFootnotes = false;
    app.findChangeTextOptions.includeHiddenLayers = false;
    app.findChangeTextOptions.includeLockedLayersForFind = false;
    app.findChangeTextOptions.includeLockedStoriesForFind = false;
    app.findChangeTextOptions.includeMasterPages = false;
    app.findChangeTextOptions.wholeWord = false;
    //Search the document for the string "copy" and change it to "text".
    app.findTextPreferences.findWhat = "^p";
    app.changeTextPreferences.changeTo = "^p";
    myDocument.changeText();
    //Clear the find/change text preferences after the search.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    abc();
    function abc() {
        var foundItem;  
        var doc = app.activeDocument;
        //app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
    app.findTextPreferences.findWhat = "*";
           //app.findTextPreferences.appliedParagraphStyle = "head";
        var foundItems = doc.findText();
        for (var i = 0; i < foundItems.length; i++) {
            foundItem = foundItems[i];
            foundItem.applyParagraphStyle(doc.paragraphStyles.item("RealEstate"), false);
         app.findGrepPreferences = app.changeGrepPreferences = NothingEnum.NOTHING;
         var myDocument = app.activeDocument;
    //Clear the find/change text preferences.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    //Set the find options.
    app.findChangeTextOptions.caseSensitive = false;
    app.findChangeTextOptions.includeFootnotes = false;
    app.findChangeTextOptions.includeHiddenLayers = false;
    app.findChangeTextOptions.includeLockedLayersForFind = false;
    app.findChangeTextOptions.includeLockedStoriesForFind = false;
    app.findChangeTextOptions.includeMasterPages = false;
    app.findChangeTextOptions.wholeWord = false;
    //Search the document for the string "copy" and change it to "text".
    app.findTextPreferences.findWhat = "*";
    app.changeTextPreferences.changeTo = "";
    myDocument.changeText();
    //Clear the find/change text preferences after the search.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    ab();
    function ab () {
        var foundItem;  
        var doc = app.activeDocument;
        app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
        app.findTextPreferences.findWhat = " ^ ";
    app.changeTextPreferences.changeTo = " ";  
        //app.findTextPreferences.appliedParagraphStyle = "head";
        var foundItems = doc.findText();
        for (var i = 0; i < foundItems.length; i++) {
            foundItem = foundItems[i];
            foundItem.applyParagraphStyle(doc.paragraphStyles.item("day"), false);
        app.findGrepPreferences = app.changeGrepPreferences = NothingEnum.NOTHING;
         var myDocument = app.activeDocument;
    //Clear the find/change text preferences.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;
    //Set the find options.
    app.findChangeTextOptions.caseSensitive = false;
    app.findChangeTextOptions.includeFootnotes = false;
    app.findChangeTextOptions.includeHiddenLayers = false;
    app.findChangeTextOptions.includeLockedLayersForFind = false;
    app.findChangeTextOptions.includeLockedStoriesForFind = false;
    app.findChangeTextOptions.includeMasterPages = false;
    app.findChangeTextOptions.wholeWord = false;
    //Search the document for the string "copy" and change it to "text".
    app.findTextPreferences.findWhat = "^";
    app.changeTextPreferences.changeTo = "";
    myDocument.changeText();
    //Clear the find/change text preferences after the search.
    app.findTextPreferences = NothingEnum.nothing;
    app.changeTextPreferences = NothingEnum.nothing;

    @s_ashok – you'll find the right methods and properties in the CHM file for InDesign CS2 at:
    http://www.jongware.com/idjshelp.html
    Just a few hints:
    InDesign CS2 does not support GREP search/replace, so every line in your code that points to GREP does not work.
    Further: "app.findTextPreferences" and "app.changeTextPreferences" were "app.findPreferences" and "app.changePreferences" in InDesign CS2. And then there were no "findChangeTextOptions" or any counterpart for that in CS2…
    That should get you running…
    I have no InDesign CS2 installed to debug, so this is all I can say…
    Uwe

  • Uninstall InDesign CS2

    Hi
    Can anyone please advise as to how manually uninstall InDesign CS2 and Version Cue CS2 on a mac? Adobe help gives instruction to uninstall Creative Suite CS2 wholesale in this link:
    Manually remove Adobe Creative Suite (2.x on Mac OS X)
    and gives a huge list of files to remove, like throwing the baby out with the bathwater. How does one determine which files are required to keep for other things, like stuff for later CS versions?
    Any suggestions would be most gratefully received.
    Many thanks.

    I didn't say that the document is incorrect. But it seems to instruct you how to delete the whole CS2 suite and in particular the sub files/folders relating to the suite. The only note it gives regarding these sub files/folders is that anything with an asterisk next to the folder in the list might be required by other applications, and it only pertains to the Application Support in the User's Library and the Application Support in Library. There is also reminder to keep an eye on fonts required.
    However, if you want to keep, say, CS2 Illustrator, but not CS2 InDesign, how do you determine which of the sub files/folders the document lists to trash are necessary to keep for that individual program's requirement? For instance, I assume (even if wrongly) that some of the files such as Application/Adobe Help Centre, Application/Utilities/Adobe Utilities and other cache and preference folders are still required to run CS2 Illustrator.
    It might be a very straight forward albeit methodical task to go through dumping folders and files listed, but I'm just being very cautious in finding out earlier rather than later, what NOT to throw away in case it may cause problems once the files are dumped. I don't mean to cause offense!

  • InDesign CS2 won't open: error msg states "Please install the MetaData plug-in and restart"

    I'm unable to open my InDesign CS2 program, and am wondering if anyone has any suggestions for me. When I try to open it, I get an error message stating: "Cannot load Adobe InDesign CS2 because it requires MetaData. Please install the MetaData plug-in and restart Adobe InDesign."
    It worked just fine last week - I have no idea what happened this week... (other than my 3-yr-old 'playing' with my computer...) I am able to open other CS2 programs like Illustrator and Photoshop. Any ideas for me??

    Try trashing your preferences: Hold down Shift + Control + Option + Command immediately after launch. You'll get a dialog asking if you want to delete your preferences. If no dialog comes up you didn't do it fast enough.

  • Illustrator CS2 and InDesign CS2 not starting - here is how it was solved.

    This document is merely a compilation of information found at the sources named at the bottom of this document.
    Basically running older Adobe CS2 Software on a MacBook Pro 10.6.x Snow Leopard - probably like many of you that either can't afford the upgrade to CS3, CS4 or CS5, or maybe don't see the need to do so.  It's running good but it is slow since it is using Rosetta, but it does work - well, used to work.
    Illustrator CS2, InDesign CS2, Photoshop CS2, etc. were all running fine after the upgrade to Snow Leopard (under 10.6, 10.6.1 and 10.6.2).  Then the update to 10.6.3 was installed.  At the same time a bunch of other updates - including the Acrobat 8.2 update - were installed.  Not really sure what did it, but all of a sudden Illustrator CS2 stopped responding at the start up screen - no longer started up and InDesign CS2 popped the registration/licensing screen.  When trying to enter license info on first key press the application quit entirely.
    So maybe the 10.6.3 update was the culprit.  Never even thought that it could be the Acrobat 8.2/8.2.1 updates.  Then I found this thread here:
    http://forums.adobe.com/thread/613287?tstart=0 (good reading)
    Which ultimately pointed me the the instructions here:
    >start quote from http://kb2.adobe.com/cps/534/cpsid_53468.html
    Replace the corresponding files present in the “ /Library/Application Support/Adobe/TypeSpt/Unicode/Mappings/” folder with the one attached to this document.
    Download the attached Mac.dmg (http://kb2.adobe.com/cps/534/cpsid_53468/attachments/Mac.dmg) file to a machine where the issue is seen.
    Close all Adobe applications
    Double Click the Mac.dmg file to mount it.
    Copy Mac folder from mounted image. Paste it to /Library/ApplicationSupport/Adobe/TypeSpt/Unicode/Mappings/.
    A message appears to confirm to replace the existing 'Mac' folder. Replace the 'Mac' folder.
    Launch Illustrator or InDesign CS or CS 2.
    The Mac folder attached to this KB document already has the correct permissions set, so it should not be necessary to complete the steps below. However there may be cases where the permissions for the Mac folder get overwritten. In such a case, the original issue can reoccur. To solve this issue, complete the steps below:
    Follow Solution 1 and make sure that all Adobe applications are closed.
    Right or Control click and select 'Get Info' on the Mac folder  in “ /Library/Application Support/Adobe/TypeSpt/Unicode/Mappings/”, which you have copied from the .dmg file attached to this document.
    Verify that under 'Sharing and Permissions' all users listed have no write access
    If a change is required, click the padlock symbol and provide your Administrator credentials
    Select the user which has Write access and change it to 'Read Only'.
    Ensure the user 'Everyone' is set to 'No Access.
    To check if the issue has been solved, launch Acrobat 8.2 and then Illustrator or InDesign CS or CS 2.
    < end quote
    Even after following the instructions still "no love" from Illustrator CS2 or InDesign CS2.  InDesign did no longer show the registration screen, but it didn't continue launching, and Illustrator progressed further along in the start up sequence but also never finished launching.
    Then I found another article on the adobe site.  I am just quoting the part performed  and which ultimately did the trick.
    >start quote from http://kb2.adobe.com/cps/326/326388.html
    Steps 1 and 2 are not relevant so no need to do them
    3. At the Finder, choose File > Find.
    4. TypeAdobeFnt10.lst (Illustrator CS2), select the system drive, and then press Return.
    5. Delete all AdobeFnt10.lst files found.
    6. Restart the computer.
    7. Restart Illustrator. Illustrator creates a new Adobefnt10.lst or AdobeFnt07.lst file.
    < end quote
    So, this solved the problems at least for the time being.  Hope this helps someone else a bit.
    Download files:
    http://kb2.adobe.com/cps/534/cpsid_53468/attachments/Mac.dmg
    Sources:
    http://forums.adobe.com/thread/613287?tstart=0
    http://kb2.adobe.com/cps/534/cpsid_53468.html
    http://kb2.adobe.com/cps/326/326388.html

    Illustrator CS2 stopped working for me on Snow Leopard as well. What it all boiled down to was not to update to 12.0.1. Not sure which release of Snow Leopard I was on when I figured that out but I keep up-to-date, am now at 10.6.6 and CS2 still works fine. I keep getting prompted to update to 12.0.1 from time to time but just cancel it.
    I'm fairly sure I was at 12.0.1 already when I moved from Leopard to Snow Leopard and it was that, not a Snow Leopard update, that "broke" CS2 12.0.1. If I remember correctly, if you now try to apply the update, it won't go through with it anyway.

  • Error message reads, " Wizard Interuppted before InDesign CS2 was comletely installed" when removing

    Adobe Tech Support no longer supports CS2 since the release of CS4 and has referred me to knowledgebase and the forum for help.
    This is my original problem:
    When you try to start Adobe InDesign CS2, or Adobe InCopy CS2, the application returns one of the following error messages:
    -- "Could not personalize your copy of [application] because of missing or invalid personalization information."
    -- "Please personalize your copy of [application] to continue the setup process."
    -- "The serial number you provided is not valid. Please check your serial number and re-enter it"
    I was referred to:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=331649
    The instructions for all methods require that I remove InDesign, but I get an error message that says "Wizard Interuppted before InDesign CS2 was completely installed" when removing.
    My OS is Windows XP. Any help is highly appreciated.
    Thank you!

    Step one is to back up your computer in case anything goes wrong.
    Once you've done that, look at http://kb.adobe.com/selfservice/viewContent.do?externalId=331300 which lists all the folder locations for the creative suite along with the registry keys. It says you should uninstall using ad/remove, but if this doesn't work it should be OK to remove things manually and edit the registry, then run the Windows Installer Cleanup Utility.
    At that point you should reboot and you should be able to try installing again.

Maybe you are looking for

  • Linq2sql Connection string for crystal report. Report requires logon

    If I take out the connection string info the report runs fine from my machine but any other user it asks for logon information so I am trying to add the connection info. The line that is not compiling is `cr1.SetDatabaseLogon(connection, cr1);` What

  • What type of firewire cable for 2006 iMac?

    I asked at Best Buy and they gave me 4pin, didn't work. I looked online and got 9 pin, it fits the MBPro we're trying to connect the iMac to but not the iMac. So I know I need a 9pin for the MBPro but what should the other end be? Everything I saw on

  • Config to email using output determination

    Hi, I'm trying to set up output determination that will email a PDF of the invoice at the time of invoice creation.  I've created a communication strategy with a single entry for communication method "INT" for email.  I added an entry for simple mail

  • Jolt and wtc support double byte character??

    hi all, the wtc couldn't support double byte character while passing data from weblogic 7 to tuxedo 8. so, can jolt do it?? say passing double type character. your quick response would be appreciable! sang

  • I can't download iTunes 7

    I got this card to download the first episode of the new show Heroes and in order to download it, I have to have the newest version of iTunes. No problem, I don't care if I have it or not. For some odd reason, my computer won't show me the link to do