No save as dialog box in elements 11, don't even get an error message.

Tonight I tried to use save as to save an image in elements 11 and nothing happened.  No errors, no save as boxes, just nothing.  It won't just save either, again, nothing happens.  I've been running this program for months and this is the first time this has happened, it worked just fine yesterday.  I'm using windows 8.
Thanks for your help!

Wouldn't you know it. By entering this question a similar question finally showed up. The answer is to right-click in the top of the window and select "Restore." Problem solved.

Similar Messages

  • When I save a pdf file and try to open it I get an error message

    When I save a pdf file and try to open it I get an error message, "Adobe Reader could not open 'file name.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded)."
    When I try to open it with Preview I get this message, "file name.pdf” could not be opened because it is empty."
    I am running  Maverick OS X 10.9.1.  What's up with this?

    Good question (I'm not a Mac guy these days).
    But Adobe Reader is only viewing the file as it has been saved. If it happens to all pdf files from all sources, I would begin to investigate your OS (and possible permissions but I'm not sure) maybe in the Apple forums.

  • TS3305 I downloaded the latest operating system (iO5)to my iphone4.The problem is first off I had to download the YouTube App because it didn't come with it.  It won't let me 'save to favorites' my tae kwon do videos.  I get an error message. Help!

    I downloaded the latest operating system (iO5) to my iphone4.  The problem is first off I had to download the YouTube App because it didn't come with it like my previous operating system (*****!).  Then, the problem is this Google YouTube App won't let me 'save to favorites' my favorite tae kwon do videos.  I get an error message saying error saving to favorites.  Help!  Thank-you!

    See this previous discussion:
    Error adding file to favorites on iPod...: Apple Support Communities

  • Photoshop Elements 8.0 won't open, keep getting an Error message from windows

    I am running Windows Vista on a toshiba laptop and I've owned the software for a little over a year now, everything was working quite fine the usual few crashes every once and a while. Though I had thought to myself oh well here it's time for some new photoshop brushes and fonts. So I went to sites such as Dafont.com and Deviantart.com to get brushes and fonts. Installed them all and tired to open up photoshop Elements afterwards and I kept getting an error message as shown in the picture.
    Any help would be appericated, Also added information  that may help, Yes I have tired removing the brushes out of the folder and running the program, and yes I have tried removing the fonts I installed. Neither worked. I also have not Restarted my laptop computer since I had installed that brushes/fonts.
    Thank you for looking/reading/answering!
    Have a nice day. (:

    Hi,
    Please try couple of probable solutions as mentioned below:
    Solution 1:
    1. Close Elements.
    2. Launch the Photoshop Elements Welcome Screen and hold down ctrl + alt + shift as you click Editor.
    3. Continue to hold the keys until you see a message box asking if you want to delete Photoshop Elements settings file; click Yes. Elements will open with default preferences.
    Solution 2: In case any network printer is attached try to launch without network or printer uninstall or make different printer as default.
    Solution 3: Try launching with anti-virus off or removing PSE from conflicting list.
    Solution 4:
    On the drive on which you have installed PSE,on my machine it is on C:
    Go  to C:\Program Files\Adobe\Photoshop Elements  10\Locales\<locale>\Plug-Ins\Import-Exportand you will find twain  plug-in. Remove that plug-in from that location and copy it somewhere  else.
    Now launch PSE and check if it works.
    For related post for Twain please see this:http://forums.adobe.com/message/2954743#2954743
    Thanks,
    Garry

  • In javascript how to invoke save as dialog box ,which saves .pdf files only

    Through javascript i generated a save as dialog box. the main problem is , it is only saving .html and .doc files by default. how to restrict it to save only .pdf files.
    the code i used is
    function SaveFile(fname)
    document.execCommand('SaveAs', null, fname)
    <input type="button" value ="save" onclick="SaveFile('');">
    /**********************************************************************/

    this is actually a Java forum its slightly different from javascript
    but try this not sure if it helps
    <input type="button" value ="save" onclick="SaveFile('.pdf');">

  • How can I add form field value to the file name in save as dialog box

    I do not want the form to be saved automatically, just want the form to auto populate the "file name" only.
    A little background on the forms I want to use:  My company has 70 retail outlets, I'll use one of our pdf forms called an "Incident Report" as an example.  I would like for a store manager to be able to complete the form, then email the form to the main office (I already have javascript to add field values and form name to the email subject line), once the main office receives it, I want for them to be able to file the pdf electronically on our server.  We have mutliple forms that we use so I do not want any of the forms to automatically save anywhere, (at this time anyway) I just want the office personnel to be able to click "save as" (or whatever they will need to click) and the form automatically add certain field values from the pdf they have received, of which will be different each time the form is sent to the office (Date, store #, employee name etc.) in addition to the name of the form in the "File name" of the "Save As" dialog box.  The main office employees will decide into which server file the pdf should be saved.
    I'm using Acrobat 8 professional, the stores and office personnel use Adobe reader.
    One little note:  We currently print and file a lot of paper on a daily bases, as soon as I can get this to work, we are going green.
    Me and a lot of trees in this will really apprecitate any help you can give with this!  :-)

    You might want to take a look at the document "Developing Acrobat Applications Using JavaScript" (js_developer_guide.pdf) which is part of the Adobe Acrobat SDK, which can be downloaded here. Read the "Privileged versus non-privileged context" (p. 45ff.). You will find an example for "Executing privileged methods in a non-privileged context". Should be almost exactly what you are looking for.
    Small Outline: For security reasons ("the user always has to know what's going on") you are not allowed to use the "Doc.saveAs"-method without the user permission (--> in a non-privileged context). In order to reach the goal of a privileged context you can use a trusted function. You do this by creating a JavaScript file (*.js) in either the Application-JavaScript-Folder (default location on Windows systems: "%ProgramFiles%\Adobe\Acrobat 10.0\Acrobat\Javascripts") or the User-JavaScript-Folder (default location on Windows systems: "%AppData%\Adobe\Acrobat\10.0\JavaScripts"). Add the following content to the new file:
    myTrustedBrowseForDoc = app.trustedFunction( function ( oArgs ) {
         app.beginPriv();
              var myTrustedRetn = app.browseForDoc( oArgs );
         app.endPriv();
         return myTrustedRetn;
    myTrustedSaveAs = app.trustedFunction( function ( doc, oArgs ) {
         app.beginPriv();
              var myTrustedRetn = doc.saveAs( oArgs );
         app.endPriv();
         return myTrustedRetn;
    The developer guide actually wants you to add this content to the existing "config.js" file. I recommend creating a new file, since its easier to deploy in a network. Either way, every client/user who needs to be able to save documents this way, needs this JavaScript Code in his Application/User-JavaScript-Folder.
    Within the Acrobat Document, which you want to obtain a certain file name, you can now use the trusted functions "myTrustedBrowseForDoc" and "myTrustedSaveAs" to store the file. To call the trusted functions and deliver the file name you can either you use a form field (button) or you add a new menu item. Add the following JavaScript Action to the button/menu item and change "Roller Coaster" to the name of the field which contains the value which you want to become the new file name:
    var fileName = this.getField("Roller Coaster").valueAsString;
    try {
         var oRetn = myTrustedBrowseForDoc({bSave: true, cFilenameInit: fileName + ".pdf"});
         try {
              myTrustedSaveAs(this, { cPath: oRetn.cPath, cFS:oRetn.cFS });
         catch(e) {
              console.println("Save not allowed, perhaps readonly.");
    catch(e) {
    console.println("User cancelled Save As dialog box");
    Good Luck!

  • 'Save as Type' box in 'Save As' dialog box

    I recently downloaded 'Rocket PDF' and now if I try to save any PDF. document, the only choices in the 'save as type' box are 'Rocket PDF' or 'All files'. No more 'Adobe Reader PDF. appears as a choice. I uninstalled 'Rocket PDF' and in the 'Default changes' I put 'Adobe Reader as the default to open 'PDF.'. Still, the only choices on the 'save as type ' are 'Rocket PDF' or 'All files'! How do I get Adobe Reader PDF' back as a choice in the 'save as type' box and delete 'Rocket PDF' as a choice?

    Sorry I wasn't clear! When I try to save a 'PDF' file the "save as" dialog box opens. At the bottom the 'file name'is listed and below that it says, "save as type". You then pick what file type you want, like Adobe Reader for PDF. It used to say Adobe Reader as one of the choices but when I downloaded "Rocket PDF" it only says "Rocket PDF or "all files" as the only choices to save the document, no more Adobe Reader as a choice. I have deleted Rocket PDF and under 'default programs (Start button) I have set the "Pdf. files to open with Adobe Reader. Rocket PDF is still listed or' all files', nothing else! How can I get Adobe Reader as a choice back in the 'save as type' box?
    Thanks for any help.

  • Save Open dialog box opening very slow

    I have windows 7 professional 64bit OS. whenever i try to open/save as dialog box it appears very slow, then it will say it is not responding then after 10-15sec it will come alive.
    Need help!!!!!!

    Blair,
    I followed your suggestions above....reset IE ...clean boot. Didn't solve the problem.  (had trouble making that MSCONFIG window bigger !? <wink>)
    Problem still exists.  And to be clear, here is the problem(s) ...I believe they are all interrelated.
    #1.  I end the explorer.exe process and restart it.  Run Explorer and start clicking folders in my FAVORITES.  System hangs for about 10 seconds before it catches up.
    Alternatly, after a explorer.exe restart, if I run explorer and start clicking down through folders from the C: drive, there is no hang.   SUSPECT - some sort of file for favorites needs to be rebuilt?!
    #2. Open MS Word.  Type a few letters.  Select File/Save.  Most icons under Favorites are white.  Trying clicking more than one, but system hangs for ten seconds until icons fill in.
    #3.  WINDOWS button, start typing in the search INTERNET....5-10 seconds before Internet Explorer (and other INT* things show up.!  Usually this is instantaneous.
    System Info:
    Great machine and fast for over a year, and now this started FYI.
    OS Name    Microsoft Windows 7 Home Premium
    Version    6.1.7601 Service Pack 1 Build 7601
    Dell System XPS L321X
    x64-based PC
    Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz, 1601 Mhz, 2 Core(s), 4 Logical Processor(s)
    4 gb Ram
    256 SSD
    ACTIONS TAKEN:  (estimated 30 reboots today)
    - Ensure all folders are GENERAL under properties
    - Advanced Attributes - turned off "allow files on this drive to have contents indexed in addition to file properties"
    - Checked Indexed location is C: drive/ User/ just my data areas....reindexed
    - Tried reboot with Windows Search service disabled....no help.  Turned back on.
    - Tried MS Essentials off.  Tried Firewall off
    - Rebuilt ICONCACHE - was 8mb, now less 450kb
    - Archived OUTLOOK down to a reasonable size (and had to do the manual compress to reduce the file size after)
    - turned off some Windows visual effects.
    - Turned off Dropbox from autostarting....this was before I tried the Clean Boot
    - turned by ON (default)  in Startup - though it has Unknown MFG and no details  :~(   , i found that it likely is needed for my 64 bit machine.
    Any help would be appreciated.
    Steve

  • How can I get the "Open" and "Save As" dialog boxes to open at larger than their default size?

    How can I get the "Open" and "Save As" dialog boxes to open at larger than their default size?  I would like them to open at the size they were previously resized like they used to in previous operating systems.  They currently open at a very small size and the first colum is only a few letters wide necessitating a resize practically every time one wants to use it.  Any help would be appreciated.

    hi Prasanth,
    select werks matnr from ZVSCHDRUN into table it_plant.
    sort it_plant by matnr werks.
    select
            vbeln
            posnr
            matnr
            werks
            erdat
            kbmeng
            vrkme
            from vbap
            into table it_vbap
            for all entries in it_plant
            where matnr = it_plant-matnr and
                  werks = it_plant-werks.
    and again i have to write one more select query for vbup.
    am i right?

  • How to open a save file dialog box in form

    hi
    all
    I have prob in form desing , i have open the save file dialog box , how to open a save dialog box
    and path of the select file to save in disk
    help
    thx

    hi
    user this query when-button-pressed trigger
    :txtfile := GET_FILE_NAME(directory_name =>'d:\ali_raza\backup\', file_filter=> 'DMP Files (*.dmp)|*.dmp|');
    Rizwan

  • How to open a 'Save As' Dialog box in JSP?

    Hi all, i need to export a CSV file. A button is provided to the user to choose the directory to save the file. My problem is how to open a 'Save As' dialog box in JSP?
    Thanks in advance

    Hi,
    Below is my full code to download fiel but still the Save Dialog box still not show..
    <%@ taglib prefix="cs" uri="futuretense_cs/ftcs1_0.tld"
    %><%@ taglib prefix="asset" uri="futuretense_cs/asset.tld"
    %><%@ taglib prefix="assetset" uri="futuretense_cs/assetset.tld"
    %><%@ taglib prefix="commercecontext" uri="futuretense_cs/commercecontext.tld"
    %><%@ taglib prefix="ics" uri="futuretense_cs/ics.tld"
    %><%@ taglib prefix="listobject" uri="futuretense_cs/listobject.tld"
    %><%@ taglib prefix="render" uri="futuretense_cs/render.tld"
    %><%@ taglib prefix="siteplan" uri="futuretense_cs/siteplan.tld"
    %><%@ taglib prefix="searchstate" uri="futuretense_cs/searchstate.tld"
    %><%@ taglib prefix="locale" uri="futuretense_cs/locale1.tld"
    %><%@ taglib prefix="dateformat" uri="futuretense_cs/dateformat.tld"
    %><%@ taglib prefix="blobservice" uri="futuretense_cs/blobservice.tld"
    %><%@ taglib prefix="satellite" uri="futuretense_cs/satellite.tld"     
    %><%@ taglib prefix="date" uri="futuretense_cs/date.tld"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %>
    <%@ page language="java" contentType="text/html;charset=UTF-8" %>
    <%@ page import="java.io.File" %>
    <%@ page import="java.io.OutputStream" %>
    <%@ page import="java.io.FileInputStream" %>
    <cs:ftcs><%-- france/test_template
    INPUT
    OUTPUT
    --%>
    <%-- Record dependencies for the Template --%>
    <ics:if condition='<%=ics.GetVar("tid")!=null%>'><ics:then><render:logdep cid='<%=ics.GetVar("tid")%>' c="Template"/></ics:then></ics:if>
    <%
    String fileToFind = request.getParameter("file");
    if(fileToFind == null) return;
    File fname = new File(fileToFind);
    System.out.println("Save As: "+fname.getName() );
    if(!fname.exists()) return;
    FileInputStream istr = null;
    response.setContentType("application/octet-stream;charset=ISO-8859-1");
    response.setHeader("Content-Disposition", "attachment; filename=\"" + fname.getName() + "\";");
    try {
    istr = new FileInputStream(fname);
    int curByte=-1;
    while( (curByte=istr.read()) !=-1){
    out.write(curByte);
    out.flush();
    } catch(Exception ex){
    ex.printStackTrace(System.out);
    } finally{
    try {
    if(istr!=null) istr.close();
    } catch(Exception ex){
    System.out.println("Major Error Releasing Streams: "+ex.toString());
    try {
    response.flushBuffer();
    } catch(Exception ex){
    System.out.println("Error flushing the Response: "+ex.toString());
    %>
    </cs:ftcs>
    Can anybody help me with this???
    Thank you in advance.

  • How come the "save as" dialog box keeps popping up whenever I try to use alt codes?

    I type with diacritical marks regularly but recently, when I press and hold Fn + Alt + the numerical code, it brings up the "save as" dialog box. This seems to be a Firefox-specific issue because this doesn't happen on Microsoft Word + other programs. I am wondering how to disable this "save as" dialog box shortcut, or how to just get the alt codes to work.

    Hm, this is the list of add-ons that are currently enabled on my browser:
    <br><br>
    Dictionnaire française moderne (it can't be this one because I just installed it today)<br>
    Java Console 6.0.18<br>
    Java Console 6.0.25<br>
    Java Console 6.0.20<br>
    Java Console 6.0.24<br>
    pdfit (doesn't seem like it's this one either)<br><br>
    Conclusion: might it be one of the Java Consoles?
    Thanks!

  • How to Display save as dialog box.

    Hai all,
    am having a jsp page in which i display some values in Table. if i click a button it should show a save as dialog box, from that i should give a file name then all the content must be save in that file name. Any one give idea to open save as dialogbox from button click.
    Thanks.

    You can t do what you want.
    But you can do something similar..
    In stead of save as do a submit to a servlet and have you servlet download the file to the client
    download by setting your contenttype to
    response.setHeader("Content-Disposition", "attachment; name=\""+filename+"\"; filename=\""+filename+"\";");

  • How to give save as dialog box using servlet?

    hello,
    i am building one application where i am generatinfreport in excel format.
    now the file generated is output.xsl.
    this is in c:\bea\wlserver6.1 directory.
    now i want to write a servelt get this file from location given above and give user Save As dialog box.
    can anybody provice me sample code from this....
    thank you.

    Hi,
    Hope the following code snippet helps, Put this in your doGet/doPost method.
    FileInputStream fileInputStream = null;
    ServletOutputStream out = response.getOutputStream();
    String srcfile = "c:\bea\wlserver6.1\myxsl.xsl";
    String destfile = "myxsl.xsl";
    response.setContentType("text/xml");
    response.setHeader("Content-Disposition","attachment; destfile=\""+ filename + "\"");
    try {
         fileInputStream =new FileInputStream(srcfile);
         int i;
         while ((i=fileInputStream.read()) != -1) {
              out.write(i);
    }catch (Exception e){
         System.err.println (e);
    }finally{     
         fileInputStream.close();
         out.close();     
    Good Luck,
    Rajesh

  • How to get save as dialog box.

    i want to open a "save as" dialog box from file menu.and i want to specify by myself which type of item should be in "Save as type" drop box in the save as dialog box.how to do it???????plz help........thanx in adv.

    I believe that the Sun tutorial over [How To Use File Choosers|http://java.sun.com/docs/books/tutorial/uiswing/components/filechooser.html] will be able to give you the answer for this one. This and the JFileChooser API and other associated APIs.

Maybe you are looking for

  • Windows 8.1, Update 1 upgrade path

    Hi, if there is anyone of any influence who might read this, please, please, for you own sakes make an upgrade path directly from Windows 8.0 --> Windows 8.1, Update 1 I cannot upgrade from W8.0 --> 8.1.  I cannot upgrade due the the following error.

  • Quicktime and itunes

    I recently purchased a video ipod,and I have encountered problems both playing videos through itunes and putting them onto my ipod. I have a PC with windows XP. These are vidoes which I purchased through the itunes music store, so I know they are off

  • Strange arrow in icon bar [N72]

    I have recently discovered a strange icon in the icon bar (next to bluetooth) It looks like this: The / has an arrow shape. Ik found some other topics were the Outbox and Redirecting calls were mentioned. I cleared all my messages, (except some files

  • Migration Wizard

    Hello All, I was so excited up to the point ORACLE Capture Wizard completed its process capturing my SQL SERVER 7 database. I was then prompted with starting the MIGRATION Wizard Process. On the screen where the Migration Wizard asks end-user to ente

  • Planning for Mobile Service Pack Upgrade from 2007 SP2 to SP6

    Hello Mobile Gurus, We are planning for upgrading mobile from 2007 SP2 to SP6. Can anyone of you guess a time line for achieving this? I mean, how long will it take in dev env to upgrade commstation, mrs, mdw etc. apart from upgrading the field lapto