Name of EPS file

Hi
I am printing from Oracle Forms. I am able to set the printer name using DESNAME. Is there any possibility of naming the .eps file as I wish to use the name in some pre-printing processing? At the moment it seems like the filename is a series of numbers but they don't seem sequential and I do not see any other parameters in SET_REPORT_OBJECT_PROPERTY that would enable me to change the name.
Thanks for any help in advance.
Trevor

Hi Skullmaker, thanks for taking the time to reply. It is certainly very kind of you. However, there is most definitely a problem. I am pretty familiar with Illustrator and I know how to "repair" broken image Iinks. The problem stems from the linked image file name being in Japanese. For some reason, when I open the AI to which the images are linked, the AI file doesn't look for the Japanese file name, but instead reproduces some garbled name for the file.
Now, if the AI file only had two or three eps files linked to it, I could simply "repair" the links using a method or trial and error. It would (hopefully) be apparent which of the linked images belonged in each space. However, I have several AI files to work with, each of which has several eps files linked to it with Japanese characters in the name.Trial and error would be nearly impossible.
Today I was able to get PDF versions of the AI files from my counterpart in Japan. Therefore I can at least use the PDF file to tell which images belong in which spot. Now it is just a matter of renaming all of the eps files and then "repairing" the links. A time consuming task for sure, but not impossible.
I would still love to figure out a more elegant solution . . . or, if there isn't one, I would be somewhat satisified to hear that from someone from Adobe.
I do think the jpg I attached to my earlier reply pretty clearly demonstrates the problem. However, perhaps I have over estimated my communication skills.

