SaveAs option

I open an eps file in Photoshop. I wanted to save this file as .eps after few modifications. If i pass the below statement i receive an error.
  phot_app.ActiveDocument.SaveAs(outFilename.ToString(), , , ".eps")
How to save an eps file opened in Photoshop as .eps?
regards,
Sashi

app.activeDocument.saveAs(File,saveoptions,copy,ext)
File is a file object, not a string for a file name. You make it like this...
outFile = new File (outFilename.ToString());
saveoptions are the options you need specifically to save your file. Quality, compression, etc. You set them all into the save options object.
copy is either true or false depending on if you are saving as a copy or not.
ext you already got.

Similar Messages

  • Alv report save option

    hi experts,
    I have an executable program which displays alv output, my requirement is after the output is displayed in ultilities tab(drop down) we have saving option which is generally disabled.
    how to make this enabled?
    regards,
    jayant

    I guess you are talking about saving variants, aren't you?
    For this you should use
    data: ls_variant type  disvariant.
    ls_variant-report = sy-repid.
    l_variant-variant = 'SOME_SAVED_VARIANT'.
    CALL METHOD gr_alvgrid->set_table_for_first_display
       EXPORTING
          i_save = 'A'   "this will enable save option
          is_variant = ls_variant  "this will set default variant in layout
    Regards
    Marcin

  • Printing BI Publisher report from OAF Page WITHOUT Preview or Save Option

    I have a requirement to print a BI Publisher Report on the invoke of a Button from a OAF Page. I have followed the method suggested in the below link to integrate OAF and BI Publisher.-
    http://apps2fusion.com/at/51-ps/260-integrating-xml-publisher-and-oa-framework
    In this scenario, I already developed Data Definition (XML) and Template (RTF) for the report and a self service page with 'Generate PDF' button. When the button is clicked the template is getting filled with the data from the database and displaying the PDF output. A dialog box with 'Open/Save/Cancel' appears before the PDF document is shown.
    But my requirement is to avoid this dialog box and Save option so when the button is clicked the document has to be directly sent to the printer.
    Is there anyway to achieve this? Please help as this is very urgent..
    Thanks,
    Naren

    Naveen,
    You need to read the documentation here:
    http://www.oracle.com/technetwork/middleware/bi-publisher/documentation/xmlpdocs-084437.html
    All of the information you need is in these:
    Administration and Developer's Guide
    Report Designer's Guide
    JavaDocs
    With the BI publisher (XML publisher) Java APIs, you can call a data template with parameters and get the XML from that.
    For an example that should be very close to what you need to do, see the comments section of this page:
    http://apps2fusion.com/at/ps/294-bi-publisher-document-viewer-common-region-embeded-report-output-in-oa-framework-page-part-2
    Find the comment titled: "Alternative: BlobDomain from data template"
    The great thing about using a Data Template is that, while you are NOT concurrent program dependent, you can still set up a concurrent program to run it for other purposes if you wish. Data Templates offer a lot more flexibility.
    Kurz

  • How to Disable save, saveas option when oprning a file in browser

    hi,
    experts,
    i have a problem when i am viewing a uploaded file in my browser i don't want save , saveas option of word and pdf documents.,
    Please help me as soon as posible.

    hi,
    experts,
    i have a problem when i am viewing a uploaded file in
    my browser i don't want save , saveas option of word
    and pdf documents.,
    Please help me as soon as posible.And what exactly does your question have to do with the purpose of this forum?
    Ask in the right place and you might get an answer, in this case a forum specific to your browser (which you don't even mention, I'm pretty certain that every browser has a different way of doing things like that if they do it at all).

  • Getting prompted to Save As when using Save option

    We would like to deploy Reader XI with Protected Mode enabled. We have noticed that when using the Save option the user receives a prompt to Save As instead. I understand this is a security feature to basically grant Reader/Acrobat permission to save to this location.
    Issue is that we have in house software that opens the PDF using Reader allowing the user to make markups and then save, but if the user saves the file to a different location this will cause the in house software to fail. Older version of Reader with Protected Mode disabled allows just the save to be used and the original file location to be preserved.
    Is there anyway to white list this Directory so that Reader can save to it without a Save As prompt?
    Only fix I know of currently is to disable Protected Mode but we would like to avoid that if possible
    Thanks

    There is a notation in the documentation that may be relevant.
    "Permissions granted by other features often overlap. For example, cross domain policies, internet access settings in Trust Manager, and certificate trust settings for certified documents sometimes interact so that the most permissive setting takes precedence. Users should TEST THEIR CONFIGURATION prior to deployment."
    Have you checked the possible overlapping features?

  • How do i get the "open with" option back for pdfs after accidentally hitting the save option which now automatically saves any pdf?

    Normally when I click on a pdf I would get an option to "Open With" or Save. I usually just opened pdfs first. I accidentally clicked on the Save option in this dialog box and now when I click on any pdf it automatically asks me where I want to save it. I want to get the "open With" option back, because I don't necessarily want to save a copy of every pdf.

    Mountain Lion was released in 2012, so I suppose there might be advice in old threads or on the Apple forums if you don't get a response here right away.

  • How to disable save option from adobe toolbar in Acrobat Reader

    We need to disable Save option from Acrobat Reader plugin in Internet Explorer 8/9/10 version.
    Acrobat version is X.
    Is it possible to disable Save ( Floppy Disk) icon?
    We have disabled printing and copying.
    Please help

    You are, I'm afraid, chasing an impossible security that cannot exist. Many have sought this, but it just isn't there -- and there is so much more than the save button involved.
    If you are a big enterprise with sensitive information consider DRM solutions ($$$$+).

  • Script for Save Options- Save Query Results with document

    Hi,
    Is there any javascript for Save query results with document in save options? If so where can i find that?
    Thanks
    Kalai

    hi guys,
    I found the answer.The following example shows you how to save the results with the query
    section named “SalesQuery”.
    ActiveDocument.Sections["SalesQuery"].SaveResults=true

  • HOW TO DISABLE THE SAVEAS OPTION OF A BROWSER?

    Hi all,
    Nice to be back again folks.....
    Well I need to develop an Applet (perhaps even a swing) which when loaded by any browser would disable the SaveAs option of the browser's File menu.
    I tried using the Frame class of java.awt package, the code is:
    import java.awt.*;
    import java.applet.*;
    public class WinAppl extends Applet
    int mc;
    String str="NO OF MENUS: ";
    Font fnt=new Font("Arial",Font.BOLD,12);
    MenuBar mb;
    Frame frame=new Frame("SNODX");
    Window window;
    public void init()
    frame.setBackground(Color.red);
    frame.setForeground(Color.black);
    this.setFont(fnt);
    mb=frame.getMenuBar();
    if(mb!=null)
    mc=mb.getMenuCount();
    str+=mc;
    else
    str+="ZERO";
    public void paint(Graphics g)
    g.drawString(str,50,50);
    but when this applet is loaded ALL the menus of the browser disappear .i.e when this frame applet is loaded by the browser only the title bar of the browser and a red colored window appear, no menus. I dont want all the menus to be hidden, just the SaveAs option of Browser's File Menu to be disabled.
    Thanks in advance.
    True to my nature I am posting this question in some of the other Java forums as well. And as usual sorry for the multiple postings.
    snodx

    Applets usually have absolutely no control over the browser they are running in (with the exception of loading other web pages and other very high level stuff). You won't be able to write an applet that disables entries in the menu bar. And even if you could it wouldn't really help you because most browsers write everything they download to disc (to the cache) where it can be recovered by anybode.
    Last but not least: there are lots of tools for mirroring web sites that will allow users to download and save anything that is accessible for browsers.
    However, you may be able to disable the menu bar and perhaps even change entries in some browsers like ie by activeX controls or javascript. Still this is not a very friendly way for a website to behave...

  • SAVE option is missing in my File dropdown

    When I open an image in PS CS3 and make a change to it, I used to be able to just click File->Save to save the changes, and I still can on my second PS copy on my laptop.  But on my PC Save is no longer there.  How can I get it back?  The screen below was with an open jpg file in 8-bit sRGB that I made a simple change to and as you can see, the Save option isn't there.

    Very strange.
    Try resetting your preferences as described in the FAQ.
    http://forums.adobe.com/thread/375776?tstart=0
    You either have to physically delete (or rename) the preference files or, if using the Alt, Ctrl, and Shift method, be sure that you get a confirmation dialog.
    This resets all settings in Photoshop to factory defaults.
    If that doesn't bring it back I can only think the installation has become corrupted.
    Does Ctrl+S bring up the save dialog on a new file?

  • Save option disabled in Reader 7 when another user works on the same PDF

    Hi, I'm a first time user of Acrobat Pro 8.1 and 9. I'm creating PDF forms. When I open the forms in Reader 7 and work on them, I can directly save it, I do not have to do 'Save as'. However, when I copy this document on another machine, open it in Reader 7 and make changes, the 'save' option is disabled, whereas, I can do a 'Save as'.
    My client does not want to do a "Save as'. They want to modify the original document and just click 'save'.
    I would like to know if this is an internal feature of Reader 7. Please provide a solution, if any
    P.S: I'm enabling usage rights in Acrobat Professional, still the Save option is not available in machines which don't have Acrobat Professional.

    The document can be copied on another machine in two ways:
    1. The document can be sent by mail and copied to the recipients local drive.
    2. It can be placed on a share drive and copied on another machine.
    I am enabling rights through Advanced> Enable usage rights in Acrobat Professional 8.1. Do I need the Adobe Livecycle Reader extension software as well to enable local save in Reader 7?
    Please provide me a solution.

  • Would like to allow PDF files to open straightway in the browser rather asking for open save option. pls help

    I m running a website on intranet. while accessing pdf file more than 8 MB in size. A window having Openwith, Save option pops up. i would like firefox to open PDF files of any size strightway in the browser without pop ups. Please help
    Thanks in anticipation

    kearly - thanks a million for posting both the question & the reply! I just unchecked that little box by accident, & couldn't figure out for the life of me how to fix it. Thanks again!!

  • HT2490 my desktop and screen saver option is no longer available in the system preferences. meaning it is no longer listed. how would i go about getting it back?

    my desktop and screen saver option is no longer available in the system preferences. meaning it is no longer listed. how would i go about getting it back?

    If you used system cache cleaning software it can mess up Apple software.  Stop using such software.  Remove Mackeeper if present using these directions:
    https://discussions.apple.com/docs/DOC-3691
    If you started typing something in the search field of the System Preferences, it might be hiding.   Quit and reopen System Preferences to be sure it isn't hiding because it is searching for another panel.
    Lastly, if none of the above apply, go to your hard drive -> System -> Library -> PreferencesPanes folder and see if it is hiding there.  If it isn't, get your 10.5 installer disc that installed 10.5 on your Mac, and restore it with http://www.charlessoft.com/ 's Pacifist, and then run the 10.5.8 combo update to ensure the version matches the operating system.

  • Power Save options

    I've recently purchased a car mount for my 8820, but everytime I put it in the cradel it goes into standby mode. The only options I see for the cradel are locking and unlocking and the ability to make calls when the phone is locked.
    How do I disable the standby function? Is there a hidden menu?
    ....the power save option is just for the screen, the rest of the phone functions correctly... please disregard. 
    Message Edited by Cooprdog on 07-09-2008 11:55 AM

    Hi,
    You can feedback in the link below:
    http://blogs.technet.com/b/lync/archive/2012/11/01/lync-app-feedback-you-asked-and-here-it-is.aspx
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • Query Print Layout Designer: no "save" option when editing report

    No "save" option when editing report, only "save as" in  2007 A PL30

    Yes you are all correct guys, but i'm aware that i can't edit the system report.
    What I did is i assigned a template for my query, then the system will automatically assign a template with the same name as my query. but the problem is when i open the layout, and make any changes, save button is not enabled, the system requires me to "save as". I dont encounter this problem in other version, but only in 2007a.

  • Layout save option in VA05 not active

    Dear all,
    I have little problem in VA05,
    in this report layout save option is not active ,
    can anyone guide how to activate it.
    Regards,
    Talwinder

    Hi,
    Firstly you should save your layout as system-specific, then you have to go menu>Settings>Layouts-->Administration...  to define your layout as default settings.
    As thus, when you execute VA05, the new layout will be applied correctly.
    Good luck
    Z.T

Maybe you are looking for