Preview Problem for DSC 2.0 files in CS4

I'm having problems getting a preview for a file created in Adbobe PSCS4. The file is a Multi-channel using spot colors. The file was created new by going from a blank RGB straight to Multi-channels and spot colors assigned to each channel with an additional 4th channel. File was saved including 8 bit preview and a single file with color composite. When placed into Illustrator CS4 I get a solid black area. When imported to Windows Illustrator CS3 the preview is soon as expected.
Also there are problems printing DSC 2.0 placed files for color separations. In windows cs3 I have to copy the DSC 2.0 to a new document in order to do color separations using PowerRIP ImageSet as the print driver. I don't do color seps on Mac with CS4 since I only have a windows license at this time for the RIP.

After further testing I've found out what the reason is for the black rending in CS4 Illustrator.
When rending DSC 2.0 within Illustrator CS4 for a preview, it doesn't calculate the opacity of each channel. I use the first channel to render my substrate color, my original file had a pure black for my substrate. Then I calculate the opacity of Inks being used on the other channels. This is a major bug for me. I have no idea what Illustrator will do if my first channel in the DCS 2.0 is something other than Black, I haven't tried yet.

Similar Messages

  • File Adapter problem for Fixed Length output file

    Hi There!,
    The following is my sample data format
    ABCD 2345 03Accounting Swissland
    ABCD 011234 1000Jack Gates 400000 03
    ABCD 021234 1001Bill Welch 400000 03
    In the first record has dept details:
    DummyText, Row identifier(not given in case of dept), Identifier, Deptno, Deptname, Location
    The second and third records are emp details:
    DummyText,Row identifier, Identifier,EmptNo,Emp Name, Manager, Salary, Deptno.
    Notice that the primary key is defined by the first three columns DummyText, Row identifier, Identifier.
    When I use Native Format Builder from File Adapter and scan the first three columns I get all three records (i.e dept and both employees). I deleted the second employee and proceeded to finish the configuration. But, the problem I face is that the key value shows as "ABCD% 011234" for both the employee records where as I would like it to show as "ABCD 011234" for the first record and "ABCD 021234" for the second record.
    How do I get around this problem?
    Moreover if I have a group or recurring records and not just one record recurring. I mean assuming I have the following:
    First row: Department
    Second row: Employee
    Thrid row: Manager
    Fourth row: Employee
    Fifth row: Manager
    How do I get this done?
    Does anyone have an idea where to find details of nxsd.
    Thanks in Advance.

    Hi Manoj
    Give the FCC parameter as
    RecordSet Structure = Header,,Detaillnes,,Detaillines2,*
    Header.endSeparator = 'nl'
    Header.fieldFixedLengths = field length
    Header.fieldFixedLengthType = char/byte
    Header.fieldNames = field1,field2,field3,.....
    Header.keyFieldValue = Header
    Detaillnes.endSeparator = 'nl'
    Detaillnes.fieldFixedLengths = field length
    Detaillnes.fieldFixedLengthType = char/byte
    Detaillnes.fieldNames = field1,field2,field3,.....
    Detaillnes.keyFieldValue = Detaillnes
    Detaillines2.endSeparator = 'nl'
    Detaillines2.fieldFixedLengths = field length
    Detaillines2.fieldFixedLengthType = char/byte
    Detaillines2.fieldNames = field1,field2,field3,.....
    Detaillines2.keyFieldValue = Detaillines2
    The keyFieldValue should be the Value which identifies your record either as Header/Detaillines/Detaillnes2.
    Regards
    Santhosh
    Message was edited by:
            Santhosh Kumar V

  • Problem for XSL copying  XML file with Error in expression '*|/'.

    Hi,
    I am trying to convert xml file to another xml through command-line interface but failed.
    java oracle.xml.parser.v2.oraxsl data.xml data.xsl data_new.xml
    My sample xml and xsl files are:
    1. XML file
    <employee_data>
    <employee_row>
    <employee_number>7950</employee_number>
    <employee_name>ABC</employee_name>
    <employee_title>PRESIDENT</employee_title>
    <manager>1111</manager>
    <date_of_hire>20-JAN-93</date_of_hire>
    <salary>65000</salary>
    <commission>1000</commission>
    <department_number>10</department_number>
    </employee_row>
    </employee_data>
    2. XSL file
    <?xml version="1.0" ?>
    <xsl:stylesheet xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml"/>
    <xsl:template match="*">
    <xsl:copy>
    <xsl:apply-templates>
    <xsl:sort select=".//employee_name"/>
    </xsl:apply-templates>
    </xsl:copy>
    </xsl:template>
    </xsl:stylesheet>
    The error message:
    Error occurred while processing data.xsl: Error in expression: '*|/'.
    I used a sample XSL files copying from a XML book to do the convert but got the same error.
    Does anyone know how to fix this problem? I'll appreciate it very much for your help.
    Thanks.
    Yiguang Zhong

    Hi swanelvis ,
    I have the same issue. Were you able to resolve this ?
    Thanks

  • Problem for retriveing servlet class file (error in DD) I think so

    hi to all ,
    my deployment descriptor is here ....
    I tried to access servlet ... I got the response is like that
    The requested Resource is not available
    why its happening ?
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
        PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <welcome-file-list>
         <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <listener>
         <listener-class>CallMonitor.MyListener</listener-class>
    </listener>
    <servlet>
         <servlet-name>LoginAction</servlet-name>
         <servlet-class>LoginAction</servlet-class>
    </servlet>
    <servlet>
         <servlet-name>InsertData</servlet-name>
         <servlet-class>InsertData</servelt-class>
    </servlet>
    <servlet-mapping>
         <servlet-name>LoginAction</servlet-name>
         <url-pattern>/LoginAction</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
         <servlet-name>InsertData</servlet-name>
         <url-pattern>/InsertData</url-pattern>
    </servlet-mapping>
    <context-param>
         <param-name>jdbcurl</param-name>
         <param-value>jdbc:mysql://localhost:3306/test</param-value>
    </context-param>
    </web-app>But i remove the code from it , i can access LoginAction Servlet..
    <servlet>
         <servlet-name>InsertData</servlet-name>
         <servlet-class>InsertData</servelt-class>
    </servlet>
    <servlet-mapping>
         <servlet-name>InsertData</servlet-name>
         <url-pattern>/InsertData</url-pattern>
    </servlet-mapping>
    In Tomcat manager i found the applicaton is not running.
    i started the application using start command...
    But i got error message
    FAIL - Application at context path /25.7 could not be started
    Message was edited by:
    kannankalli

    <servlet-class>InsertData</servelt-class>Closing element for <servlet-class> is wrong.
    Before posting for any help check following stuff
    - Whether deployment descriptor is well-formed
    - Whether it is valid i.e. all elements are properly placed

  • I've created a problem for myself regarding .swf files

    At some point, for reasons I can no longer remember, I changed the way in which Firefox handles being told to open a .swf file. By default, it used to use Shockwave Flash, in a Firefox tab. Now I've set it to "Always ask" in the Options -> Applications window, and I don't have an option to change it back to "Use Shockwave Flash (in Firefox)". I can't find the Shockwave plugin anywhere on my system under "Use other -> browse" in the options. Can anyone help?

    You can delete the mimeTypes.rdf file in the Firefox Profile Folder to reset all file actions.
    *http://kb.mozillazine.org/mimeTypes.rdf
    *http://kb.mozillazine.org/File_types_and_download_actions#Resetting_download_actions

  • Problem with anchored objects in file from CS4

    I opened, in CS5, a file which was done in CS4 and discovered all my anchored objects were gone!
    Analising the document, I understood they were there, but in a kind of mask ("Illustrator style") but in a text frame, which is odd, I think.
    I show here:
    1. one picture of the CS4 file
    2. one picture of the same file, but opened in CS5
    3. one picture of this file, in CS5, showing the "ghost" when I put the cursor over the "missing" anchored object
    If I cut and paste the objects they appear, but if I put them back like anchored objects, they disapear again.
    I had to fix every thing in a document I was working (it's a 124 pages document...) without anchored objects, just grouped them, because it was urgent (as always...) but I am reporting this because maybe people hadn't notice this and maybe there's a way to fix this.

    It's very hard to tell what might be causing this without seeing the actual file. I looked around and found a CS4 file on my suystem with hundreds of anchored photos, and they show fine when I open in CS5.
    My first impression is that this is ither a layer problem of some sort, or perhaps the objects have been set not to print and you have a preview mode enabled, but eh screen captures don't seem to support the latter.
    What happens if you export the file to .idml in CS4 and open that in CS5?

  • Problem opening a scanned .tif file in CS4

    Hi...Just got CS4 and am trying to use CS4 to open a picture that I scanned into the computer. I get this message "Could not complete your request because of a problem parsing the tiff file". The file is only 12,084 KB and 1702 x 2338. It will open in CS2 but not CS4. CS4 will however, open the scanned files that are smaller than 10,000 KB.
    Any help is greatly appreciated.

    Hi, is there a solution yet for this problem? I just upgraded to CS4 (from CS3) and now I have the same problem (Scanned tiff files, CS3 opens them perfect, CS4 gives error problem parsing the Tiff file.
    thanks!

  • Please provide support for Sony DSC-R1 RAW files

    Dear Apple employee,
    If by any chance you happen to read this topic, would you please forward this information to the Aperture team?
    Some users need support for DSC-R1 Raw files in Aperture. Please do something.
    Thank you.

    I can't believe that Apple can't take the time to support the DSC-R1...when I saw the new OS and 1.5 release I had high hopes, which gave way to dismay.
    How can they support a so-so cam like the A100 and ignore the R1? I have Bibble Pro...they have no problem supporting the R1 and many other cams that Apple's radar can't seem to pick up.
    This is really driving me nuts...Apple, how about listening to the rest of us?
    Anyone for approaching Apple and/or the Aperture developers as a group?

  • Why does placing links in Illustrator now change the "Date Modified" data for all of my files?

    This seems to be a new glitch that started after I installed the latest updates to Illustrator CC (2014) and reoccurs every time on both computers I work on:
    When I choose to place a new image in my Illustrator file and the window opens to let me choose a file to place, the "Date Modified" field of all the files in the folder I'm viewing (except other Illustrator files) quickly changes to the current date and time. This is definitely happening when I'm in Illustrator because when I needed files from a folder that had hundreds of images in it and I was able to select a file quickly, I was able to do so before it had changed the date on all of my files. However, when I needed a file from a folder that had hundreds of images in it but I took a long time to find the image I needed, Illustrator had time to change the date modified on all of my files. This might seem like an unimportant issue because it doesn't actually seem to modify or damage any of my files, but having all of the dates change on my files is a serious problem for my workflow and file management issues. So far, my only work around has been to use back-up image files, but that's not a long term solution and I don't understand why Illustrator should be modifying the dates of my files.
    Is there a setting I can choose somewhere to prevent this problem? If not, is there somewhere I can report this kind of glitch? I'm not sure if I'm using the exact language necessary to get the issue across so please let me know if you have any questions! Thanks!

    iCloud is not compatible with Snow Leopard, that is your problem.
    A quick way out is to purchase Soho Organizer which is compatible, even when running on Snow Leopard, it will correctly handle Contacts and Calendars from iCloud. $100, 2 user license.
    Soho Organizer
    There is a free trial if you want to try it.

  • Preview Handlers for office 2007 and Vista

    Hello, I am trying to create a preview handler for EPS and AI files, I was wondering if there was any direction and or guidance that could be given to me. Sample source would of course be over the top, but not required, I just am not sure which com objects to look into invoking. So I am pretty much at the basics of this all. Thanks
    Michael

    I don't think the AI SDK provides anything for this unfortunately; I think others have asked in the past. There really isn't anything that helps you read an AI file from outside of Illustrator in the SDK, which is what you'd need to generate the kind of previews you'd want.
    One can only assume that Adobe has that kind of separate library, but apparently they aren't sharing :(

  • Since I have connected my iPad with the MacBook through ICloud I have problems in Preview of opening PDF- and JPG-files. Does anyone have a solution for this?

    Since I have connected my iPad with the MacBook through ICloud I have problems in Preview of opening PDF- and JPG-files. Does anyone have a solution for this?

    I'm not sure I understand the connection between iCloud and this problem.  Is it simply a problem of coincidental timing (ie, the problem happened after you set up iCloud)?  If so, there's almost certainly no connection between these two events.
    Where are you getting the files you're trying to open, and what specifically happens when you try to open them?

  • Preview Problem: PDF file:Adobe livecycle designer ES 10.0

    Hallo.
    How do I fix  preview problem of a .pdf file that was created with Adobe livecycle designer es 10.0.  version 1.7 ( show on the properties of the file). The file opens normally. No preview in explorer preview pane and change to printing problem too. Need to preview the file before uploading it onto the internet. All updates done: Windows 7, Explorer 11, Java (Javascript enable) Adobe reader XI. and Adobe Reader XI Pro.(Trail version). When in Explorer and using open with:Default program: select software already in stalled on computer: Browse Adobe reader XI (Acrord32.exe: properties show version 11.0.06.70) This will show as Adobe reader 9.4 on the list of programs.

    If you purchased a prior license of Acrobat and have purchased an upgrade to Acrobat XI Pro then you are eligible for free LiveCycle Designer upgrade.
    See more information on: http://www.adobe.com/products/acrobatpro/faq.edu.html
    Visit the http://www.adobe.com/go/learn_acr_livecycle_upgrade_en to request an upgrade.

  • Mountain Lion doesn't display Finder preview icons for .ARW files? (RAW pictures taken with SONY cameras)

    This is something that I find rather ridiculous, and have a hard time believing no-one at Apple has addressed yet.
    Basically the problem is that neither Mountain Lion nor Lion show Finder thumbnail preview images for pictures that are taken with SONY digital cameras.
    This is something that Snow Leopard, as well as multiple earlier iterations of OS X used to do without any problem. The professional photographer community who uses SONY professional DSLR cameras is up in arms about this. And we've all been crossing our fingers that perhaps the Mac OS X 10.7.1, 10.7.2, 10.7.3, 10.7.4, or possibly the 10.8 update would fix this issue for us.
    Several of us have filed bug reports over the past year or two. See this thread: https://discussions.apple.com/thread/3213982?tstart=0 
    This is a flaw in Apple's operating system. Especially considering that there are supposedly 200+ "new features" which were just released in Mountain Lion.
    Those of us who work with SONY cameras every day would probably have paid the $19.99 upgrade price for just one "feature". And not even a new one. An old one. The ability to see our pictures in the Finder. Pretty basic stuff.
    Hopefully someone fixes this for us with the release of Mac OS X 10.8.1
    Please. And thank you.

    I can see image icons for all my pre-MtLion images.  These are the folder images (Icons), and all the photo images (icons) on all my hard drives.  IE If I have a folder of 300 wedding pictures, they all show the picture image above the file name in the icon view.  So if I want to open a picture of the "Flower Girl" I can see the image (icon) of the Flower Girl.  Without the image showing all I see is the filename...  Smith-212.tif.  Now with Mt. Lion I CAN'T see any IMAGES (ICONS) on any of the 300 photos.  Just the file names in all the different views.... Icon View, List VIew, etc.  If I have a Folder with 23 more folders inside, they don't even show up either.  I saw a step by step process of selecting the file and right clicking on it and opening it in Preview, then doing a copy and then pasting it on the original image in tghe get info window.  WHAT A PURE PAIN TO HAVE TO DO THIS TO 170,375 IMAGES.
    The other issue I have is that 93.5 % of the remaining icons that do exist on my system is that those 93.5 % are so pixelated they appear as a hugh checkerboard viewed through two inch thick glasses..... not for drinking, but the kinda glasses used by a blind man.  IE the remaining icons are so PIXELATED it is almost impossible to tell what they  are.
    BEN WELLAND...... What did you do to get this point? 
    Thank you, thank you, thank you, to whomever at Apple finally fixed this.
    After updating to Mountain Lion 10.8.2, SONY .ARW files (and I'm assuming Pentax .PEF files too) now render proper thumbnail icons in the Finder in list view, icon view, coverflow view, and columns view.
    Since this is now a recognized bug, I'm guessing that the free update to Lion (10.7.5) that Apple also just released yesterday (September 19th, 2012) will probably fix this issue too.
    Hooray!
    I have OS 10.8.2  and nothing has changed as far as being able to see photos / folders as image icons...
    rendered  proper thumbnail icons.
    I have thousands of photo files that show nothing other that the file names.
    The only way I can even see the file is to open it in Photoshop, or open the folder in Bridge. Even then after I open it in PS CS6, and save it again. It still is a "Empty" file...... no render proper thumbnail.
    icons 
    Any help will be appreciated.

  • Preview Unavailable for this File?

    Need some help on this one.  I want to upload a file to Lightroom 5 and it will not work.  The program opens the file but then says "Preview unavailable for this file".  Since I had no problem uploading other photos in this catalogue, I don't understand why Lightroom cannot find these particular photos.  I checked my backup hard drive and they are definitely there and I can open them in Canon preview program or even the Mac preview program with no problem.  Any help?

    Sorry it took so long to respond Keith.  I used a Canon T3i at the time.  All other photo files easily uploaded to Lightroom from the same trip except for this one set of files.

  • Preview icon for DV video files is blank

    I have just installed OSX 10.9 and I find that the preview icon in the Finder for a DV tape file is blank. This is in the column mode.
    Before Mavericks a small video window was displayed that I could click to get a miniature video preview.
    Any suggestions?

    I am having the exact same problem. None of my video thumbnails are showing up, and every time i open a file, it takes forever to convert the file to even play in QuickTime. I took my macbook to the Apple store, and they said there was nothing they could really do besides use time machine to back everything up and possibly downgrade the OS

Maybe you are looking for