I can't open illustrator 10 on Vista

Hi,
I'm having some trouble opening illustrator 10 on vista. Everytime I try to open it, I  get a pop up window about the color scheme not being
Compatiable .I was wondering can anyone help me out?

The color scheme warning is not related to AI itself. It's a system warning. To turn it off, find the Illustrator.exe (should be C:\ProgramFiles\Adobe\Adobe Illustrator 10), right-click, choose Properties and modify the Compatibility options.
Mylenium

Similar Messages

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

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

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

  • Can't open illustration. cs4(eng)--- cc(eng)

    The AI files that I made with illustrator cs4(english ver.) is not open after I upgrade to Illustrator cc(english ver.) the file is totally broken.
    ( error message : can't open illustration )
    So I uninstall CC and reinstall to CC(korean ver.) . Then all files are open.
    what is the problem..... I used to work with english ver. so korean ver. is uneasy. ( translation is so weird !!!)
    clearly!
    cs4(eng.)------->cc(eng) ------>X (can't open illustration)
    cs4(eng.)------->cc(korean.)--------> O
    I want to work wit english version!
    please help me.!

    iag,
    You may start looking at recovery methods as the ones described in these links (although the cases dealt with differ form yours, you may do something similar):
    http://helpx.adobe.com/illustrator/kb/troubleshoot-damaged-illustrator-files.html
    http://helpx.adobe.com/illustrator/kb/opening-illustrator-file-get-error.html
    http://helpx.adobe.com/illustrator/kb/enable-content-recovery-mode-illustrator.html
    http://daxxter.wordpress.com/2009/04/16/how-to-recover-a-corrupted-illustrator-ai-file/
    It is difficult work, but it may be worth it.
    Working with the code, one specific way is to create a new empty document and create some very simple artwork in a copy of it (to see where the actual contents go), then move code from the corrupt file into the empty document and see what may be recovered that way.
    Hopefully, this will appear less woolly once you start on it.
    Edit: almost an hour after midnight here so I have to attend to other duties. The very best of luck.

  • Can't open illustration. This illustration contains an illegal operand

    I opened a file i was working on for some days now, and i got this MSG??
    Can’t open illustration. This illustration contains an illegal operand.
    ((( /Real (xmlnode-nodevalue) ,
    %_(width) /String (xmlnode-nodename) ,
    %_; (width) ,
    %_/XMLNode :
    %_/Dictionary :
    %_; (xmlnode-attributes) ,
    %_/Array :
    %_; (xmlnode-children) ,
    %_2 /Int (xmlnode-nodetype) ,
    %_32262.3633 /Real (xmlnode-nodevalue) ,
    %_(hei %0JG1> 1b^UA3&!$E2)
    ANY HELP PLZ
    I use illustrator CS6
    OSX 10.9.1

    n.zeineddine,
    The message means that the file has been corrupted.
    Unless someone recognizes the actual error in the code, it may be difficult.
    One firct thing to try is to create a new document and File>Place the corrupt file in it, if possible, and see how much artwork is rescued that simple way.
    Or you could go the longer way of rebuilding, if possible.
    There are some instructions to follow,
    http://daxxter.wordpress.com/2009/04/16/how-to-recover-a-corrupted-illustrator-ai-file/
    http://kb2.adobe.com/cps/500/cpsid_50031.html
    http://kb2.adobe.com/cps/500/cpsid_50032.html
    http://helpx.adobe.com/illustrator/kb/troubleshoot-damaged-illustrator-files.html
    You you can try/buy a ready made solution,
    http://www.recoverytoolbox.com/buy_illustrator.html
    http://markzware.com/adobe-software/fix-illustrator-file-unknown-error-occurred-pdf2dtp-fi le-recovery/

  • Can't open illustration

    I have a file I have been working on for a good part of the day. 12+ hours.
    Saving it religously throughout the process. Opening and closing the file with no issues.
    At the end of the day I saved and closed out of Illustrator cs5. Life was good.
    I had to reopen the file a few minutes later, and BAM!..." a small indiscriminate dialog pops up...
    "Can't open the illustration"
    Unfortunetly the file was not saved with PDF compatability, so I cannot attempt to Place it into a new file.
    I did not save progressive separate files during the process. <I could just kick myself>
    I found a way to open the file in a recover mode and open in in a text editor, but I could not decipher what was the issue within the _filename.ai file.
    I purchased 'Recovery Toolbox for Illustrator' out of desparation. It was not able to fix the file.
    Any other ideas out there?
    I really do not want to throw 12 hours out the window.
    humbly,
    Robert Good

    I have attempted to place within another file. It brings in several object with text stating
    Saves as command.
    Options Dialog Box, which....
    Option dialog box...
    I also attempted to edit the recovery file in a text editor.
    I found the beginning text "%_/Binary: /ASCII85Decode", but did not find the closing "%_; (hItem) ,"
    I deleted the "%_/Binary: /ASCII85Decode", until I assumed that data string was terminated in two different instances.
    I tried to open in Illustrator, but got the same dialog, 'Can't open illustration'
    I then went back and found some lines with repeated   "((((((((((("
    I removed all those entries and again tried to open in illustrator, and got the 'Can't open illustration'.

  • Just installed OS Yosemite, and now I can't open Illustrator CS6. Asks me to update my Java, but I check and my Java is up to date. Please help!

    Just installed OS Yosemite, and now I can't open Illustrator CS6. Asks me to update my Java, but I check and my Java is up to date. Please help!

    Some people have reported reinstalling the Apple 2014-001 Java update has helped.
    See thread 7 here  Illustrator CC 2014 crashes on startup after Yosemite 10.10 upgrade today.

  • "Can't open illustration.  File is locked or in use.  ID = -54"

    "Can't open illustration.  File is locked or in use.  ID = -54" shows up when I try to install the Ai2Canvas.aip plugin on my Macbook Pro.  I'm using Illustrator CS5.  What do I have to do to make this plugin work?

    This one should be the CS5 one http://visitmix.com/labs/ai2canvas/

  • Can´t open illustrator. It says I have to upload the OLD Java SE 6-Runtime-Version. But I can´t install the old Version. What should I do?

    Can´t open illustrator. It says I have to upload the OLD Java SE 6-Runtime-Version. But I can´t install the old Version. What should I do?

    Lotte,
    Does this help?
    Win:
    http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase6-419 409.html
    Mac:
    http://support.apple.com/kb/DL1572
    Some have found that the page may turn up blank to start with, so it may be necessary to reload the page.
    Others have found that it may depend on browser. Specifically, a switch from Safari has solved it in one case.

  • Since upgrading to Yosemite I can't open Illustrator CS6

    Since upgrading to Yosemite I can't open Illustrator CS6 - it gives me an error message saying I need to install Java SE 6.
    Of course I have no idea where or how to find the downgrade to legacy Java SE 6 and eveyrtime I put the error into your search bar I get a Dreamweaver How to install Java SE 6 note.... and If I could apply that advice to my  illustrator error I would but I don't get an option to install ...
    SIGH I need this to work now-this is my lively hood

    Prompted to install Java SE 6 Runtime | Mac OS 10.9
    Mylenium

  • Can't open Illustrator CS3, was fine before

    All CS3 apps working fine for the last few years, except that all of a sudden I can't open Illustrator. Gives me FOConversion Suite plugin missing and quits. When I go to the folder, I've noticed this file is 0 bytes. How did this happen? More importantly, how to fix it? I read and read and can't find solution. I renamed so far preferences folder (Illustrator created new one on next (also failed) startup; I made sure that fonts Segua UI and tahoma are installed and working, and I have working, updated anti-virus. What can I do to fix/replace foconversionsuite.aip file? Operating system is Windows 7 64-bit.

    I found backup of my files and copied over empty file. It works fine now.

  • Can't open Illustrator after update error 16

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

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

  • Why i can't open illustrator

    hello
    i have  question why i can't open illustrator?

    I was using the trial it said is expired then when am trying to purchase it said I already have photo shop program.but am not using photo shop I need illustrator it doesn't let me.before it use to work.
    Sent from my T-Mobile 4G LTE Device

  • Windows can't open Illustrator.

    Why does Windows can't open Illustrator? thank you for your help.

    Thank you for answering and helping.
    It's Ok, now.
    2013/6/3 Romsinha <[email protected]>
       Re: Windows can't open Illustrator.  created by Romsinha<http://forums.adobe.com/people/Romsinha>in
    Downloading, Installing, Setting Up - View the full discussion<http://forums.adobe.com/message/5375991#5375991

  • Can't open illustration. Contains an illegal operand.

    Trying to open a color palette in AI format.
    This the full error code I'm getting:
    Can't open illustration. The illustration contains an illegal
    operand. MOD HTGGDFT GREY MKOP BFC07-142 2 % 9 () XW
    E
    %AI3_EndPattern
    %AI3_BeginPattern: (MOD HTGGDFT GREY MKOP BFC07-142 2)
    (MOD HTGGDFT GREY MKOP BFC07-142 2)
    The palette has plenty of other colors, but this one in particular is causing an error.
    I looked at lots of other posts about illegal operands but none of them seemed to be similar. Definitely correct me if I'm wrong though.

    chazbot,
    One thing often tried first is to create a new document and File>Place the (PDF contents, if any, of the) corrupted one to see how much may be rescued that way.
    Here are some websites where you can see whether it can rescue the actual file, and if it can, you may pay for a subscription to have it done,
    http://www.recoverytoolbox.com/buy_illustrator.html
    http://markzware.com/adobe-software/fix-illustrator-file-unknown-error-occurred-pdf2dtp-fi le-recovery/
    http://www.illustrator.fixtoolbox.com/
    As far as I remember, the first one is for Win and the second one is for Mac, while the third one should be for both.
    Here are a few pages about struggling with it yourself:
    http://daxxter.wordpress.com/2009/04/16/how-to-recover-a-corrupted-illustrator-ai-file/
    http://helpx.adobe.com/illustrator/kb/troubleshoot-damaged-illustrator-files.html
    http://kb2.adobe.com/cps/500/cpsid_50032.html
    http://kb2.adobe.com/cps/500/cpsid_50031.html
    http://helpx.adobe.com/illustrator/kb/enable-content-recovery-mode-illustrator.html

  • Can't Open Illustration: contains illegal operand

    I used an applescript to change the colors of a set of documents, and I saved the results to another folder. But I cannot open the results.
    I keep getting this message, and then it only opens part of the file:
    Can't open the illustration. The illustration contains an illegal operand.
    offending operator: 'p'
    context:
    0 A
    0 Xw
    0 O
    (CMYK Cyan Hatch) 0 0 1 1 0 0 0 0 0 [1 0 0 1 0 0] p
    I have no idea what is going on.
    Any help is greatly appreciated.
    Below is the applescript I used to edit these files:
    tell application "Finder"
        set new_files to POSIX file "/Users/benjamingolder/Desktop/site edited/"
        set File_list to every file of folder new_files
        set save_file to POSIX file "/Users/benjamingolder/Desktop/site_colored/"
        tell application "Adobe Illustrator"
            if not frontmost then activate
            set i to 1
            --repeat loop as many times as there are files in the folder
            repeat the count of File_list times
                set new_file to (item i of File_list) as string
                open file new_file without dialogs
                set lay_list to every layer of current document
                set j to 1
                repeat the count of lay_list times
                    set lay_name to name of layer j of current document
                    set si to page item 1 of layer lay_name of document 2
                    set pgi to every page item of layer lay_name of current document
                    set k to 1
                    repeat the count of pgi times
                        if filled of si is false then
                            set filled of page item k of layer lay_name of current document to false
                        else
                            set fill color of page item k of layer lay_name of current document to fill color of si
                        end if
                        if stroked of si is false then
                            set stroked of page item k of layer lay_name of current document to false
                        else
                            set val2 to stroke color of si
                            set val3 to stroke width of si
                            set val4 to stroke dashes of si
                            set val5 to stroke cap of si
                            set stroke color of page item k of layer lay_name of current document to val2
                            set stroke width of page item k of layer lay_name of current document to val3
                            set stroke dashes of page item k of layer lay_name of current document to val4
                            set stroke cap of page item k of layer lay_name of current document to val5
                        end if
                        set val6 to blend mode of si
                        set val7 to opacity of si
                        set blend mode of page item k of layer lay_name of current document to val6
                        set opacity of page item k of layer lay_name of current document to val7
                        set k to k + 1
                    end repeat
                    set j to j + 1
                end repeat
                set lay_list2 to every layer of document 2
                set m to 1
                repeat the count of lay_list2 times
                    set the lay_name2 to name of layer m of document 2
                    if exists layer lay_name2 of current document then
                        move layer lay_name2 of current document to end of current document
                    end if
                    set m to m + 1
                end repeat
                save current document in save_file as Illustrator
                close current document saving no
                set i to i + 1
            end repeat
        end tell
    end tell
    Thanks,
    Ben

    So I've come back to this, and I think I narrowed it down to something that has to do with pattern swatches.
    To give a better context for the problem, what I do is take a folder of illustrator files that have been exported from another software. I open one of them and edit it to make it look the way that I want, and keeping that single document open (as a sample document), I run the script and it edits all the other documents in the folder to look like the sample document. Some of the fills in the sample document are patterns that I've defined. I think that these patterns are causing a problem, and I need to find a better way to transfer them to each current document.
    So here is a more specific question:
    If want to store the patterned fill of a page item as a variable, and then give that patterned fill to another page item, what is the best way of doing so?
    If I use this script:
    tell application "Adobe Illustrator"
    if not frontmost then activate
    set fill1 to the fill color of page item 1 of document 2
    set the fill color of page item 1 of current document to fill1
    end tell
    and then save current document, then when I open the saved document I get the same error.
    Maybe I need to make a pattern in the current document before saving?

Maybe you are looking for

  • Purchased songs downloading to the wrong drive & folder

    I have another issue... I store all my music on an external hard drive. But When I purchase songs from iTunes Store, they download to a local drive. It's a My Music Folder and has Itunes and Itunes Library in it, but it's not where my music is suppos

  • ORA-10458: standby database requires recovery

    hi kindly help me... i got error when standby open in read only mode SQL*Plus: Release 11.2.0.3.0 Production on Sat Jan 19 14:37:46 2013 Copyright (c) 1982, 2011, Oracle. All rights reserved. Connected to an idle instance. SQL> startup mount ORA-3200

  • IOS 7.1 can't connect to iTunes

    iOS 7.1 was released today, so I upgraded my iPhone 5.  It was connected to iTunes on my Macbook Pro, but as soon as I went in there on iTunes to manage the phone/sync/etc, the connection dropped and I have been unable to get it back. I am using iTun

  • Customer exit : i_vnam table empty

    Hi, I have a specific requirement where I need a customer exit variable to be processed twice (once in i_step = 1 and the second time in i_step = 2 ). The problem I am facing is that after the i_step = 1 is processed for both my customer exit variabl

  • Blackberry 8900 curve problem...please help!!!!!

    My blackberry 8900 curve says "unable to play content" when I try to play a song or video. Please tell me what to do..I really need help urgently!!