Automatically open downloaded file?

Hi,
Dies anyone know if there is a way to have files automatically open after they are downloaded; especially MS Office and pdf files? All my files are download to a "Downloads" folder and then must be opened from there.
Thanks!

Also note that you can open files that you have just downloaded by double-clicking on their icons in the Safari Downloads window, rather than having to navigate to your downloads folder to find and open them.
(Another useful trick: You can immediately locate a file by clicking on the magnifying glass icon next to it in the Downloads window.)
Edit: I think both Mulder and I were thinking of the Mac version of Safari when answering your question. Some of this is the same in Safari in Windows, but some is not. Checking ...
Message was edited by: Rachel R

Similar Messages

  • How do I get Lion to automatically open downloaded files?

    I have Word 08 for Mac and I download Word documents and pdf files quite often. In Lion, the files download and then are almost impossible to find. I don't know where they go and often I don't know what the file was named because the hyperlinks used don't always show the file name. How can I set my system to automatically open files I download like it used to do before I got Lion?

    I don't know where they go and often I don't know what the file was named
    Allowing your browser to open "safe" files is dangerous.  That's how a bunch of people got in trouble during the MacDefender outbreak...  the OS considered an installer file safe, since opening one does not run any third-party code.  But many people mistook the automatic launch of an installer to be "official" and were fooled into following through and installing the malware.  (Whether the OS still considers such installers safe I don't know, but regardless, there is precedent for "safe" files being used maliciously.)
    In addition, if you aren't keeping track of these files that get downloaded, that means that your Downloads folder is probably getting filled up with all kinds of strangely-named files, making it difficult to find things in there and providing a good hiding place for other malware like MacDefender.  If you don't know what's lurking in your Downloads folder, not only is that hazardous, but it takes up space on your hard drive with things you don't need anymore.  I highly recommend changing your browser to download to the desktop.  That way, you instantly see any files when they get downloaded, you can open them quickly and you know exactly what has been downloaded and will be more likely to delete it (or file it away) once you're done with it to prevent desktop clutter.

  • Application Error, certain sites not showing everything and will not automatically open downloaded files

    When I open Firefox I get the Application Error message "The instruction at "0x00000000" reference memory at "0x00000000". The memory could not be "read". Click on OK to terminate the program" Firefox does then open but parts of sites are missing such as videos or animations. checked the plugins and all are up to date. Tried unistalling and re-installing Firefox but get the same error. Also when I download files and click open it doesnt open them, I have to go to the file location and open it. Started when I updated to version 3.6.6. IE8 works fine.
    == This happened ==
    Every time Firefox opened
    == I upgraded to version 3.6.6 ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    Hi,
    For IE,
    You can also refer to the following two links for troubleshooting.
    Follow guides to delete the browser history, disable all add-ons or reset IE (you will lose some IE settings), run a safety scan.
    http://support.microsoft.com/kb/956196
    http://support.microsoft.com/kb/967897/en-us
    What is the result now?
    Yolanda Zhu
    TechNet Community Support

  • After I download an attachment I have to go to the download window and manually open it, my laptop use to download then automatically open the file, how do I get this feature turned back on?

    After I download an attachment from my webmail I have to go to the download window and manually open it, my laptop use to download then automatically open the file, how do I get this feature turned back on?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • How to automatically open csv files in Excel on imac

    I am migrating back from Google Chrome to firefox and would like to have the browser automatically open csv files to Excel on my mac desktop. The step to have them saved in the download folder and then go in an open it in Excel adds an unnecessary action. In the earlier versions of Firefox on my windows machine this worked as desired. Any help will be appreciated.

    The Yahoo Finance server sends the file with the ''Content-Type: application/octet-stream'' header. This is a generic MIME type that doesn't describe the type of file. Therefore you will always see a download prompt, regardless of your download preferences.
    * [https://developer.mozilla.org/docs/Web/Security/Securing_your_site/Configuring_server_MIME_types What are MIME types? | MDN]
    To get around this issue, install the Force Content-Type add-on.
    * https://addons.mozilla.org/firefox/addon/force-content-type/
    In the Add-ons Manager, Extensions category, click the Options button next to Force Content-Type. Create two rules as follows:
    * URL: '''(.csv)$''' Old Content-Type: '''text/plain''' New Content-Type: '''text/csv'''
    * URL: '''(.csv)$''' Old Content-Type: '''application/octet-stream''' New Content-Type: '''text/csv'''
    You should then be able to select what you want to do with CSV files (i.e. open them directly rather than save), and check the "Do this automatically…" option.
    You're welcome.

  • How to open downloaded files?

    Just picked up a Nokia lumia 822 and was wondering how to open downloaded files?  Through IE it appears i can only stream a media file and now download it. Through UC Browser it says its downloaded but seems to only let me stream it.  I want to download a song and add it to my music library, is that even possible?  Are there any 3rd party file manager apps?

    The easiest way to browse your phone is to connect it to a pc with a usb cable. The phone then becomes like a usb drive and you can then drag and drop your media files as required. 

  • Open downloaded file

    Hi guys ,
    i want to open downloaded file in my report.
    In my report we have provided two option.
    one is to download file and
    second one is to open file after download .
    For the downloading i am using gui_donwload function module  but i don't know how to do  second option.
    Thanks,
    Jack

    Hi.
    If you want to open it in notepad for example you can do like this:
    CALL FUNCTION 'GUI_EXEC'
      EXPORTING
         command = 'NOTEPAD'
         parameter = 'C:ptdebug.txt'
    * IMPORTING
    *    RETURNCODE = .
    Or if you want to use classes instead you can do like this:
    CALL METHOD cl_gui_frontend_services=>execute
      EXPORTING
        document               = 'C:ptdebug.txt'
        operation              = 'OPEN'
      EXCEPTIONS
        cntl_error             = 1
        error_no_gui           = 2
        bad_parameter          = 3
        file_not_found         = 4
        path_not_found         = 5
        file_extension_unknown = 6
        error_execute_failed   = 7
        synchronous_failed     = 8
        not_supported_by_gui   = 9
        OTHERS                 = 10.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Best Regards
    Niklas

  • HT1338 I have a problem with opening downloaded files from the internet; zip types. Can you tell me an app to open these types of formats of files?

    I have a problem with opening downloaded files from the internet; zip types. Can you tell me an app to open these types of formats of files?

    It should unzip if you double-cick.
    What are you seeing happen when you do that?
    Select a .zip file in the Finder and Get Info (cmd-i). What is set for it to Open With. It should be Archive Utility.

  • I can't open downloaded files within Mozilla Firefox Particularly PDF files. I have Adobe Acrobat on my machine . Do I need to import it to firefox if so how do I do it ?

    I can't open downloaded files within Mozilla Firefox Particularly PDF files. I have Adobe Acrobat on my machine . Do I need to import it to firefox if so how do I do it ?

    Delete a possible user.js file and numbered prefs-##.js files and rename (or delete) the prefs.js file to reset all prefs to the default value including prefs set via user.js and prefs that are no longer supported in the current Firefox release.
    *http://kb.mozillazine.org/Preferences_not_saved
    Create a new profile as a test to check if your current profile is causing the problem.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    If the new profile works then you can transfer files from a previously used profile to the new profile, but be cautious not to copy corrupted files to avoid carrying over the problem
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • I cannot open downloaded files. The "Open" & "Open Containing Folder" options are grayed out, as well as the "Open" option. I have removed Kaspersky to sure.

    I cannot open downloaded files. The "Open" & "Open Containing Folder" options are grayed out. Cannot right-click on the files to open. File does not appear in the targeted folder. If "opened," the files provide an error message. Issue is primarily with MS Word.

    If "Open" and "Open Containing Folder" in the right-click context menu in the Download Manager window are grayed then that means that the file is no longer in the original download location.<br />
    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.<br />
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.<br />
    See "Disable virus scanning in Firefox preferences - Windows"
    * http://kb.mozillazine.org/Unable_to_save_or_download_files

  • Trouble Opening Downloaded Files

    My wife has a Mac Book using OS X v10.4 (which is why I'm here) with a 1,83 GHz intel core duo. The problem is that she is unable to open downloaded files. The software updater has a long list of suggestions and after she downloads the files (the new java release 8) the installation process starts and hen abruptly quits. I tried to solve that problem by re-downloading release 7 but the same error occurred (the release 7.pkg file was not in the library but the 5 and 6 pkg files were).
    And... she recently purchased Office 2008 for Mac and that won't load either. Coincidence? Or some related problems? She is already on her second hard drive and I am hoping that isn't the problem.
    Help!! Thanks in advance for the help.

    Hi Escubed, and a warm welcome to the forums!
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Tiger Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then Safe Boot , (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it finishes.
    The usual reason why updates fail or mess things up, or things don't load/run, is if Permissions are not fixed before & after every update, with a reboot... you may get a partial update when the installer finds it doesn't have Permissions to change one obscure little part of the OS, leaving you with a mix of OS versions.
    Some people get away without Repairing Permissions for years, some for only days.
    If Permissions are wrong before applying an update, you could get mixed OS versions, if Directory is the slightest messed up, who knows!
    If many Permission are repaired, or any Directory errors are found, you may need to re-apply some the latest/biggest updates again, or even do an A&I if you have enough free disk space.
    The combo update for PowerPC-based Macs...
    http://www.apple.com/support/downloads/macosx10411comboupdateppc.html
    The combo update for Intel-based Macs...
    http://www.apple.com/support/downloads/macosx10411comboupdateintel.html
    Repair Permissions before & after re-install, then reboot again each time.
    If all the above fails, then it appears to be time for a relatively painless Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space and no Disk corruption, and is relatively quick & painless...
    http://docs.info.apple.com/article.html?artnum=107120
    Just be sure to select Preserve Users & Settings.
    If all the above do not resolve the problem, then it's time for an Archive & Install, which gives you a new/old OS, but can preserve all your files, pics, music, settings, etc., as long as you have plenty of free disk space...
    http://docs.info.apple.com/article.html?artnum=107120
    I only use Software Update to see what is needed, then get them for real via...
    http://www.apple.com/support/downloads/
    That way I can wait a week or so, check the forums for potential problems, and get Permissions & such in order before installing.
    If it appears to be time for An Archive & Install, which gives you a new OS, but can preserve all your files, APPs, pics, music, settings, etc., as long as you have plenty of free disk space...
    http://docs.info.apple.com/article.html?artnum=107120
    Be sure to use Preserve Users & Settings.

  • I accidentally set my Downloads to automatically open the files, and now it doesn't save them at all, except in my temporary files. How do I reset the Automatic Download setting?

    I remember back in Firefox 3.6 you could go into about:config and reset the automatic setting for downloads, but that particular option has either been renamed or isn't there anymore.

    Go to the Firefox/'''Tools''' menu, click on '''Options''' and go to the''' Applications''' panel where you can change the action for different content types, to "Save File" or "Always ask" instead of opening the file in a particular application or plugin. See [[Managing file types]].

  • Open downloaded files automatically

    Whenever i used to download PDFs or any other file they would automatically open.
    However, they no longer do.
    I think i may have accidentally clicked something when downloading a PDF once.
    Is there anyway to change this and have my downloaded PDF's automatically open once downloading is finished?
    Thankyou.

    Presuming your using Safari.
    Go to Safari > Preferences > General > Then down the bottom tick Open Safe files after downloading.

  • How to open automatically a downloaded file in Firefox?

    I don't want to double click the downloaded file in that open window. I want that the downloaded file to open automacally when download is completed.

    Hi Angelo_Monteiro,
    Please let us know if any of these articles help:
    * [[Change what Firefox does when you click on or download a file]]
    * [[Set how Firefox handles different types of files]]
    * [[Use the Downloads window to manage downloaded files]]
    Thank you

  • How do i make firefox automatically open a file. "Do this automatically with files like this from now on." does NOT work.

    I have firefox set to Open .wav files with VLC and i have the check box marked to "Do this automatically for files like this from now on." But every time i click download for a .wav voicemail from gmail, i get the same dialog box. I just want firefox to hand the downloaded file to VLC and play it. I don't want to have to click anything after i click the download link. Isn't that action what i'm telling firefox to do after i mark the checkbox with "Do this automatically with file like this from now on." ? Isn't that implied with my selection of the box? How can i fix this?i want to click a "download" link for a .wav voice mail in Gmail and have it automatically play in VLC without any further interaction from me.

    No it's saving the preferences and the check box remains checked from session to session. It will even continue to ask me to what to do with the file even in the same session when i try to download the same file again 5 seconds after i downloaded it the first time.

Maybe you are looking for

  • Asset Retirement: Transaction "Asset Sale without customer" (ABAON)

    Hi Experts, While posting Asset Retirement in ABAON, error occurs as "SYST: You can not determine the period for rule 02 to 23.03.11". Here we are retiring 3 assets. One from one asset class & other 2 from another asset class. for the 1st Asset Class

  • Table Creation of new rows in editable mode

    Hello, I'm using Jdev11g. I create a JSF page with a table, I add a button connected to CreateInsert bindings. Everything works fine but I want that when a new row is created on the table, the new row must be in editable mode. Thank's

  • Question email icon in Reader XI toolbar

    Good morning, I have several users who use adobe as default reader application (win7 Pro desktops). They use an application called Protivity within Google Chrome and one user has it setup so that when she opens, for example, a PDF receipt, it opens a

  • How do I change Apple-id on IPad?

    How do I change Apple-id on IPad and IPhone?

  • Missing Songs - Need help

    I have about 2000+ songs in my itune after I syn with my iphone (3G, 16GB firware 2.1), I song in my ipod there are only 299 songs (I select songs and at the bottom it shows 299, I didnt count) and occupy about 8GB of storage space. Why only 299songs