I am grappling with the .eps format issue

I have thousands of .eps files, from years past, linked to hundreds of layout files. These were created in either Illustrator or Photoshop, but not with OSX all of these files must be associated with one or the other application. This means that if I choose Photoshop I must change each Illustrator .eps file back to open in Illustrator manually in the Get Info box. This is terribly inconvenient, and I am wondering if anyone has a better solution.
BTW I no longer make .eps links for my layouts, I use .ai or .psd. But this does not solve my problem with older files. I am hoping some other poor soul has found a better solution.

The only solution I can see is naming the extension differently to seperate the Illustrator and Photoshop versions of the .eps format.
Try .epsf and .epsi  on a duplicates of a file, change it's Get Info to one program or the other and test it out.
If it works, then you can rename the extension of your eps to +f or +i to open into "F" for Photoshop and "I" for Illustrator.
worth a shot.
If not head to the Adobe forums, likely someone there has a hack.

Similar Messages

  • Why reports uses the .eps format when emailing a report?

    Hi
    If you select to send a report by email, it automatically
    chooses the .eps format to send the report as an attachment.
    I know it stands for "encapsulated post script" (I think...),
    but is there a way to send in PDF format for example?
    Till now, the user has to generate the report in PDF format
    and then, manually, create an email and attach such file.
    And what program opens such type of file (eps)?
    Thanks
    Luis Cabral

    The .eps format is a postscript format type used to send directly to the printer. I really don't know why this format is good but ...
    A way to send an e-mail attachment in HTML, PDF or RTF format, is setting the parameters DESTYPE and DESFORMAT, but this way enforces you to create another way to trigger the e-mail cause the button e-mail in Oracle Reports uses .eps by default.
    I suggest you to create a parameter form with the format option and trigger the reports by RUN_PRODUCT built-in. If you don't need to preview the report, set the properties in the parameter form and trigger the report normally.
    DESTYPE=MAIL
    DESFORMAT=PDF or DESFORMAT=HTML or DESFORMAT=RTF

  • SAP format is not matching with the bank format

    Hello,
    I have created an invoice for a specific vendor and run the transaction F110 ,created a proposal and carried out a payment run.
    Later when I go to Environment --> Payment Medium --> DME Administration and choose one item and try to display it, the data
    medium contents are  being displayed correctly.But the displayed Data medium contents are not matching with the bank format
    for which the payment transaction has been made.
    Would request you to suggest the changes to be made either in DME or the corresponding ABAP code for making the Data
    medium contents  match with the bank format.
    Regards,
    Vineela.
    Edited by: Vineela S on Jul 27, 2011 8:24 PM

    Hi Kumar,
    There could be three reasons.
    1. You may have more than one recon accounts for different vendor groups. So, you need to select all the GL accounts when reconcile with Vendor balances.
    2. You may have some special GL transactions, which may post to different reconciliation accounts. Please check Special GL transactions (Down payments so on)
    3. Your vendor recon accounts may be changed after some postings. Please check. If changed, you need to select these GLs also for reconciliation with vendor balances.
    Hope this will help you. If not clear please reply, I will explain you.
    Pl. assign points if useful.
    Thanks

  • What's the deal with the video format?

    Hello! What is the deal with the video format? Does it mean I have to code the videos for 640*480 ? It won't accept any other size? What size do I need to select for widescreen format?
    With Quicktime pro I've been able to encode videos with a very nice resolution and small size, then try to synch them to the ipod touch and then the error, it can't be played. I use the .mov format, I like it more but if I have to use .mp4 then I'll use it.
    Thanks for the help!

    According to Apple's Specification, these are your video choices
    H.264 video, up to 1.5 Mbps, 640 by 480 pixels, 30 frames per second, Low-Complexity version of the H.264 Baseline Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats.
    H.264 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Baseline Profile up to Level 3.0 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats.
    MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats.
    http://support.apple.com/kb/SP496

  • Export values to listbox with the same format

    Dears,
    kindly i need some support please to solve this problem.
    I have a listbox that retrieve a data as per auto filter based on 3 criteria, but these data isn't retrieved with the same format, i retrieve these data from tow different tables, both of them exported with the default format,
    note: the table source is imported via "Existing connections" but the values format are processed at both of all, is this problem related to the data source or lixtbox options
    i uploaded the whole workbook, you can call the userform from sheet that called "Interface", and fill the 1 & 2 combobox with any inputs, and the last combobox you have to choose "Dec", then hit "Daily" or "Monthly"
    button
    Private Sub Daily_Click()
    Dim Source As Range, c As Range, i%, Aux As Worksheet
    Dim fa As Range, nc%, ca, v As Range, A As Worksheet, s$
    Me.ListBox1.ColumnCount = 11
    ListBox1.Clear
    Application.ScreenUpdating = True
    Set A = ThisWorkbook.Sheets("Daily")
    Set Aux = ThisWorkbook.Sheets("popup") ' auxiliary sheet
    Set Source = A.Range("A1:CB1")
    Set c = A.Range("a1").CurrentRegion
    Source.AutoFilter Field:=1, Criteria1:=Month_list.Value
    Source.AutoFilter Field:=4, Criteria1:=Leader_list.Value
    Source.AutoFilter Field:=6, Criteria1:=User_list.Value
    Set v = c.SpecialCells(xlCellTypeVisible) ' filtered range
    Aux.Cells.ClearContents
    v.Copy Aux.Range("a1")
    Set fa = Aux.Range("a1").CurrentRegion
    nc = fa.Columns.Count
    ca = Array(3, 13, 14, 15, 16, 17, 21, 30, 31, 32, 33) ' columns you want
    For i = LBound(ca) To UBound(ca)
    fa.Columns(ca(i)).Copy Aux.Cells(1, nc + 3 + i) ' create final range
    Next
    Me.ListBox1.List = Aux.Cells(1, nc + 2 + i).CurrentRegion.Value
    With Me.ListBox1
    Me.ListBox1.BoundColumn = 1
    Me.ListBox1.BorderStyle = fmBorderStyleSingle
    Me.ListBox1.ColumnHeads = True
    Me.ListBox1.BackColor = RGB(255, 255, 255)
    Me.ListBox1.ColumnWidths = "70; 75; 57; 80; 90; 150; 60; 80; 80; 80; 80; 70"
    Me.ListBox1.BorderStyle = 1
    Me.ListBox1.MultiSelect = fmMultiSelectExtended
    End With
    End Sub
         the workbook
    thanks a lot, 

    Either you need to reformat the values in memory as required before populating to the ListBox, or if the cells are formatted the way you want you can read the cell's text values, though not in one go as an an array.
    Based on a quick look of your code above try the following, but adapt if it's not quite right
    Set fa = Aux.Range("a1").CurrentRegion
    nc = fa.Columns.Count
    ca = Array(3, 10, 14, 16, 20, 21, 22, 23, 24) ' columns you want
    '' don't need this
    ' For i = LBound(ca) To UBound(ca)
    ' fa.Columns(ca(i)).Copy Aux.Cells(1, nc + 3 + i) ' create final range
    ' Next
    Dim lastRow As Long, j As Long ' put these up top
    ' after copying to Aux, but no need to
    lastRow = Aux.Range("a100000").End(xlUp).Row
    ReDim arr(1 To lastRow, LBound(ca) To UBound(ca))
    For i = LBound(ca) To UBound(ca)
    For j = 1 To lastRow
    arr(j, i) = Aux.Cells(j, ca(i)).Text
    Next
    Next
    Me.ListBox1.List = arr

  • Issue with the date format

    Hi,
    I have a query which uses other schema data using dblinks. I am facing performance issues with the query. I have the following condition in where clause
    c.src_data_dt BETWEEN TO_DATE('01-MAR-2009 00:00:00','dd-mon-yyyy hh24:mi:ss')
    AND TO_DATE('31-JUL-2009 23:59:59','dd-mon-yyyy hh24:mi:ss')
    TO avoid this performance issue, I have been asked to replace that with the following..
    c.src_data_dt BETWEEN '01-MAR-2009 00:00:00' AND '31-JUL-2009 23:59:59'
    But if I used like this, I Am getting the following error.
    ORA-01830: date format picture ends before converting entire input string.
    How can I resolve this error?
    Thanks
    Kaliappan

    kaliappan wrote:
    DATEThen your original approach is the correct one.
    You should ask the individual who told you to modify it for performance reasons 'why', as there will be no performance benefit from converting the DATE column into a string (which is what would have to happen if you queried the way you were told).

  • Problem with the number format in the graph axis with Report Generation Toolkit.

    Hi!
    I'm trying to use the Report Generation Toolkit to plot some graphs in Excel.
    My first problem is that I don't know how to configure the number format in the Excel Set Graph Font.vi so that my numbers are correctly displayed in the graph's axis. The only given option is general (0,0) but this is not enough for me, my numbers can get really small so I need engineering notation or fraccional format.
    Second: I also insert a table with the graph source data, but the numbers are not correctly displayed either: for example: 
    0,75 is shown as: 
    0,750000
    but 1,25  is shown as: 
    1!250!000
    My guess is I am making to much or wrong string to number conversions or Excel is getting it wrong but I can't find my way...
    Can someone help me with this?
    Thanks,
    Isabel

    Here is my VI, it's just a trial so it can look messy...
    Thanks,
    Isabel
    Message Edited by Isa_pm on 01-22-2007 01:12 PM
    Attachments:
    Create report.vi ‏96 KB

  • What's with the portrait format?

    Why are the themes all in a vertical format? Is there a way to make them fit to screen? Thanks

    You can use inspector to adjust the size of your pages, you need to use the Pages tab where you can adjust the dimensions including the footer (which is generally quite large). If you do change the footer, dont forget to deal with the Made on a Mac button.
    Will
    Some Inspector tips - Under construction

  • HT3345 Importing from xls problems with the date format (mixed european format)

    Hi.
    I made some spreadsheets with Neo Office and saved them in xls format. So I can import them in numbers, doing so in OpenOffice, LibreOffice or even the worst in Mircosoft Office on a PC works just fine. But importing them with Numbers 2.0.4 it just don't work.
    I have Mac OSX 10.5.8 and a PowerPC G4 1,67 GHz.
    The date format in all other programs is " 21.05.2011" and numbers creates "21/05/2011" out of it. Although my international setting is set to 23.05.2012. It defines the cells as my own format and takes than the totally wrong format.
    Does anyone know how to solve this problem, or how to change all the weird own formats in my international setting, which would be correct.
    Best regards.

    Hi Franklin,
    I used to have similar problem with date too. To make my forms and reports work for all date, I used to send the parameter from forms to the report in text format. In the report, I grab that parameter as "Text Format" (I mean the parameter created in Oracle Reports was really as Character in datatype property) then I manipulate them in my SQL to convert that "date" into real date using TO_DATE function. Usually I use DD-MM-YYYY as my date format.
    Hope this help.
    Regards,
    Franko Lioe
    Hello friends at www.oracle.com,
    when I sent some informations to Reports, one of these informations was a date field. Here, the format mask may vary from one computer to another - some computers here are using american date format; however, my computer was using brazilian date format.
    The fact is that I was sending date information to Reports using the mask dd/mm/yyyy, and Reports (in the computer that uses american date format) couldn't recognize it, stating that I was sending an invalid month. So I had to change my date information to dd-mon-yyyy and Reports could run in the other computer, but doesn't run here anymore - fact that obligated me to change my date format to american format.
    Is there any way for me to use a date format mask that's valid to all computers here? If other computers - with other format masks - meet the same problem, the use of this program may become something very complicated.
    Thanks for all answers,
    Franklin Gongalves Jr.
    [email protected]

  • How i get by with the sleep, pause issue after 1.0.2 update

    ok. i'm sure you guys are aware of the ipod sleeping/pausing issue after updating your ipod to 1.0.2. my ipod will pause whenever it is in the jensen dock station and the green battery indicator shows up. whenever i use the dock or remote to unpause the song, a few seconds later, it pauses again. so instead of using the dock or remote to play, unpause, whatever, i connect the ipod to the dock and use the wheel to navigate and 'only' use the play/pause button on the ipod itself to kick off the playing of music. if i go back to the remote, the ipod pauses. if i only use the menu and play/pause button on the wheel, my songs do not pause. it sure was nice using the remote before 1.0.2. i mean, it did come with the dock for my remoting pleasure but alas, i shall wait on the next update. hope this helps someone.

    I will have to try that... I took my iPod to work today and plugged it into my JBL docking station and it was skipping. I did notice it seemed to go to sleep more often when I used the remote... There's a whole other forum on this maybe you could check out too. But it's really annoying and I hope Apple comes out with a fix soon! I will definitely try to use the iPod wheel tomorrow and not the remote.

  • HT202447 is this dealing with the current "security" issues Apple is now addressing ?

    By disabling the Java web plug in in Safari does this deal with/fix the current "security" issues Apple is now addressing?

    If Software Update reports that the update is available, it means that you are or have been running Java. Install it. It will remove the Flashback malware.
    If Security Update 2012-003 does not appear, then you have not been running Java. Leave it disabled.
    In other words, merely un-checking the "enable Java" checkbox will not remove the malware if it is already present. You should install the update if it is offered to you.

  • I am happy with the CC format- it works for me

    There are a million and one negative threads about the new CC stuff. But I wanted to start a thread with a different tone.
    I realize that the majority of those in the forum probably see the CC change as a negative one. And in complete honesty, I understand their reasons, and even AGREE with them. The lack of an exit strategy from the cloud is a problem, though Adobe does say they are working on a solution. The place I work has no plans on upgrading to CC, though it's only maybe 10 users that are affected.
    But on a personal level, the CC option is a huge blessing to me. Though I do work in an environment where software is provided for me(we're currently on CS 5.5), with a new baby on the way and daycare costs taking up half my salary, I am ramping up my freelance business again as sometime in the next year, I'll probably become a stay at home dad.
    I've never been able to afford the Adobe suites outright. My wife and I do have a certain amount of personal money set aside each month to spend, but it's very difficult to come up with enough to purchase the suites.
    So when I saw that I could get everything for $30 a month for the first year(I do have a CS3 or above product registered), I was very happy. As somebody trying to get my freelance business running full speed again, this is a perfect opportunity for me to get into the Adobe software outside of my place of employment. And if things go well, the $50 a month after that won't be a problem. If I'm not making enough to afford $50 a month, then I'm probably not running the best business and probably won't be needing the tools for long.
    So this arrangement works perfectly for me. I do web design AND video/motion graphics editing, so having everything at my disposal is ideal.
    So in the sea of negativity that exists here in the forums(and not for bad reasons), I just wanted to say that I'm happy with this. Adobe have provided a way for me, who doesn't have a ton of money flowing in, to get into the great tools I already know and love. And in my view, at least temporarily, if I'm finding success, the continued fee is more than justifiable. So I want to say thank you to Adobe for providing this opportunity.
    Now, if I can please ask that this thread doesn't turn into yet another one of the already extensive number of threads bashing CC, and hopefully others who are thankful for this plan can chime in. Maybe nobody will, but I'm sure there are others out there. I just don't want this to degenerate into the same thing you can read in every other topic. Yes, I know that when I want to get off "the cloud", there are things to consider. I'm aware, and I accept that. Let's leave it at that.
    Thanks!
    Brent

    Biggles Lamb wrote:
    Chill out guys, getting personal will never ever change another persons view, right or wrong, they are entitled to them .
    The pros and cons of to CC or not to CC have been done to death
    Its a fact the CC model will work for some, especially newbies and small businesses.
    The risks associated with the CC model have been well documented.
    For long term users of CS perpetuals its generally a large hike up in cost compared to the upgrade system.
    Then there are the....... Adobe can rot it hell...... group who will never subscribe
    To each their own, you do the math to suit your cashflow whatever that is and then make an informed decision
    To those on the CC model, I'd like to offer some practical advice.........do not allow automatic updates.........make regular backups............develop an exit strategy of alternatives for when you can no longer afford the subscription costs............never ever assume that the Adobe update is bug free
    Enjoy your cloud
    Col
    Thank you for that post, and the advice. I just happen to be one of those who it does work for. I've been around long enough to know that CC isn't going to work for everyone(the large publishing/radio/web company I work for isn't upgrading to CC because of the costs involved). But it does for me as I potentially venture out into the full-time freelancing world and away from the more structured big office environment. I can't make decisions based on what is best for anyone else, or what will hurt or help Adobe. Just what affects me, and that's all.
    Brent

  • Error with the data format in the TXT file, sending as an Email attachment

    Hi all,
    I have an problem in the data formating in the TXT file while sending as an attachment via an email by using the FM "SO_DOCUMENT_SEND_API1".
    For eg:
    The data in the TXT file is looking like as follows:
    0 0 0 0 2        L O U D S P E A K R   O T H E R   3 8 W h i t e                  0 0
    0031  L O U D S P E A K R   O T H E R   3 8 Black                               0 000
    38    L O U D S P E A K R   O T H E R   3 8 Brown                                  0 00040
    L O U D S P E A K R   O T H E R   3 8 Brown                                         0 00042
    and so on
    But it should come as :
    0 0 0 0 2  L O U D S P E A K R   O T H E R   3 8 W h i t e
    0 0 0031   L O U D S P E A K R   O T H E R   3 8 Black
    0 00038    L O U D S P E A K R   O T H E R   3 8 Brown
    0 00040    L O U D S P E A K R   O T H E R   3 8 Brown
    All the internal tables are correctly filled.
    The code is as follows:
    gwa_objtxt = 'Please find attached DATA EXTRACT Sheet'.
      append gwa_objtxt to git_objtxt.
    describe table git_objtxt lines gv_cnt.
      clear git_doc_data.
      read table git_objtxt index gv_cnt.
      git_doc_data-doc_size = ( gv_cnt - 1 ) * 255 + strlen( gwa_objtxt ).
      git_doc_data-obj_langu = sy-langu.
      git_doc_data-obj_descr = lv_mtitle.
      append git_doc_data.
      clear git_packing_list.
      refresh git_packing_list.
    git_packing_list-transf_bin = space.
      git_packing_list-head_start = 1.
      git_packing_list-head_num = 0.
      git_packing_list-body_start = 1.
      git_packing_list-body_num   = gv_cnt.
      git_packing_list-doc_type = 'RAW'.
      append git_packing_list.
      Clear : gv_cnt.
      Describe table git_objbin lines gv_cnt.
      git_packing_list-transf_bin = 'X'.
      git_packing_list-head_start = 1.
      git_packing_list-head_num = 1.
      git_packing_list-body_start = 1.
      git_packing_list-body_num = gv_cnt.
      git_packing_list-doc_type = 'TXT'.
      git_packing_list-obj_descr = 'ATTACH.TXT'.
      git_packing_list-obj_name = 'book'.
      git_packing_list-doc_size = gv_cnt * 255.
      APPEND git_packing_list.
      clear git_receivers.
      refresh git_receivers.
      git_receivers-receiver = gv_eid.
      git_receivers-rec_type = 'U'.
      append git_receivers.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = git_doc_data
          PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = git_packing_list
          CONTENTS_BIN               = git_objbin
          CONTENTS_TXT               = git_objtxt
          RECEIVERS                  = git_receivers
        EXCEPTIONS
          TOO_MANY_RECEIVERS              = 1
          DOCUMENT_NOT_SENT                = 2
          DOCUMENT_TYPE_NOT_EXIST      = 3
          OPERATION_NO_AUTHORIZATION = 4
          PARAMETER_ERROR                    = 5
          X_ERROR                                      = 6
          ENQUEUE_ERROR                        = 7
          OTHERS                                        = 8.

    please give the code of
    contents bin =  git_objbin " how  this is getting populated.
    0 0 0 0 2 L O U D S P E A K R O T H E R 3 8 W h i t e <b>0 0</b>
    0031 L O U D S P E A K R O T H E R 3 8 Black
    0 000
    38
    from this im not able to understand is this over population or concatenation problem
    y dont u make a append to the final table
    like
    data : begin of itxt occurs 0, ,
    s1(132) type c ,
    end of itxt.
    loop at itab.
    itxt-s1+0(4) = itab-f1.
    itxt-s1+4(6) = itab-f2.
    itxt-s1+10(8) = itab-f3.
    itxts1+18(4) = itab-f4.
    append itxt.
    clear itxt.
    endloop.
    exchange this to the contents bin of hte Fm .
    regards,
    vijay.
    can u please mail the text file and the expected o/p to my mail id [email protected]  so that i can see the same from the data provided i m not able to check the result properly .

  • Did something change with the video formats in iTunes 10.5?

    Good afternoon,
    Since updating to iTunes 10.5, I've found that I can't sync any videos (whether they be TV Shows, Films or Video Podcasts) to my iPod. I've tried various different methods of trying to fix this but every time I do I get given the error message "Some of the videos in your iTunes library, including the video "xxxxx", were not copied to the iPod "xxxxx" because they cannot be played on this iPod."
    Now, any of the videos added prior to iTunes 10.5 still work and I can sync them to my iPod without a problem and still play them from there, but anything since then it's just been throwing out the error. I have a 16GB iPod Nano with the latest software version (1.0.2), running off Windows XP SP3, and all Apple software I use is up-to-date.
    Please can anyone give me any hints or help in solving this problem?
    Thanks,
    Dan

    I think you do not understand, this is all in iTunes under windows.
    Here I have a few screens of the problem.
    Here is my iTunes video list
    Here is me looking at the info of a video in the iTunes library
    Here is a list of videos on my iPhone
    And here is the info for a video that is on the iPhone
    As you can see after the video has been transferred the artwork tab and the artwork it self disappears.

  • Error with the keyfigure format

    Hi Guru's
    I'm loading the data from the Flat file to the ODS
    the key figure net masss volume with the data type quantity show 's the value multiply thousand but it in the psa it shows correct value what is there in the source system
    for eg: value for this key figure 48.984 in the flat file means 48.(point) 984
    but it is showing in the ods 48,984(comma) so some where it is multiplying by 1000 like it is applying coumn level
    and there is no transfer rules it is direct mapping
    there is no routines
    if i change in the user profile that is W.R.T the user only but i need this globally
    please let me know where is the problem
    Points will be assign

    Hey,
    So you need to change your flat file.
    1) For this key figure replace "." (dot) with "," (comma)
    2) Put this entire number in ""
    For example
    12.345 was your original number replace "."(dot) with "," comma. Means it would be as below
    12,345
    Now put this in inverted colon
    "12,345"
    3) Save this file.
    4) Reselect this revised file in info package.
    5) make sure escape indicator is "
    6) delete PSA data.
    7) again run package
    Now you should get it fine.
    Please let me know.
    Thanks,
    Mihir

Maybe you are looking for

  • Cleared Items in SAP shows "0" in AP Report in BW?

    Hi We have a AP: Days overdue analysis report based on std DS 0FI_AP_3. The report shows clear items as well in the BW report. can anyone explain me the purpose of the AP report and how to make the clear items not display in the BW Report? Thanks in

  • Double click not working on any folders, photos or anything

    When I double (left) click on any folder on my desktop, on on a photo in iphoto, I thought it was supposed to open it but it doesn't do anything. I've already tried to go into Preferences, mouse and seen if there's a way to fix it there, but I don't

  • Fixed Image roll over question....

    I am putting the finishing touches on my photography business site (www.colbybrownphotography.com) and came across an interesting problem. Instead of using iWEB's photo gallery pages (which I can't stand) I decided to set up my page as an art portfol

  • Overpaid subscription

    This is the most difficult site to use in the world The support skype link does not work and has not worked for months The refund link does not work either It is a mission to get anywhere. I inadvertently kept adding subscriptions in April in fact ad

  • Error Occurs When Trying to Consolidate Library

    I'm trying to consolidate my library because I'm copying it over on another computer. However, when I attempt to consolidate, an error sign comes up which says: "Copying Music failed. The file name was invalid or too long". Any advice on how to resol