InDesign CS3 (WIN): "Enable all profiles" scriptable ?

Hi,
We have to following problem: We have a large collection of IND files from different sources. When creating output, we want the image profiles to be enabled. The only way to do this, it seems, is manually when opening a document with a mismatched color profile, and there choose "Enable all profiles" for placed content. Trouble is, we can't seem to script this option. Question: Is it possible to disable the warnings and "enable all profiles" for placed content after the document is openend via a script? Or is there another option to script that all placed image profiles should be enabled, before exporting a PDF?
I hope you can help, where quite desperate...
Thanks,
Frank

Hello John,
I think you should start by modifying your *WidgetEH boss definition in your framework resources - replacing the IID_IBOOLEANCONTROLDATA it aggregates by an IID_IINTEGERCONTROLDATA - then you'll have to follow this boolean field down deep into your *WidgetEH implementation to replace it to any flavour of integer value you are used to.
Doing it that way you'll be able to store a state value from 0 to 7 - by example: that would be much closer from the behaviour you are looking for than a boolean toggle I'll guess.
Is this making sense to you?
Best regards
Patrick Perroud

Similar Messages

  • Changes lost after saving InDesign CS3 (WIN)

    Part of our work is to make amendments to books we've typeset in InDesign. As is normal practice, we save and check our work as we go along, and subsequently close the indd file. On a few occasions now, when we have re-opened a file, we have found some of the changes we've made have not been kept. These seem to happen at random through a book, and it has happened rarely enough to prevent us getting to the bottom of it (are we doing something wrong in haste, etc?). For instance, we thought it could be our inadvertently causing Undo to do more than one edit, but our investigations on the latest occurrence of this have convincingly ruled this out. The working files are stored on the computer's hard drive (before being backed up to our server), so it's not a qestion of problems saving directly to a server, either. (So far we haven't experienced this problem on our Mac.)
    We are now wondering if InDesign's ability to keep track of every save (version) of a document, which I understand is accessible through Version Cue (which we don't have installed) is at the heart of the problem. Could InDesign be retrieving earlier save-versions of a file each time we save?
    Anybody any idea what could be going on? More to the point: how can we prevent this happening without our having to check again (and possibly repeatedly) through what can sometimes be more than a hundred author's amendments?
    Ideas would be gratefully received.
    Rob Fris
    documen

    In a message dated 29/03/2010 23:25:17 GMT Daylight Time, [email protected] 
    writes:
    http://forums.adobe.com/message/2698024#2698024
    Many thanks for this. As a result we have adjusted our way of working in 
    InDesign to use Save As and overwrite rather than use Save.
    Rob

  • InDesign CS3 Win:  Playing with PictureIcon...

    Hello Folks:<br /><br />   I have a rare moment to actually explore the SDK a bit on my own without deadline worries or similar impediments to creativity.  I thus decided to play with the sample plugin called PictureIcon.  I compiled it and ran it without a problem, although the writers of the plugin did little more than show how to implement an event handler to change the image used in a picture button when that icon is clicked.  <br /><br />   The problem is that the range of behavior implemented is very, very limited.  Clicking the one picturre button implemented toggles between two images when there are eight included in the project.  So I decided as an exercise for the student, to rewrite the project to cycle through all eight images.  <br /><br />   The problem is that if I click the picture button without a breakpoint included in the event handler, the picture button does not change, as expected.  If I do include a breakpoint, the picture button does change.  I even went ahead and included an Update call based upon comments made in the event handler header, to no effect.  Here's the changed code (I left the old code in for reference purposes):<br /><br />bool16 PicIcoPictureWidgetEH::LButtonDn(IEvent* e)<br />{<br />//DebugMessage("I am inside the event handler.");<br />     do<br />    {<br />          int32 rsrcID = 0;<br /><br />          InterfacePtr<IBooleanControlData> controlData(this, IID_IBOOLEANCONTROLDATA); // no kDefaultIID<br />          if(controlData==nil) <br />        {<br />               ASSERT_FAIL("PicIcoPictureWidgetEH::LButtonDn - No IBooleanControlData found on this boss.");<br />               break;<br />          }<br /><br />          InterfacePtr<IUIFontSpec> fontSpec(this, IID_IUIFONTSPEC); // no kDefaultIID<br />          if(fontSpec==nil) <br />        {<br />               ASSERT_FAIL("PicIcoPictureWidgetEH::LButtonDn - No IUIFontSpec found on this boss.");<br />               break;<br />          }<br /><br />        /*<br />         *  This is the meat of the issue.  If the <br />         *  correct button is clicked, the value of <br />         *  rsrcID is changed to a font number id.  <br />         * <br />         *  It is this font number id which is used to <br />         *  decide which picture will be displayed with <br />         *  each click.  One does not relate to the other;<br />         *  the programmer used this value as a matter<br />         *  of convenience.  Iam going to try something <br />         *  else here, just for fun.<br />         */<br />          //bool16 isPressedIn = controlData -> IsSelected();<br />          //if(isPressedIn == kTrue) <br />        {<br />               //controlData       ->       Deselect();     <br />               rsrcID = Resource;<br /><br />            Resource++;<br />            if(Resource > kPicIcoCenterCompPictureRsrcID)<br />                Resource = kPicIcoTopOutsidePictureRsrcID;<br /><br />            //isPressedIn = controlData -> IsSelected();<br />        }<br /><br />#ifdef OldCode<br />          if(isPressedIn == kTrue) <br />        {<br />               controlData       ->       Deselect();     <br />               rsrcID = fontSpec ->      GetFontID();<br />          } <br />        else <br />        {<br />               controlData       ->          Select();<br />               rsrcID = fontSpec -> GetHiliteFontID();<br />          }<br />#endif<br />          InterfacePtr<IControlView> myView(this, UseDefaultIID());<br />          if(myView == nil) <br />        {<br />               ASSERT_FAIL("PicIcoPictureWidgetEH::LButtonDn - No IControlView found on this boss.");<br />               break;<br />          }<br /><br />          if(rsrcID != 0) <br />        {<br />               myView -> SetRsrcID(rsrcID);<br />            Update(e);     <br />          }<br />          return kTrue;<br />        /*<br />           * early return as here we have already<br />           * handled the event and do not need to<br />           * delegate any processing to the base class.<br />         */<br /><br />     } while(0);<br /><br />    /*<br />     *  Of we get this far then it means that the program <br />     *  should perform the default <br />     */<br />     return CEventHandler::LButtonDn(e);<br />}<br /><br />Does anyone see what I am doing wrong?<br /><br />TIA!<br /><br />John

    Hello John,
    I think you should start by modifying your *WidgetEH boss definition in your framework resources - replacing the IID_IBOOLEANCONTROLDATA it aggregates by an IID_IINTEGERCONTROLDATA - then you'll have to follow this boolean field down deep into your *WidgetEH implementation to replace it to any flavour of integer value you are used to.
    Doing it that way you'll be able to store a state value from 0 to 7 - by example: that would be much closer from the behaviour you are looking for than a boolean toggle I'll guess.
    Is this making sense to you?
    Best regards
    Patrick Perroud

  • Indesign CS3 plugin..enabling/disabling operations

    Hi,
    Is it possible to perform save/close operation after enablin the save menu, close button of an open indesign document (they were disabled befor i.e. when app loads)?
    I have 2 menus, one for enabling close button in the document, second for enabling the save menu item... That is, initially when i open the application, close and save will be disabled. If i open a document, i cannot perform these operations on it...
    Now, if i check both the menu items(m enabling close and save),i m able to perform close and save only in the documents i open after enabling but i need to close the doc previously opened. How to do it? Help..
    Isn't it possible to close/save the same doc once they are disabled in it before...
    Guide me pls...
    I m using InDesign CS3 in MAC OS...
    Thank You.

    You can iterate the list of open documents IApplication::QueryDocumentList. The commands that actually save/close a document are in IDocumentCommands

  • InDesign CS3 - Vanilla Install - Question Marks All Over My Content

    Yes, I'm still using InDesign CS3 on my MacBook Pro from 5 years ago. CS3 has worked like a charm and I've never had a problem with any files until this morning.
    I've got a 120 page book, each page with images and text boxes, none of which are threaded. I opened my file this morning and all my content boxes: images and text have question marks on the top left corner.
    I have no plug-ins. The installation is straight out of the box with the occasional updates, which stopped quite awhile ago.
    The error that pops up when I place the cursor in a text box is: "31-40-TasksAssemble-Instal.incx" cannot be located.  Another error is: "31-40 TasksDirectly supe-1.incx cannot be located. I have no idea what these mean and when I did a Google search there were only 3 returns and they were from what appeared to be software pirate sites. I can't find a reference to this on the Adobe forums either.
    I've saved under a different name, different file type and replaced the preferences, all to no avail. I think the application is behaving as though I've "checked out" the content, but I don't share my files with anyone and the file itself isn't on a network - there is nowhere to check out to, and the commands to check in is grayed out so I can't reverse the behavior.
    I'm stumped and I have a deadline! Can anyone help??
    thank you!
    Message was edited by: dnetmike

    No one has worked on or had access to this file but me. I'm on a network but I'm a Mac in a PC world and no one would even know how to find my hd, let alone do anything on it.
    I have to believe it is related to my moving my entire project folder to an external hd (not just the file as I mentioned before) as a means of backup. I don't know why it would matter or what it could have done unless there are files created in the Library that are somehow related/linked to the stories.
    I'm still searching the Adobe Forums for something related but all ID/IC related discussions relate to people actually using IC!
    I've unlinked all of my content from IC and now I'll have to see what happens.
    [POSTSCRIPT]
    I've been editing my layout most of the day and so far so good.
    The oddity of each box asking for a link to InCopy, which has never been used, happened only after I dragged my project folder to an external hard drive as a precautionary backup. All InDesign files in both original and backup folder suffered this problem. I didn't dare open any other ID files for fear of corrupting them so I can't say how widespread this problem would have been.
    I do not know why making a copy of a folder would have created this problem and I can't find any discussion thread that talks about it, much less sheds any light on the subject.
    After unlinking all of the boxes from their non-existent "host file" the boxes remained intact complete with images and formatting. I saved often!

  • Indesign CS3 - Changing file from all black to a pantone color

    Is there an easy way to change an all black file to a specific pantone color in Indesign CS3? I've ran into this plenty of times after setting up an all black job and then the customer decides they want to see on the laser printer what it would look like in a specific pantone color. I've always had to go into each photo and text block separately to do this.

    One way is to build jobs like this using a custom black ink defined as CMYK 0,0,0,100 and then all you should have to do for all elements created in IND is delete the black spot and substitute with your new spot.
    Check with your printer, but in general they'll almost certainly prefer a black file to a "spot" file. So if this is just one page you can always kick out a quick PDF, rasterize in PS and place into IND, painted as the new spot. I've never been burned with this workflow, but understand that the client signs off on a proof that is a couple steps away from the file that will go to press.
    I'm sure you can also export to PDF and use Acrobat's convert color utility to get what you want, but I wouldn't know how to go about it. [ed] And fiddled, and still couldn't figure it out.
    J

  • Win: ExtendScript Tool Kit 2: Can't connect to Indesign CS3 Debug

    Hi
    I have a script for Indesign CS3 and like to debug this in ExtendScript ToolKit 2. But I can't connect to Indesign CS3 Debug.
    - I start Indesign and try to debug the script -> A message is show to start Indesign CS3. If I say yes, a message is shown that Indesign CS3 is loaded... But this message remains on the screen
    - The same if I don't start Indesign CS3 manually.
    - If I try it with Illustrator or Photoshop (both release versions) it works!
    What could be wrong?
    Thanks
    Hans

    Hello,
    I have exact the same problem with soundbooth. And also that extended script is working fine with photoshop. I have tested it on 4 different computers. Updated windows to sp3, and updated all adobe software.
    So it's definitely not a mess in the system (beside the mess of software 1,2 Gb you have to install for only soundbooth!!, Cool edit pro, which adobe took over from which soundbooth is a spin off, was only 20Mb....)
    The technical help form adobe won't look at this if you don't buy the software first. But after some pressure they looked at the problem but couldn't find anything about it in there system.
    Please advise how to solve this
    Richard

  • InDesign CS3 showing all available fonts

    I have a user with Adobe InDesign CS3 and Extensis Fusion 12.1.7 running on a MacBook Pro 17" and OS 10.4.11. A small window, in the bottom-right of the screen, has a tab named <Character> that allows you to choose a font. When clicking on the double-arrow all fonts on the computer are displayed. The user would like this to only display fonts activated by Fusion - is this possible? I know better than to disable any fonts in /Library/Fonts or /System/Library/Fonts.

    I don't understand that business about a <Character> tab, but I do know that InDesign does not let you pick and choose which fonts to display in its Font menu. Unless there is a plug-in that I don't know about.

  • [JS CS3, Win] Saving InDesign using app.activeDocument.save

    Hello.
    I am having problems saving an InDesign document using Javascript.
    My aim is to have a box in the document where I will type the filename and path where I want the InDesign file to be saved (eventually this will be generated from a datamerge).
    I then want to run a script which will read the contents of the box and then save the document to that filename or location.
    At the moment I have:
    //SaveText.jsx
    //An InDesign CS3 JavaScript
    //Saves the document to the provided path
    //get contents of the FileNameBox box on the document
    var varFileName = app.activeDocument.textFrames.item("FileNameBox").contents;
    //now save
    app.activeDocument.save("/"+ varFileName+".indd");
    //alert (app.activeDocument.filePath);
    When I run the script (with "Hello" in the FileNameBox) the file changes name on the top bar of InDesign to "Hello.indd", but (when I run the commented out alert at the end) the file is not actually saving anywhere.
    If I close InDesign and then open it the file is listed under "Open Recent" on the menu, but clicking it does nothing - again the file doesn't exist.
    Does anyone have any ideas to help me from tearing my hair out?
    Where is my file saving? (Or, if it isn't, how can I make it save!).
    Thanks in advance for any help you can offer.

    var myFolder = new Folder("~/Desktop/Test");
    if (!myFolder.exist) myFolder.create();
    var varFileName = app.activeDocument.textFrames.item("FileNameBox").contents;
    app.activeDocument.save(myFolder.fsName + "\\" + varFileName+".indd");
    alert(app.activeDocument.filePath);

  • InDesign CS3 & Leopard - Continual crashing all the time!

    3 months ago (Jan 2008) when Adobe released update 5.0.2 to InDesign CS3, the release notes read:-
    "This update does not address recently identified issues running Adobe InDesign CS3 on Mac OS
    X Leopard (v10.5.1). Known issues include the following:
    • Users are unable to hide InDesign CS3 using the cmd+h keyboard shortcut.
    • InDesign CS3 may unexpectedly quit when using the Place, Save, Save As or Export
    commands using either the OS or Adobe dialog boxes.
    Unfortunately, there are no workarounds for these known issues. Adobe and Apple are working
    closely to provide fixes. Initial testing indicates that these fixes should be provided through an
    update to Mac OS X Leopard. Consequently, it is not part of the InDesign CS3 5.0.2 update.
    No public schedule for these fixes is available at this time, but both companies understand their
    urgency and are working to address this."
    It's just as bad (if not worse) in 10.5.2. 3 months and no solution. No word from Apple, even though my work G5 is submitting several crash reports per day to both Adobe and Apple.
    If anyone from Apple reads these lists, could they confirm they are going to fix this, or do I revert to Tiger, trash Leopard completely.
    <post edited by host>

    Hey, I've also been having the same issues with InDesign CS3 since installing Leopard on my iMac G5 PPC... have reinstalled said OS and software 4 times now... but still getting crashes and the dreaded 'serious error...InDesign is shutting down...' warnings when relinking, replacing and exporting (sometimes when saving too) in ID.
    It seems there are so many of us having these problems, so at least it isn't user/machine-specific (unless I need more RAM..). However, one of the support guys at Apple (UK) gave me another helpful (temporary) fix, which works until they fix it PROPERLY. I tried working from the Desktop and cutting/pasting everything into a new file, but this one works better:
    Quit ID, go to your User (the house symbol)>Library>Caches>Adobe InDesign>Version 5>'InDesign Saved Data' and add '.old' onto this file or just drag it to the Desktop.
    Then go to Library>Preferences>Adobe InDesign>Version 5>'InDesign Defaults' and add '.old' onto that file as well or drag it to the Desktop.
    Then restart ID and you'll notice your preferences are back to default (i.e. picas instead of mm/inches etc.) and no more crashes - until you start changing the prefs again....
    The other tip was that the account you work from has become corrupted, but I found the above fix works for a while. Hope that's helped, but like the rest of you, this problem is wasting valuable working time and needs sorting ASAP.

  • InDesign CS3 crashes without error when opening any 2nd InDesign file

    Issue: InDesign CS3 crashes without error and remains resident in memory if we have an InDesign file open and attempt to open a second InDesign file.
    OS: Win XP SP2
    InDesign Version: 5.0.2
    Hardware: Dell Precision WorkStation T3400, 4 gigabytes of memory, Intel Core2 Quad processor Q6600
    Details: No messages in the event viewer about the problem. We renamed the InDesign Defaults and the InDesign Saved Data file. We removed Creative Suite, restarted and then reinstalled Creative Suite (I could not remove and reinstall InDesign individually). We have created a new Windows profile for this user. I have one computer having the trouble. Other InDesign installations are working fine. This computer has 559 files in C:\windows\fonts. Other people that are not having the problem have a larger number of fonts installed.
    The issue is not file specific. We are not running out of memory as I checked the task manager after the first InDesign document is open.
    Why is opening a second document different than opening the first document?

    Hello Peter and Josh,
    I'd just like to assert that I am having the exact same problem as Josh. I've spent the time to go through the steps listed above and have found the same results.
    The issue as we see it multiple times daily is as follows:
    (1) User opens File1 (everything works fine)
    (2) User goes to open File2 (via explorer or via file->open) or print File1
    (3) The User Interface for ID disappears (InDesign.exe still appears in Task Manager and is NOT listed as "Not Responding", ID does not appear in the Task Bar)
    (4) The only way to continue work is to End Task/End Process InDesign.exe and relaunch.
    No error messages appear, no error logs are created(that I can find). Non-related concerns caused us to upgrade this users PC. With a completely new install we are still having the problems. The systems are listed as follows:
    OS: Win XP SP2 (fully updated minus SP3)
    InDesign Version: 5.0.2
    Newest Hardware: Custom Built Computer, 4GB RAM installed (3.24 recognized by windows), Intel Core2 Quad processor Q6600 @ 2.4Ghz
    OS: Win XP SP2 (fully updated minus SP3)
    InDesign Version: 5.0.2
    Older Hardware: Custom Built Computer, Intel D945GTP Motherboard, 2GB RAM installed, Intel Pentium D processor @ 2.8Ghz
    Troubleshooting:
    (1) Alt+Space and M then using arrow keys moves every other window the user had opened other than In-Design. The user has two monitors. (a) 1280x1024 and (b) 1200x1600 (yes she uses the monitor rotated 90 degrees
    (2) Log files - Non exist in the C:\Program Files\Adobe\Adobe InDesign CS3 folder. I've also done a search across the entire hard drive for any "*.log" files, none of which were adobe related.
    (3) Default Printer - Changing the default printer to Adobe PDF is not really an option. I was able to convince the user to temporarily switch to a different networked printer and await the results (most likely today or tomorrow it should recreate)
    (4) /3GB switch - Getting that last 700 something MB of memory isn't an issue. I've run MemTest.exe on all the available system memory overnight in a "burn in" test. The system ran fine the sticks were nice and warm when I got in from all the hard work :)
    (5) Order of Opening - The problem repeates regardless of order. The trick seems to be opening File2 or printing File1 (I had the user only work on one file at a time (required her to close any open files before opening the next, that wasn't fun for my user but the system didn't crash on opening in this scenario, just on printing. Obviously not a permanent work around)
    Any help here would be much appreciated as this has been plaguing us for months now.

  • Error Installing InDesign CS3 Server on Windows Server 2008 R2 64BIT

    Hello there-
    I'm trying to install InDesign CS3 Server on Windows Server 2008 R2 64BIT (x64) Edition, however, we get a failure indication on the installer. Before, we have installed it properly on Windows Server 2008 R2 32BIT (x32) but some how we cannot proceed on a x64 box.
    Is there any limitation on this sense? Any documentation about it?
    Thanks and appreciate your answers.
    Regards,
    Gustavo Ortega
    Software Engineer

    Hello,
    Have you followed these recommendations from the installation guide ( Installation Guide u2013 SAP Content Server on Windows 2008 ) :
    Note: In the IIS 7.0/7.5, all the roles are not selected during the installation by default,
    Please make sure all the below roles are included and IIS 7.0/7.5 is installed.
    Roles needed in IIS 7.0/IIS 7.5.
    Common HTTP Features
    Static Content
    Default Document
    Directory Browsing
    HTTP Errors
    HTTP Redirection
    Application Development
    ISAPI Extensions
    ISAPI Filters
    Health and Diagnostics
    HTTP Logging
    Logging Tools
    Request Monitor
    Tracing
    Custom Logging
    ODBC Logging
    Security
    Basic Authentication
    Windows Authentication
    Request Filtering
    Note : Anonymous Authentication should be enabled.
    Performance
    Static content Compression
    Dynamic Content Compression
    Management Tools
    IIS Management Console
    IIS Management Scripts and Tools
    Management Service
    IIS 6 Management Compatibility
    IIS 6 Metabase compatibility
    IIS 6 WMI Compatibility
    IIS 6 Scripting Tools
    IIS 6 Management Console
    Note: There is a File Upload limitation in IIS 7 on Windows 2008 Server, IIS will reject any file that is
    larger than 30 MB. This is a default limitation of IIS. You can increase the maximum file size by
    setting the parameter maxAllowedContentLength in the file ApplicationHost.config.
    The following command can be used to set the parameter from the command prompt, please
    change the directory to Windows\System32\inetserv and then execute the command.
    appcmd setconfig /section:requestFiltering/requestLimits.maxAllowedContentLength:150000000
    The value is only an example, in this case the upload limit is set to 150MB.Server has to be restarted
    after execution of this command.
    Also, are you using Maxdb to store the files or is it a "flat files" content server  ?
    HTH.
    Steve.

  • Matching Raster and Vector RGB color in InDesign CS3.

    We print on a Durst Lambda RGB imaging device to photographic paper. All color management is done as an early bind (raster files are converted to the printer's color space and vector colors are chosen from a palette database). So basically the files must go through InDesign without any color change in raster or vector information. We have clients that require specific RGB builds for logo colors the are present in both their raster and vector files.
    Color Management is set to "North American General Purpose 2" with "RGB: Preserve Embedded Profiles" selected.
    1) The file is exported as a PDF 1.4, High Quality, PDF/X_None.
    2) The PDF was ripped on a Cheetah RIP (Jaws level 3) with no color management on.
    3) Solid raster colors such as 0-255-0 will reproduce as 0-255-1.
    4) The color differences between the raster and vector are usually 1-4 points.
    5) The vector is consistent as was input in the programit's only the raster that changes. When you are trying to match raster and vectors logo colors it is a killer.
    However, I can go into the InDesign (or Illustrator) color settings and turn color management off (This is our current workflow). In doing this the RGB working space uses the monitor profile and "color management policies" are set to OFF. With these settings the RGB raster and vector match. The problem with this work flow is two fold:
    1) We have other devices than our RGB Durst Lambda that can use the InDesign color managementVutek flat bed 3200 and grand format 3360.
    2) We have had many occurrences where the custom "color management off" settings have reverted back to the default "North American General Purpose 2"without any intervention.
    I have tried this with different RIP's with the same results.
    Does anyone have an idea to create a simple PDF workflow and keep the color information consistent?
    Program: InDesign CS3 5.0.2
    Platform: Mac OS 10.5.2
    Computer: G5 tower with 4 gigs of RAM

    I believe that setting is an old Illustrator setting that has been saved to effectively turn the color management off. The monitor profile effects the image displayedit doesn't effect the color transform.
    Anyway, the color management I want to use is the "North American General Purpose 2".
    To reiterate:
    The procedure:
    1) The file is exported as a PDF 1.4, High Quality, PDF/X_None.
    2) The PDF was ripped on a Cheetah RIP (Jaws level 3) with no color management on.
    The Problem:
    3) Solid raster colors such as 0-255-0 will reproduce as 0-255-1It changes from the original raster color placed in InDesign.
    4) The color differences between the raster and vector are usually 1-4 points.
    5) The vector is consistent as was input in the programit's only the raster that changes. When you are trying to match raster and vectors logo colors it is a killer.
    To summarize, the color of the raster file will change from the original that was place into the documenteven though nothing was selected in InDesign that would change the color (i.e. profile conversion to an output profile or a transparency effect used). The change is slightbut there.

  • Different Colors when printing from Photoshop and InDesign CS3

    Different Colors when printing from Photoshop and InDesign CS3
    I have the following problem:
    When printing from Photoshop or InDesign to a PostScript printer, Adobe recommends to let Photoshop handle the colors (I use the German version, so I don't know the exact term used, it changes slightly in all CS3 apps anyway).
    The manufacturer however told me to let the PostScript printer handle the colors.
    When I chose this option in Ps's print dialog and then choose ISO Coated as the printer pfofile, the results are fine.
    But when I place the exact same image in an InDesign file and print from InDesign or export to PDF and print via Acrobat, again using "Printer handles colors", the results are the exact same as if I had used Ps and chosen to let Ps handle the colors (way too saturated and a bit too red).
    ·Photoshop CS3
    ·InDesign CS3
    ·Test image is a TIFF in CMYK Fogra 27 Coated (which is also the working color space in Ps and ID.
    ·Printer: Xerox Docucolor 3535
    ·Printer profile: ISO Coated
    How can I make sure the printer handles the colors in other CS3 apps than Ps? I tried it with ID's print dialog (translated from the German version: Color Management > Options > Color Handling: PostScript-printer decides colors).
    Thanks a lot!

    RE: "You don't indicate what Xerox printers you have"
    In my first post I named it, is that the information you need?
    Docucolor 3535 using Splash 3535
    That's interesting, so I have to find a way to turn off the printer's Color Management function? I mailed them, hope they can tell me how to do it easily. They usually just tell me to not use any profiles and so on, but that's the general rule in this area, I'm really tired of hearing it. Everybody seems to think profiles and LAB mode are nuclear science and I should stay away from it.
    Anyway, the test image I'm using is a simple photograph (size A3, 300dpi), so no transparencies at all. I'm placing this image into an equally large ID file and print it from ID, then export it to PDF-X/3 and print it from Acrobat. Hope that helps.

  • Color management, printing with InDesign CS3

    RGB output devices (this includes essentially all inkjet printers from every manufacturer, when driven by the manufacturer print driver). Inkjet printers driven by a PostScript RIP are considered CMYK output devices, and thus this post does not apply to them.
    When printing to RGB output devices from InDesign using the same ICC profiles and settings as in Photoshop, you still get crummy results, in terms of color, that differ from both IDCS2 and other Adobe applications including Photoshop CS3.
    InDesign CS2 previously did all rasterizing and color space conversion in InDesign prior to submitting the print job to the OS. In CS3 this was changed to submit PostScript + colorspace information, which is then supposed to be normalized by the OS. Except that it doesn't work. Mac OS X drops the color space information.
    The work around is to check "Print as Bitmap" in the advanced section of the IDCS3 print dialog. This causes IDCS3 to do the conversion and generate a bitmap prior to submitting to the OS, rather than depending on the OS to do color conversion or rasterizing, which is the default behavior with IDCS2. Thus you can use the same ICC profiles and print driver settings as with all other Adobe applications, if you choose this option.
    Chris Murphy
    co-author Real World Color Management 2e

    Chris,
    First, I am surprised that there has been no response to your post since there were more than a few complaints about the problem in this forum when IDCS3 first came out. So thank you for the solution to this vexing problem.
    But I find some of the language in your post a bit problematic:
    >InDesign CS2 previously did all rasterizing and color space conversion in InDesign prior to submitting the print job to the OS.
    and
    >... rather than depending on the OS to do color conversion or rasterizing, which is the default behavior with IDCS2.
    The second quote seems incorrect on two counts:
    1. It contradicts the first quoted statement.
    2. In my mac IDCS2 (version 4.0.5 build 688) in the options area of the color management pane of the print dialog, the only available choice for the Color Handling pop up is "Let InDesign Determine Colors".
    So the default behavior with IDCS2 seems to be "Let InDesign Determine Colors".
    I am not at all taking issue with the main point of your post, which I welcome wholeheartedly. I just find the second quoted phrase from you post confusing. Can you please clarify.
    Returning to your main point, are there any downsides of using the Print as Bitmap method?
    Thanks,
    Al

Maybe you are looking for

  • Error while posting

    Hi experts,      I have one person with the cost center X in company code 2611, now I want the person to account to another cost center Y  in company code 2612.  So  in infotype 0027, I assign the cost center Y to the person.     But when simulating

  • Windows vista itunes 10.5

    After downloading itunes 10.5, itunes cannot connect to Itunes Store.  I have windows vista home premium on my computer.   Any suggestions on fix? It gives me a message "Accessing Itunes Store".

  • Adobe Reader XI use 100 % of the processor in Internet Explorer

    We have sequenced Adobe Reader XI with App-V 5.0 SP2 hotfix 5. This package is deployed in our Windows 2008 R2 Citrix XenApp 7.6 server. When we open a PDF document in Internet Explorer, after about 10 seconds IE freeze and this process use 100% of o

  • How to make a "Program" out of my .java files?

    I have made a little application that stores a file to disk. Is there someway to make a file out of my .java files so it can be run without opening my editor and choosing run?

  • ODI11g  Server Installation in Linux64 bit

    Hi Experts, After running the uninstaller for ODI11g installatiion in Linux,getting follwing error. Checking if CPU speed is above 300 MHz. Actual 3000 MHz Passed Checking Temp space: must be greater than 300 MB. Actual 1084 MB Passed Checking swap s