Similar Messages

  • CS5 exporting TIF from EPS appends artboard name to the file name

    We have recently upgraded to CS5 from CS3. We routinely create EPS files, then export them to TIF's for final use. Previously I used the CROP MARKS tool to set the specific visual size of the art. Without the crop marks, when exporting to a TIF the exported file clips to the edges of the bounding box. In the event I have vertical lines at the outside limits of the drawings they stand the possibilitiy of getting "clipped" or dropped off when the resulting TIF is printed or placed in another document.  I understand the ARTBOARDS have replaced the crop marks setting.  If I create an art board, rename it as MYTAK4 ARTBOARD and then export from the EPS to a TIF, having the radio button "artboard" checked, the resultant TIF file becomes FILENAME_MYTAK4_ARTBOARD.tif.  With the hundreds of files that we create and continually revise, it is important that the any files we revise, maintain the same file name, not another file with same base name, with an appended artboard name tacked on before the TIF extension.  The only solution I have arrived at is to RENAME the file once the TIF is exported to remove the unwanted artboard portion of the name. Anyone have a better solution?

    Hi,
    We just released this tool: FERRY (http://ferry.thedamarmada.com). It does exactly what you want and a little bit more.
    I think it's worth it a try.
    It comes with a free demo that will export 5 layers.
    Take a look and let us know if it's what you need.
    It could be easily tweaked.
    Jordi

  • Export Indd to EPS/JPG and set the file name  for EPS/JPG file

    Hi,
       When I export the INDD to JPG/EPS, I want to set the file name with pageNumber  for JPG/EPS files using javascript.
    For Example
    If I set the file name as EPSFile.eps, after exporting the indd(with 2 pages) to eps
    ,files are generating in the following name EPSFile_1.eps, EPSFile_2.eps.
    but I want to set the file name as EPSFile_001.eps and EPSFile_002.eps using javascript.
    anyone knows please reply for this.
    Regards,
    Mubeen

    Hi,
      I tried the following code.
    var JPGe = new File("Applications/PDF/JPG/file.jp");
    app.activeDocument.exportFile(ExportFormat.jpg, );
    when I use this code ,exported jpg file names are
    file.jpg, file1.jpg,file3.jpg.
    but ,I want the output file names as file_001,file_002,file_003,
    Thanks,
    Mubeen

  • Image Processor Pro and Picture Processor load eps files without rasterizing them

    Hi. My name is Lucas. Im from Argentina, now living in Brazil. I have the problem that is in the title. Im new doing this stuff but reading a lot i discovered that both scripts open eps files and because they dont get reasterized, then saved files looks preety bad.
    I know that there are some parameters to open eps, ex:
    var epsOpenOptions = new EPSOpenOptions();
       epsOpenOptions.antiAlias = true;
       epsOpenOptions.mode = OpenDocumentMode.RGB;
       epsOpenOptions.resolution = 72;
       epsOpenOptions.constrainProportions = true;
    I have to say that looking for a solution a found a script and modified to suit partially my needs. I said partially because i need the script to look folders and save output files with same structure. Here is the script that manage one folder at a time:
    #target photoshop
    // Asks user for input folder
    var inputFolder = Folder.selectDialog("Select a folder to process");
    // Asks user for output folder
    var OutputFolder = Folder.selectDialog("Select a folder to save your Tiffs");
    if ( inputFolder != null && OutputFolder  != null ) {
       // Makes list of all files located in that folder
       var fileList = inputFolder.getFiles( "*.eps" );
       // Create a EPS option object [height & width are doc size]
       var epsOpenOptions = new EPSOpenOptions();
       epsOpenOptions.antiAlias = true;
       epsOpenOptions.mode = OpenDocumentMode.RGB;
       epsOpenOptions.resolution = 72;
       epsOpenOptions.constrainProportions = true;
       // Open each file in turn
       for (var i = 0; i < fileList.length; i++) {
          // open the file
          app.open( fileList[i], epsOpenOptions );
          var baseName = activeDocument.name.slice( 0,-4 );
          // put your code to 'save as' the file here
          var saveFile = new File ( OutputFolder + "/" + baseName + ".jpg" );
       SaveForWeb(saveFile,60); // set quality to suit
    function SaveForWeb(saveFile,jpegQuality) {
      var sfwOptions = new ExportOptionsSaveForWeb();
      sfwOptions.format = SaveDocumentType.JPEG;
      sfwOptions.includeProfile = false;
      sfwOptions.interlaced = 0;
      sfwOptions.optimized = true;
      sfwOptions.quality = jpegQuality;
    activeDocument.exportDocument(saveFile, ExportType.SAVEFORWEB, sfwOptions);
    activeDocument.close( SaveOptions.DONOTSAVECHANGES ); 
    So, if you know some way modify image processor pro or picture processor i will be very pleased.
    Because i will only use the script to manage eps files and save them as jpg (save for web) i dont need an special button to activate that option. Keep it simple. Thanx!!

    You can tweak ImageProcessorPro.jsx by make the following edit.
    Search for code that looks like this:
    ImageProcessor.prototype.openDocument = function(file) {
      var self = this;
      var settings = self.settings;
      var mode = DialogModes.NO;
      var ext = file.strf("%e").toLowerCase();
      var isRaw = ImageProcessor.CAMERA_RAW_FILES.contains(ext);
      if (isRaw) {
    and insert this code right after it:
      if (ext == "eps") {
        var epsOpenOptions = new EPSOpenOptions();
        epsOpenOptions.antiAlias = true;
        epsOpenOptions.mode = OpenDocumentMode.RGB;
        epsOpenOptions.resolution = 72;
        epsOpenOptions.constrainProportions = true;
        try {
          var doc = app.open(file, epsOpenOptions);
        } catch (e) {
          Error.runtimeError(9002, ZStrings.UnableToOpenErr);
        return doc;
    I haven't tested this at all but it looks good from here.

  • Very slow working with eps files over new network

    Please help!!!
    Our IT has recently upgraded us from a OSX server to a 2 Terabyte SNAP SERVER 520.
    I am using the only INTEL Mac in the department (we have another 10+ G5 PPCs running 10.4), and the only one using OSX 10.5. Since changing to the new server, I am also the only one with several file saving/opening issues.
    I believe this is a network issue.
    It is with mostly ADOBE products and we all know they will not support, working over the network. Due to the volume of files, I simply cannot drag files to my HD, and work locally. It is not practical. I also know that we have not had any issues in the past, and don't see why I can't get to the root of the problem.
    **The most obvious issue is Illustrator .eps files.**
    I can open and save .ai files in good time both locally, and over the network. There is no difference either way. HOWEVER, if it is an .eps file working over the network is not practical. I get the spinning wheel for about 2 minutes each time I open, save, or make a change. It is VERY slow. Working on eps files locally is fine (about the same speed as .ai files), but as soon as it hits the server, it is painfully slow to do anything.
    Additionally, when saving Photoshop, Illustrator, InDesign AND Quark 7 files (direct to the network), I am regularly getting "Could not save because write access was not granted", or "Could not save becasue unexpected end-of-file was encountered", or "Could not save because the file is already in use or as left open" type errors.
    I simply then click 'OK', and then hit save again, and it either gives me the same message, or it goes into 'save as' mode which lets me save the file (same name, and same location, but the original file has disappeared).
    I am connected to the server IP address through afp:// but have also tried cifs://. IT have removed all access to the server through smb://, so I cannot try this.
    ANY help is appreciated.

    With regard to the EPS issue, I think I may have found the source of the problem for SMB users: the Suitcase Fusion plug-in.
    Did you make any progress on these issues?

  • Suddenly can't open .eps files in FW8

    Hi all-
    I suddenly can't open .eps files in FW8.  Starts to open and then says "Internal error occurred"  Text tool is also acting up.   I think it may be related to one of the extensions I downloaded  from the Adobe Exchange.  Or, maybe it was something I did.  Probably the latter.  Either way, it seems like my FW8 has gotten corrupted.   Ran spyware, adware, defrag, and virus scans.  Even talked nice to my computer, but nothing has worked.  I looked for patches or downloads on Adobe's site but there are none for FW8.
    Anyway, I'm guessing my only option is to reinstall, unless someone out there has a better idea.  If I do reinstall, does it erase everything?  Meaning, will I lose all extensions and all the settings?
    Thanks for your help!

    Using Win XP Media center edition v 5.1 Service Pack 3.  Been too afraid to upgrade to Vista.  Probably about time to upgrade my FW.
    I searched my entire machine for that file, both by file name and by all .txt files and could not find a "Preferences" file anywhere.  Here's what came up under the FW directory path:
    Thanks for your help, Heathrowe!
    -Mike

  • Weird CS4 error when saving eps files on a Mac: "...specified files already exist in the target location"

    Hi There,
    All 3 workstations in our studio are experiencing weird file behavior when re-saving eps files from Illustrator.
    Basically Illustrator creates a new file in addition to the original and adds a "-01.eps" onto the file name. If you re-save your original, Illustrator brings up a dialogue box that states:
    Some of the specified files already exist in the target location. The files marked below will be replaced:
    filename.eps
    filename-01.eps
    We've been deleting the "-01.eps" files each time but it's becoming tedious. The behaviour occurs when re-saving an eps file to a server or the desktop.
    All machines are new Quad-core MacPros running:
    - Leopard 10.5.8
    - Illustrator CS4 14.0.0
    We've checked for Illustrator updates from within Illustrator but we seem to be running the latest version.
    Is anyone else experiencing this behavior?
    Any help or pointers in the right direction would be much appreciated.
    Cheers
    Ben

    Thanks for the reply.
    The error occurs when we save the document but if we choose save as, "Use Artboards" seems to be unchecked so not sure if this issue is related or not. Will re-save the document using save as then see if the issue persists.
    Why do we still use eps?
    Basically because we've found it to be much more compatible. Our entire logo library is in eps format (18 years worth) partly because it was previously the only format to use and partly because it allows account managers to send logos to clients, printers, TV stations etc and not involve the studio (saving out an eps version).
    Although "Create PDF compatible file" is a good idea, we've encountered costly issues with colours and images - especially if the recipient is using old CS software, non-Adobe software or is using some kind of hardware RIP. We now just go with what we know works.
    But I do find saving eps versions of everything to be a bit painful. In fact, I've always found Illustrator in general to be a bit painful when compared with Photoshop or AfterEffects. Illustrator seems like it's been developed by a different company some times!
    Cheers, and thanks for the help.

  • Eps files not showing up in FM

    Hi,
    I made an eps file in Illustrator, and when I import it into FM I get an empty box.  I've included a screen shot of my eps options.   What am I doing wrong?   I just updated to a new computer.  It's the same CS6 software.  Windows 7.

    I get this error too when I first save a new file as an eps.  I hit OK and then it saves.  And if I save it again with a new name I don't get this error.

  • Is this possible? Using Illustrator Script to duplicate EPS file 35 times & changing C,M,Y,K value?

    Hi everyone,
    I need HELP I have a bunch of vector clip arts, which are Black (C,M,Y,K100). I need it in 35 different colors Saved as Illustrator 8 EPS and I also need those file in 72 DPI PNG Transparent files.
    Thanks for any help.
    Akkudo.

    Good evening,
    0) In your templates give a specific namme to each path or groups or items via the layers window.
         The objective is to use a script like these two:
        Set myLayerCercle = my_Laieur_elements.GroupItems("Laplupart").PathItems("LaplupartCercle")
            myAiApp.Redraw
            myLayerCercle.FillColor.Spot.Color.Cyan = 0
            myLayerCercle.FillColor.Spot.Color.Magenta = 100
            myLayerCercle.FillColor.Spot.Color.Yellow = 80
             myLayerCercle.FillColor.Spot.Color.Black = 0
           myAiApp.Redraw
    or
      textRef.Paragraphs.Add ("myNewText")
        textRef.Paragraphs(1).ParagraphAttributes.Justification = aiRight
        textRef.Paragraphs(1).CharacterAttributes.Size = 12
        textRef.Paragraphs(1).CharacterAttributes.HorizontalScale = 10
        textRef.TextRange.CharacterAttributes.BaselineShift = fontBaseLineShift
        textRef.TextRange.CharacterAttributes.TextFont = myAiApp.TextFonts.Item("Times")
        textRef.TextRange.CharacterAttributes.FillColor.Black = 0
        textRef.TextRange.CharacterAttributes.FillColor.Magenta = 100
        textRef.TextRange.CharacterAttributes.FillColor.Yellow = 0
        textRef.TextRange.CharacterAttributes.FillColor.Cyan = 0
    If you agree please send your eps file via my email. I could be than more efficient.
    Have a good evening
    Patrice
    *) open an office sofware (Word or Excel) and go to the Visual basic editor (alt+F11) and
    copy and paste these script; replace nom_docAi  with your eps file name
    Public nom_docAi
    Sub myPrg()
    call OpenAi
    call openBaseFile                          '= open the eps file
    call myRectangle(100,100,200,300)
    call saveEPS(nom_docAi )
    call savePNG(nom_docAi )
    end sub
    Sub OpenAi()
    '*** le fichier excel et illustrator se trouvent dans le même répertoire
    myPath = ActiveWorkbook.Path
    '*** Définition de la variable "application"
    Set myAiApp = CreateObject("Illustrator.Application.CS4")
    End Sub
    Sub openBaseFile()
    '*** Définition et ouverture du fichier illustrator de base
    nom_eps = "cycle.eps"
    'nom_docAi = myPath & "\" & nom_eps
    nom_docAi = "G:\graph" & "\" & nom_eps
    Set myDocAi = myAiApp.Open(nom_docAi, 1)
    End Sub
    Sub saveEps(myPictureName)
    '*** Sauvegarde fichier
    Set myDocAi = myAiApp.ActiveDocument
    Set myEpsSave = CreateObject("Illustrator.EPSSaveOptions.CS4")
        myDocAi.CropBox = myDocAi.VisibleBounds
        myEpsSave.EmbedAllFonts = True
        myEpsSave.Preview = aiColorTIFF
        myEpsSave.postscript = ailevel3
        myAiApp.ActiveDocument.SaveAs myPictureName, myEpsSave
    End Sub
    sub myRectangle(x, y, LenghRect, HeightRect)
    '*** Sélection du calque recevant les rectangles
    Set Laieur = docAi.layers("data")
    myAiApp.Redraw
    Set myRect = docAi.PathItems.Rectangle(y, x, LenghRect, HeightRect)
    myRect.FillColor.Cyan = 0
    myRect.FillColor.Yellow = 100
    myRect.FillColor.Magenta = 35
    myRect.FillColor.Black = 0
    myRect.Stroked = False
    myAiApp.Redraw
    'mTab = myCColor(mType)
    End Function
    Sub savePNG(myPictureName)
    '*** Sauvegarde fichier
    myPictureName = Replace(myPictureName, ".eps", ".png")
    Set myAiApp = CreateObject("Illustrator.Application.CS4")
    Set docAi = myAiApp.ActiveDocument
    Set pngExportOptions = CreateObject("Illustrator.ExportOptionsPNG24.CS4")
    pngExportOptions.AntiAliasing = True
    pngExportOptions.Transparency = True
    docAi.Export myPictureName, aiPNG24, pngExportOptions
    End Sub

  • Eps file to PDF file

    I have a FM file which contains several referenced .eps files.
    The words in the graphics display quite normally in the FM file, however, some of the letters disappear in the converted PDF file. They are not missing as cropped, but missing here and there.
    Could anyone give me a hint?
    Thanks in advance!
    Alice

    FrameMaker does not display the EPS data, but only the bitmap preview present in the EPS file.
    You can start troubleshooting by determining that the EPS files you are using are valid and fully functional (and do not reference fonts which you don't have).
    This can be doen by distilling the EPS files directly. In Distiller, select File > Open; choose "File of type: EPS" or change the file name to *.eps.
    Shlomo Perets
    MicroType * http://www.microtype.com
    FrameMaker training & consulting * FM-to-Acrobat TimeSavers
    "Improve Your FrameMaker Skills" live web-based training sessions

  • Open eps files in Photoshop

    Is it possible to avoid the dialog box 'Rasterize Generic EPS format' while opening eps file in Photoshop.
    I wanted to run the batch process on a set of eps files for converting to GIF. Whenver the eps file is opened this dialog box appears.
    Thanks,
    Sashi

    Sashi,
    I have been working on the same thing you have and found another forum used to batch process pdf files, which easily altered to funtion for processing eps files.  The script asks you to select a folder where your eps images reside.
    var epsOpts = new EPSOpenOptions();
    epsOpts.antiAlias = true;
    epsOpts.mode = OpenDocumentMode.RGB;
    epsOpts.resolution = 72;
    epsOpts.constrainProportions = true;
    epsOpts.width = new UnitValue( 1700, 'px' );
    #target Photoshop
    app.bringToFront;
    var inFolder = Folder.selectDialog("Please select folder to process");
    if(inFolder != null){
    var fileList = inFolder.getFiles(/\.(eps)$/i);
    var outfolder = new Folder(decodeURI(inFolder) + "/Processed");
    if (outfolder.exists == false) outfolder.create();
    for(var a = 0 ;a < fileList.length; a++){
    if(fileList[a] instanceof File){
    var doc= open(fileList[a],epsOpts);
    var docname = fileList[a].name.slice(0,-4);
    while(app.documents.length){
    var saveFile = new File(decodeURI(outfolder) + "/" + docname + ".tif");
    SaveTiff(saveFile);
    activeDocument.close(SaveOptions.DONOTSAVECHANGES) ;
    function SaveTiff(saveFile){
    tiffSaveOptions = new TiffSaveOptions();
    tiffSaveOptions.embedColorProfile = false;
    tiffSaveOptions.imageCompression=TIFFEncoding.TIFFLZW
    activeDocument.saveAs(saveFile, tiffSaveOptions, true,Extension.LOWERCASE);
    Hopefully this script will help, as it is helping me.

  • SMB and EPS Files (all files have .eps extensions)

    HI All,
    We've turned off Appleshare on our Microsoft SBS Server and have all our mac clients connecting via SMB - previews of folders within apps is now much much faster and we can now have longer file names.
    However, all of our eps images are screwed. They all have file extensions but Illustrator cannot import them or re-link them. If we open them in Photoshop and re-save them, then Illustrator can link to them.
    But we have thousands of eps images and using a batch process action is painful as Photoshop can't determine the difference between a vector eps and a photoshop eps before it opens them (as far as we can tell) - so we have to manually choose which eps files to open.
    It would be easier and safer if we could just fix whatever is wrong with the server - does anyone have any suggestions?
    Any help would be much appreciated.
    Cheers

    "It would be easier and safer if we could just fix whatever is wrong with the server - does anyone have any suggestions?"
    Um, turn Appleshare back on.
    No, seriously, though, it's this Microsoft "Services For Macintosh" (aka Appleshare) feature that allows your Macs to connect to the server and "see" the files on it properly. Let's take an .eps file as an example. On the Mac, the single file contains a resource fork-based preview icon, the data fork holding the EPS data, a file type of 'EPSF' (EPS file), and a creator code of 'ART5' (Adobe Illustrator). Ordinarily, a PC-formatted disk only has room for, and understands, the data fork information and the filename; the rest would be lost if it wasn't dealt with in some way. The way Microsoft's "Services For Macintosh" deals with it then, is that, when a Mac writes a file to the server over the network, what would be a single Mac file, is split up into 4 separate NTFS "streams". One stream is the main one, which contains the data fork information and filename. The other three hold the small amount of special "Mac" information.
    Now, if you have the server up and running as SMB, and the Mac connects to the server as SMB, you will only see one of the parts/streams of the original file. The special Mac information that's saved in the other 3 streams isn't combined with the primary stream to make the file "appear" properly, like it does when you have Microsoft "Services For Macintosh" running and connect the Macs to the server over AFP.
    I can gather that performance with the Microsoft "Services For Macintosh" is relatively poor compared to that of SMB. If you'd like to switch over to SMB, you can carefully follow the following procedure to make the switch over.
    Let's say your sever has 40 GB of files on it. At the moment, if you connect your Mac to the server over SMB, the files appear improperly. So, instead, find a Mac with a lot of free space on the local hard drive, and connect to the server over AFP (and have the server running AppleShare/Services For Macintosh), so that the files "appear" properly. From the Mac, copy all of the 40 GB worth of files over to the Mac's local hard drive. Then disconnect the Mac from the server. Adjust the server so that it is no longer running AppleShare/Services For Macintosh, and from the same Mac, connect to the server over SMB. Again, if you look at the original files on the server, they will appear improper; this is normal. From the Mac, create a new folder on the server, separate from the original folder holding the original 40 GB worth of files. Name it something like "Server Files (SMB)". Then, from the Mac, copy the 40 GB worth of files that you saved to the local hard drive into that "Server Files (SMB)" folder on the server. After you've finished copying them and you look at them from this Mac, you'll notice that these files should appear "correctly".
    Now, if you continue to have the AppleShare/Services For Macintosh shut off, and you connect other Macs to the server (via SMB), they should be able to see the files in the "Server Files (SMB)" folder correctly. Basically, you would no longer use the original 40 GB of files, and instead, use the ones inside the "Server Files (SMB)" folder, which will appear properly to the connected Macs.
    Hope this helps....
    Dual 2.7 GHz PowerPC G5 w/ 2.5 GB RAM   Mac OS X (10.4.6)  

  • InDesign CS3 "White Box" when printing with linked Photoshop EPS files

    This problem has been covered before, but never really resolved:
    Robert Levine, "InDesign CS3 Erratic White Box Phenomenon with Placed Photoshop EPS files" #1, 1 Apr 2008 11:05 am
    Now, I'm aware that we should no longer be using EPS files. I wholeheartedly agree. But until we can convince the department to change to another format (namely PSD or TIFF) for our vast library of images, I need a workaround.
    It seems that setting the clipping path for each linked image to "Photoshop Clipping Path" resolves this issue. So I tried writing an AppleScript that would find each linked Photoshop EPS and set it's clipping path to "Photoshop clipping path", but it didn't work for me (my expertise with AppleScript is basically nil.)
    Can anyone assist with the creation of this script? Or does anyone have a better suggestion for solving or working around the Photoshop EPS erratic white box printing problem?
    Thanks!

    >Why??????????
    Because they've got zillions of EPS and have no time to resave them all and because it
    b should
    work even if Buko doesn't like EPS...
    (Your vendetta against EPS takes on strange proportions. Were you bitten as a child by a rabid EPS and have sworn to wipe them out? Must be an interesting story behind it ;) )
    Brian, this script seems to do the job with one very important caveat: I see no way of finding out which path is active in the EPS (in case that more than one). So the script simply activates the first in the list.
    tell application "Adobe InDesign CS3"
    set aDoc to active document
    set allLinks to links of aDoc
    repeat with n from 1 to (count allLinks)
      set aLink to item n of allLinks
      if link type of aLink is "EPS" then
       set anEPS to parent of aLink
       tell clipping path of anEPS
        set ePaths to photoshop path names
        if (count ePaths) > 0 then
         set clipping type to photoshop path
         set applied path name to item 1 of ePaths
        end if
       end tell
      end if
    end repeat
    end tell

  • Help with imported eps files from photoshop and illustrator using PANTONE

    I am new to InDesign and running into some very frustrating issues. I am preparing a catalogue for print which was created in Quark XPress previously. I tried converting it initially but had all kinds of strange things happening with type re-wrapping. The printer advised to recreate in InDesign. FIne by me because I'll learn as I go along.
    So I created a page in InDesign and place and eps file created in Illustrator using a spot Pantone color and a halftone created in Photoshop also using the same spot Pantone color. In InDesign the color swatch menu show both colors one as 228 C and the other as 228 C 1. How do I get just one definition for PMS228 coated that works across all three programs? Stuff like this pisses me off. Adobe should have one definition across all three.
    Help!!!

    My best guess for the two definitions is that the CMYK values of the colours do not match, so InDesign treats them separately. You can merge them using the In Manager. Open the Swatches panel and select Ink Manager from the flyout menu. Select PANTONE 228C 1, go to the Ink Alais pop-up menu, and select PANTONE 228. Now InDesign will treat the two colours as one separation on output.
    You should also take the time to open each graphic and resave as a native file. This means .psd for Photoshop and .ai for Illustrator. While there, see if you can make sure the colour names and definitions are consistent.

  • EPS files wont save? Ai files, no problem!

    I am using CS6 and have had this problem for while. The strange thing is it is now happening on TWO computers? Different specs, but my computer is:
    Model Name:          iMac
      Model Identifier:          iMac13,2
      Processor Name:          Intel Core i7
      Processor Speed:          3.4 GHz
      Number of Processors:          1
      Total Number of Cores:          4
      L2 Cache (per Core):          256 KB
      L3 Cache:          8 MB
      Memory:          16 GB
      Boot ROM Version:          IM131.010A.B05
    so it is not a spec issue.
    I have tried saving basic EPS files with NO content at all to the desktop (I am not working to/from server). They work fine. But if I add 3, 4, 5 basic outline rectangle shapes, it struggles to save the EPS. It spins for about 10 seconds and then comes good. If I add objects to the files, it takes longer.
    BUT!!! On very rare occasions it will save basic files quickly. WHY OH WHY WOULD IT DO THAT!!!
    I have: updated all software and IOS is upto date. I have had a clean install of the OS, and recently unistalled one version of Illustrator CS6 and installed another version (original version was 16.7 the new version is 16).
    I have searched forums and come up blanks. The other CS6 apps are fine. Speedy and top draw. No problems.
    Can anyone help? I am really struggling with this and it is affecting my work load.
    Please note, I have taken the other computer back to the Apple dealer, they have checked it and said there is no problem? Run all the software ETC... and nothing is showing up as a culprit. I keep thinking it is software rather than computer because EVERYTHING else is perfect.

    Do you face the same problem, when you print those file to "Adobe Postscript File" printer?
    Please try deleting all the printers in your system, try save EPS, install back all the printers and try once again saving EPS.

Maybe you are looking for

  • Doubt in creation of Index

    Hi frnds,     Plz tell how to make INDEX in se11 tcode.         wht is Secondary index how to create? Thanks, Gowri

  • Working with password protected PDF, need to unlock and save to read when I'm offline. Please help!

    School provides text books in password protected format. Need to read on the go, without Internet acces

  • How to call Java methods from a Windows application?

    Hello all, At our company, we need to integrate our product which is a Java Swing application with a Windows application. Specifically, we are trying to call Java methods that reside in our application from the Lotus Notes email client application, w

  • ORA-1652

    Hi,   We are running SAP on ECC 5.0 , Oracle 10.2 and windows 2003 x-64 bit. We have tried to export the production system and getting failed several times. The log is as follows. DbSl Trace: ORA-1652 occurred when executing SQL statement (parse erro

  • 10.4.10 - kernel panic w/ wireless?

    Hi, Got yesterday few kernel panics releated to wireless driver (see bellow). This started happening after installing 10.4.10. Sundenly, I've got problems with wireless - ie connection lost for no reason and only way to fix that was to restart comput