Can I choose where to save the files every time?

When I get files by email, it's very annoying they all get saved in the same place. I'd like the chance to decide, every time, where I want them to be downloaded to, so that I don't have to be moving them around or reorganizing them later.
Also, is there an option to just open the file instead of downloading it? Some times I just want to see the content of the file, not necessarily save it in my computer.
Thanks!

In case you are using "Clear history when Firefox closes":
*do not clear the Site Preferences
*Tools > Options > Privacy > Firefox will: "Use custom settings for history": [X] "Clear history when Firefox closes" > Settings
*https://support.mozilla.org/kb/remove-browsing-search-and-download-history
Note that clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, passwords, and other website specific data.
Clearing cookies will remove all specified (selected) cookies including cookies with an allow exception that you would like to keep.
You can inspect and manage the permissions for the domain in the currently selected tab via these steps:
*Click the "[[Site Identity Button|Site Identity Button]]" (globe/padlock) on the location bar
*Click "More Information" to open "Tools > Page Info" with the Security tab selected
*Go to the Permissions tab (Tools > Page Info > Permissions) to check the permissions for the domain in the currently selected tab
It is also possible that the server uses multiple servers and that Firefox sees this as a new website.

Similar Messages

  • I use to administrate my DSL modem via an ip-address. When I enter it into FF8 I am asked where to save the file. Why and how can I prevent FF8 from doing that?

    I use to administrate my DSL modem via an ip-address. When I enter it into FF8 I am asked where to save the file. Why and how can I prevent FF8 from doing that?
    And now anytime I am entering an ip-address I am asked if I want to download the file.

    It happens when the modem server doesn't send the file as text/html, but with another MIME type.<br />
    I tried the index.html addition in case the server might send that file as text/html.<br />
    If your DSL modem has a support website then you can try to ask there for advice about how to configure the modem server.

  • How do I NOT save a file every time I open a PDF file, open an attachment, etc.? I know how to set the option to change the save location, but in some cases I just want to VIEW not SAVE a file that I read while browsing

    I don't want Firefox to save a copy on my hard disk of every attachment, PDF, etc. that I open while browsing. How do I make this happen?

    Firefox needs to download and save a file before passing it to a plugin.
    You can set the Boolean pref <b>browser.helperApps.deleteTempFileOnExit</b> to <i>true</i> on the <b>about:config</b> page to remove such files.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold (user set).
    *Preferences can be reset to the default via the right-click context menu if they are user set
    *Preferences can be changed via the right-click context menu: Modify (String or Integer) or Toggle (Boolean)

  • Save the file multiple times

    I am sorry for my English!
    Illustrator CS5
    It is necessary for me to keep an AI-file some times in certain folders, plus to keep and EPS.
    The first preservation goes normally, that is I open a file and I start a script, the file remains on the specified way and with the name changed by me.
    The code of the first saving:
          var currentMainDoc = app.activeDocument;
          var currentDoc = app.activeDocument.name;
          var fullPath = app.activeDocument.path;
          // We decode a way of the active document and it is replaced it with the necessary
          var fullNewPath = Folder.decode(fullPath);
          fullNewPath = fullNewPath.replace(drawFolder,expandFolder);
          // We check directory existence on a new way if isn't present, we create it
          var newFolderExpand = new Folder(fullNewPath);
               if (!newFolderExpand.exists) { newFolderExpand.create();    }
          // We collect new file name on a new way with adding to suffix file name _exp and we create a file
          var currentNewDoc = currentDoc;
          currentNewDoc = fullNewPath+"/"+currentNewDoc.replace(".ai","_"+sfx_exp+".ai  ");
          var newDocExp = new File(currentNewDoc);
          // We form saving options
          var saveExpOptions = new IllustratorSaveOptions();
          saveExpOptions.compatibility = Compatibility.ILLUSTRATOR15;
          // We save a file under a new name
          app.activeDocument.saveAs(newDocExp,saveExpOptions  );
    After that I try to save already new active file in EPS (Options of saving EPS I do not write that there is less than code):
         var currentEps10Doc = currentMainDoc.name;
          // We collect new file name on a new way with adding to suffix file name _e10 and we create a file
          currentEps10Doc = tmpFolder+"/"+currentEps10Doc.replace("_exp.ai","_"+sfx_e10+".  eps");
          var newDocEps10 = new File(currentEps10Doc);
          // We save a file under a new name
          var  saveEps10Opts = getEps10Options();
          currentMainDoc.saveAs(newDocEps10, saveEps10Opts);
    Doesn't save, because at creation var newDocEps10 = new File (currentEps10Doc); permanently in the beginning the way is added
    /c/Program%20Files/Adobe/Adobe%20Illustrator%20CS5/Support%20Files/Contents/Windows/,
    that is the full path turns out:
    /c/Program%20Files/Adobe/Adobe%20Illustrator%20CS5/Support%20Files/Contents/Windows/c/medi a_files/vector/vector_tmp/primer_e10.eps
    The most interesting that at creation var newDocEps10 = new File (); the following also turns out:
    /c/Program%20Files/Adobe/Adobe%20Illustrator%20CS5/Support%20Files/Contents/Windows/tmp000 00002
    And if it is necessary to address to any file and you create var aaa = File (SomeFile); the first way always is present at the beginning.
    How to solve a problem?
    Thanks!!!

    Hi, it works ok here (with a few modifications).
    Do you have the variable "tmpFolder" defined somewhere else? or you're trying to save the EPS in the default temporary folder?.
    In Windows 7 the default temp folder is here C:\Users\carlos\AppData\Local\Temp
    what's your first language?
    var currentMainDoc = app.activeDocument;
          var currentDoc = app.activeDocument.name;
          var fullPath = app.activeDocument.path;
          // We decode a way of the active document and it is replaced it with the necessary
          var fullNewPath = Folder.decode(fullPath);
          fullNewPath = fullNewPath.replace("drawFolder","expandFolder"); // I created these folders myself
          // We check directory existence on a new way if isn't present, we create it
          var newFolderExpand = new Folder(fullNewPath);
               if (!newFolderExpand.exists) { newFolderExpand.create();    }
          // We collect new file name on a new way with adding to suffix file name _exp and we create a file
          var currentNewDoc = currentDoc;
          currentNewDoc = fullNewPath+"/"+currentNewDoc.replace(".ai","_"+"sfx_exp"+".ai  ");
          var newDocExp = new File(currentNewDoc);
          // We form saving options
          var saveExpOptions = new IllustratorSaveOptions();
          saveExpOptions.compatibility = Compatibility.ILLUSTRATOR14;
          // We save a file under a new name
          app.activeDocument.saveAs(newDocExp,saveExpOptions  );
    //After that I try to save already new active file in EPS (Options of saving EPS I do not write that there is less than code):
         tmpFolder = Folder.temp; //fullNewPath; // I added this line
          var currentEps10Doc = currentMainDoc.name;
          // We collect new file name on a new way with adding to suffix file name _e10 and we create a file
          currentEps10Doc = tmpFolder+"/"+currentEps10Doc.replace("_exp.ai","_"+"sfx_e10"+".eps");
          var newDocEps10 = new File(currentEps10Doc);
          // We save a file under a new name
          var  saveEps10Opts = new EPSSaveOptions(); // getEps10Options();
           currentMainDoc.saveAs(newDocEps10, saveEps10Opts);

  • Automator wants me to save the workflow every time I run it.

    I have a simple workflow in automator. It finds all files on the desktop with an extension of .jpg and saves them to a folder. Two steps: "Find Finder Items" and "Move finder items". It works just right, but when I quit Automator after running it, it ALWAYS puts up a dialog box saying "Do you want to save the changes you made in the document “Movefile.workflow”? " I have to click on a box every time. What gives? I'm not changing the workflow at all! How do I get rid of this? it's annoying!

    If it wants you to save the workflow as an app, try that and see if it works.
    Please post back.
    ddr

  • PDF print. where save the file?

    Hello,
    on my system (SPAD) is defined ZPDF2 a printer for printing in PDF.
    I want to know where to save the PDF? In a specific file system? How can I see this?
    Best regards
    Silvio

    Hi,
    It is not cleared what is your exact goal ?
    see that the printing is completed but I do not know if SAP has created a file and where to put it
    By default SAP saves the documents in users home directory "C:\Documents and Settings\<USER_NAME>\SapWorkDir".
    Is there a log that tells me what happens when I print a SAP page?
    in SP01/SP02 or SPAD you can see the status of the spool job (success or failed) or its attribute. But it will not tell you where you saved the file because this activity will not come under SAP's control.
    If I am not mistaking SAP generates spool request as per the configured spool device in SPAD. Once you fire the print job it depends on operating system's installed printer (configuration) what to do with that request. Means whether to print as PDF document or send to normal print device.
    If you want more control over print job, you can configure "Access Method" as "G: Frontend printer with Control tech." and set "Host Printer = _DEFAULT". So it will pop-up Operating system printer selection dialog box.
    I hope, it will cleare your doubts.
    One more thing:
    You have 2 methods to get it done...
    A) In case of standard transactions or report, use method as I said in previous post.
    B) If it is custom development, you can take ABAPers help to do the same. below are the steps for the same.
    Basic Steps .
    1) Generate the classical Report output .
    2) Create a Spool Request .
    3) Search  the Spool Request .
    4) Submit the Spool Request  for Pdf  Creation .
    5) Download the Pdf Output in Presentation server  or Application Server .
    Use the Standard Function Modules 'CONVERT_ABAPSPOOLJOB_2_PDF' and 'GUI_DOWNLOAD'
    It will give you a freedom where to save the file..
    Regards.
    Rajesh Narkhede

  • I game online and have problems with games working after updating firefox. I use an older version but am concerned about security. Two questions: can I be sure that Firefox 4 will work on my system (vista) and where do I save the file at?

    I have had a problem with the compatibility of Firefox running with the games I play online. I don't want to attempt an upgrade again, only to have to turn around and degrade so my activities can work. Furthermore, I'm not sure where to save the Firefox file in my system, since for some reason it doesn't take me right to where it should save.

    This issue can be caused by the Yahoo! Toolbar extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the o

    When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the original in my work folder. I need to know how to stop this from happeing and get it back to the way it has been working he last 6 months since i purchased this program.

    Hi pissedadobeuser,
    Does this issue occur with any particular web page?
    Are you able to print the webpage to 'Adobe PDF' to convert it to pdf.
    Which Browser version, OS version and Acrobat version are you using?
    Regards,
    Rave

  • Can you use Easynews to download movies etc to IMac and how and where do you save the files?

    Can you useEasynews to download movies etc to IMac and how and where do you save the files?

    From your Apple menu at the left end of the menubar, select "About this Mac." You get a window similar to this:
    1) The Mac OS version is just under the big "MAC OS X" line. Post what that says.
    2) We can start to figure out what iMac you have if you post what that the "Processor" line says.
    We need to find out because Apple's poor labling choices for this forum, intended for iMacs made before 2006, causes people with newer and much more capable Macs to post here by mistake.
    Without some info from you, it's much like your calling an auto mechanic and asking if you can use a certain part without telling him the make, model, or year of your car. Quess what his first question will be? Works the same here.

  • How can I upload a file to the server where I save the Java Web Start Files

    Hello,
    Does anyone knows how to upload a file to the directory where I save the JAR files through the Java Web Start program. Thanks you

    ftp

  • "Can't Save the File. Can't Print the File" error in Illustrato CS3

    I get the error "CAN'T SAVE THE FILE. CAN'T PRINT THE FILE". In Illustrator CS3
    According to adobe this is an issue of having more that 28 spot colors, so I went to the swatch palette and pulled the fly-out menu out and told it to remove any unused swatches which took me down to 6 spot colors, but I still get the error when trying to save it to EPS format, which is the format I have to have for the ripping program for the vinyl printer in my sign shop. Saving it in AI format causes no issues.
    Is there still something I am missing?
    Thanks
    Roger

    I appreciate your comment, I see what your saying.
    However...my issue is...I am making a vehicle wrap on a full size van for a radio station and it consist of pictures of a clouds for the background with two pictures of music artist that are associated with the kind of music this station plays, then there is a big round logo of the radio station that involves three spot colors (Purple, white and one of which is technically the black "K" ribbon) along with the web address of the station but it is of the same colors of the radio station logo...then there is the corporate logo that utilizes another spot color (blue)so as you can see I need the spot colors that I'm using.
    So just to make sure I'm clear...I can only have 28 different individual colors, even though I have photos involved in the rendering? How can I make that work because photos obviously have more than 28 colors in them. It doesn't make sense because you can do a live trace on something in literally hundreds of colors.
    Would it help if I flattened the photo work from photoshop before I move it to Illustrator? The reason I ask is because when I go to save and choose EPS the next save dialogue that comes up...down at the bottom there is two exclamations that one says something about embedding fonts, which I'm not concerned about and the other is something about there is some artwork that needs flattening.
    Please bear with me here cause I am definitely a newbie!! My boss threw to the wolves on this adventure and I am learning by reading and trial and error.
    Thanks
    Roger

  • HT5534 can i save the file which is edited in pages as docx,pdf etc????

    can i save the file which is edited in pages as docx,pdf etc????

    Use either the File menu > Export or Share menu > Export & choose the format.

  • I can't find where iweb saves files. i have no iweb folder in my library applications. any ideas?

    i can't find where iweb saves files. i have no iweb folder in my library applications. any ideas?

    Yes you do - it is found under your User Library/Application Support/iWeb/domain.sites.
    It is the domain.sites folder that you want and the iWeb folder is NOT in your System Library, but rather your User Library - that's the one with the house.
    Depending on what OS you are using - from Lion upwards, your User Library is invisible, so to make it visible, go to the Go menu and hold down the 'alt' key at the same time and your Library will show - then go to Application Support and the iWeb folder is there with your domain.sites file in it.  Double click on this file to open it and iWeb will.

  • How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    Hi
    Please take a look to this thread Re: Can I refresh the browser rather than open a new tab?

  • Good day! When saving a file in Illustrator, I can not keep the older version. How You can save the file in an older version?

    Good day! When saving a file in Illustrator, I can not keep the older version. How You can save the file in an older version?

    When you save a file that's what options offers application
    05 мая 2014 г., в 13:40, Jacob Bugge <[email protected]> написал(а):
    sage go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click theStop Email Notifications link.

Maybe you are looking for

  • Keyboard shortcut for Sub Menu item Only works AFTER using it

    I have a Custom MOVE TO READ Mailbox shortcut. This is a SUB Menu item.. MESSAGE/Move To/READ FOLDER. It is really sweet to clear out my INBOX and save emails. So, what is ODD is that that menu has to be Clicked on and shown each time MAIL is run for

  • The Durability of Macbooks is not worth the money.

    I was playing xbox on my couch with my mac book beside me, i moved my elbow and is slid off the couch and landed on it's back and the screen slammed shut. This was probably a 1.5 ft drop into well-cushioned carpet. I pick it up and now my screen is t

  • Missing invitee field in iphone ical

    Hello, In my iphone ical, I am missing the invitee/attendee field when I create an event.  How can I get it on? Thanks Tammy

  • Business Objects Enterprise Administrator's guide

    Hi A lot of Business Object guides refer to the "Business Objects Enterprise Administrator's guide", which I have not been able to find at SAP's support portal nor SDN. Anyone who knows how to find this guide? BR Tom

  • IE vs Firefox/Opera positioning - help please

    I'm rewriting a site at the moment using a template from OSWD. I've got a table of contact details which shows up correctly in Firefox and Opera, but is displaced to the bottom of the left navbar in IE. Any ideas?, oh and any tips for dealing with th