How to save PDF's after opening them in Safari.

I try to safe the PDF ( a syllabus for college) and even though the shows an icon that looks like an arrow pointing down to a computer screen, clicking the icon does nothing. So i was wondring how do I save it to a folder in my Mac?

If you have the original link to the PDF file, you can right click it, and select "Save Linked File As.." to save it (:
If you don't have the original link, you can copy the web address (usually "http://......nameofyourpdffile.pdf" If it is, copy the whole web address, post it on a random website as a hyperlink, then do the right click method!\
Hope this helped!

Similar Messages

  • Firefox always saves PDFs instead of opening them in the browser. How can I change this?

    Using Firefox 10.0.1

    Hi michaelphelan,
    Have you gone to ''Tools > Options > Applications'' to see if you have told Firefox to do that as default?
    You'll also need to have a PDF add-on for it to work. I'd suggest you look at:
    * [[Options window - Applications panel]]
    * [[Opening PDF files within Firefox]]
    Hopefully this helps!

  • Is it possible to have Firefox save PDFs and also open them automatically *at the same time*?

    When I click on a link to download a PDF, I get a choice between opening the PDF (which then saves the PDF automatically to the Download folder) OR saving the PDF (which allows me to choose the location). But I would like to be able to do both things simultaneously: 1) choose where to save it on my hard drive, AND 2) have the PDF open automatically in my default PDF reader (which is Preview). Can I have my cake and eat it too? And if so, how?
    Also, something weird just happened when I just opened my Firefox Preferences>Applications. When I originally selected Preview as my default, there were two different but seemingly identical boxes, one immediately above the other, for choosing a default for handling PDFs; now there is only one, which makes more sense, but something seems screwy. Not sure what is going on, or if it is related to my first question.

    You can install the portable Firefox 3.6.x version to access websites that do not work with Firefox 5+.
    *http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

  • How to save PDF form without empty fields ?

    Hello,
    I try to find how to save PDF forms after a school registration but without empty fields because i have lots of relation in my Form but i haven't.
    Is it possible and how ?
    Thanks

    Hi,
    Are you downloading responses as PDF forms after forms are submitted? If so, FormsCentral doesn't provide an option to exclude empty fields and you won't be able to save PDF forms without empty fields.
    You can use this form to "vote" on popular feature requests, or to add a new one of your own:
    https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Wenlan

  • After installing a new motherboard, my imac opens pdf files with colorsync.  How do I reset it to open them with Adobe?

    After installing a new motherboard, my imac opens pdf files with colorsync.  How do I reset it to open them with Adobe?

    That makes sense Dennis.  I did that but was unable to find Adobe Reader in my Applications folder.  Of note though is that after a restart, the problem seems to have gone away.  So, disaster averted.  Thanks for responding though.  It's nice to have help on this stuff.
    D

  • How to make pdf file auto open with adobe reader after downloaded

    how to make pdf file auto open with adobe reader after downloaded

    I note from your system details that you have the plugin for adobe pdf s so I would have expected the files should open in firefox '''without''' you needing to explicitly download them.
    Once the files are open in firefox, you will also get the option to save them permanently to a location on your computer. If you wish I suppose you could set the file type pdf to be associated with and be opened by firefox instead of with the Adobe Acrobat Reader, but that would just seem to be an additional complexity.

  • How to save pdf file in database

    Dear All,
    my application is forms 6i and database is 8i,requirement is that how to save pdf file in database and users can view through forms

    I'll apologize up front for the length of this post. I have a few database procedures I created that write a file to a BLOB column in a table as well as retrieve the BLOB from the column after it stored there. I have successfully stored many different types of binary file to the database using these procedures - including PDF files. I have not used these procedures in a Form so I can confirm that they will work, but theoretically they should work. I'm including the code for each procedure in this posting - hence the apology for the long post! :-)
    Also, since these procedures reside on the database you will need to use Forms TEXT_IO built-in package to write your file to the server before you can use these procedures to store and retrieve the file from the database.
    These procedures reads and writes a binary file to a table called "LOB_TABLE." You will need to modify the procedure to write to your table.
    -- Author :  Craig J. Butts (CJB)
    -- Name   :  load_file_to_blob.sql
    --        :  This procedure uses an Oracle Directory called "IN_FILE_LOC".  If you
    --           already have a directory defined in the database or would prefer to use
    --           a different Directory name, make sure you modify line 21 to reflect the
    --           new Directory name.
    -- ==================================================================================
    -- History
    -- DATE        WHO         DESCRIPTION
    -- 12/11/07    CJB         Created.
    CREATE OR REPLACE PROCEDURE load_file_to_blob (p_filename IN VARCHAR2) IS
       out_blob    BLOB;
       in_file     BFILE;
       blob_length INTEGER;
       vErrMsg     VARCHAR2(2000);
    BEGIN
       -- set the in_file
       in_file := BFILENAME('IN_FILE_LOC',p_filename);
       -- Get the size of the file
       dbms_lob.fileopen(in_file, dbms_lob.file_readonly);
       blob_length := dbms_lob.getlength(in_file);
       dbms_lob.fileclose(in_file);
       -- Insert a new Record into the tabel containing the
       -- filename specified in P_FILENAME and a LOB_LOCATOR.
       -- Return the LOB_LOCATOR and assign it to out_blob.
       INSERT INTO lob_table (filename, blobdata)
          VALUES (p_filename, EMPTY_BLOB())
          RETURNING blobdata INTO out_blob;
       -- Load the file into the database as a blob.
       dbms_lob.open(in_file, dbms_lob.lob_readonly);
       dbms_lob.open(out_blob, dbms_lob.lob_readwrite);
       dbms_lob.loadfromfile(out_blob, in_file, blob_length);
       -- Close handles to blob and file
       dbms_lob.close(out_blob);
       dbms_lob.close(in_file);
       commit;
       -- Confirm insert by querying the database
       -- for Lob Length information and output results
       blob_length := 0;
       BEGIN
          SELECT dbms_lob.getlength(blobdata) into blob_length
            FROM lob_table
           WHERE filename = p_filename;
       EXCEPTION WHEN OTHERS THEN
          vErrMsg := 'No data Found';
       END;
       vErrMsg := 'Successfully inserted BLOB '''||p_filename||''' of size '||blob_length||' bytes.';
       dbms_output.put_line(vErrMsg);
    END;
    -- Author   :  Craig J. Butts (CJB)
    -- Name     :  write_blob_to_file.sql
    -- Descrip  :  This procedure takes a BLOB object from a database table and writes it
    --             to the file system
    -- ==================================================================================
    -- History
    -- DATE        WHO         DESCRIPTION
    -- 12/11/07    CJB         Created.
    CREATE OR REPLACE PROCEDURE write_blob_to_file ( p_filename IN VARCHAR2 ) IS
       v_blob      BLOB;
       blob_length INTEGER;
       out_file    UTL_FILE.FILE_TYPE;
       v_buffer    RAW(32767);
       chunk_size  BINARY_INTEGER := 32767;
       blob_position INTEGER := 1;
       vErrMsg     VARCHAR2(2000);
    BEGIN
       -- Retrieve the BLOB for reading
       BEGIN
          SELECT blobdata
            INTO v_blob
            FROM lob_table
           WHERE filename = p_filename;
       EXCEPTION WHEN OTHERS THEN
          vErrMsg := 'No data found';
       END;
       -- Retrieve the SIZE of the BLOB
       blob_length := DBMS_LOB.GETLENGTH(v_blob);
       -- Open a handle to the location where you are going to write the blob
       -- Note:  The 'WB' parameter means "Write in Byte Mode" and is only
       --          available in the UTL_FILE pkg with Oracle 10g or later.
       --        USE 'W' instead for pre Oracle 10q databases.
       out_file := UTL_FILE.FOPEN('OUT_FILE_LOC',p_filename, 'wb', chunk_size);
       -- Write the BLOB to the file in chunks
       WHILE blob_position <= blob_length LOOP
          IF ( ( blob_position + chunk_size - 1 ) > blob_length ) THEN
             chunk_size := blob_length - blob_position + 1;
          END IF;
          dbms_lob.read(v_blob, chunk_size, blob_position, v_buffer );
          UTL_FILE.put_raw ( out_file, v_buffer, TRUE);
          blob_position := blob_position + chunk_size;     
       END LOOP;  
    END;Hope this helps.
    Craig...
    -- If my response or the response of another is helpful or answers your question please mark the response accordingly. Thanks!

  • How to save Pdf form localy without internet

    How to save Pdf form localy without internet?
    I thought in the beginning about advanced user rights and pure saving them on adobe reader but i saw legal notes about 500 user who can legaly save it localy and answer to me (bu they can`t answer to my client who paid me for doing this form).
    Other thing is to do Air Application which would collect data from Pdf Form and save it (localy without internet) to use it later.
    I thought about that second possibility but i can`t find any clue to do it myself.
    Any help will be appreciated...

    Hi,
    Are you downloading responses as PDF forms after forms are submitted? If so, FormsCentral doesn't provide an option to exclude empty fields and you won't be able to save PDF forms without empty fields.
    You can use this form to "vote" on popular feature requests, or to add a new one of your own:
    https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Wenlan

  • How to save .pdf file using office word and excel

    Can someone help me how to save .pdf files using office word and excel?  I reinstalled my adobe 7.0 pro in my new pc and before I was able to do it but with my old pc.

    For anything after Office 2003, you have to print to the Adobe PDF printer. If you installed AA 7 on OS newer than XP, you may have to do a workaround to get it to work. With later versions of WORD you can always use the MS plugin for creating PDFs.

  • How different of PDF downloning with open in new Tab or not Open new Tab

    How different of PDF downloning with open in new Tab or not Open new Tab?
    My web site distributes PDF files,
    and user can download the PDF files in my site.
    The problem is I wanna show PDF that download in new tab,
    but pdf only downloaded, not open new tab.
    How to open new tab by downloading a PDF

    How different of PDF downloning with open in new Tab or not Open new Tab?
    My web site distributes PDF files,
    and user can download the PDF files in my site.
    The problem is I wanna show PDF that download in new tab,
    but pdf only downloaded, not open new tab.
    How to open new tab by downloading a PDF

  • No place to Double Click visible on pdf file-after opening a password-protected pdf

    No place to Double Click visible on pdf file-after opening a password-protected pdf

    Thanks Pat for your interest.
    Actually I am using Windows 8 (Not 8.1) and Adobe Reader Version XI (11.0.06)
    Now, the exact problem I am facing is that there are certain types of pdf files I am being sent which are Password pritected (it may not be a necessary condition, i don;t know) and after I have keyed-in the correct password, it flashes the message- "Double-click here to open your file". Now while using the earlier versions of Adobe (or maybe Windows) I used to see a peculiar Pin-shaped object on the screen, double-clicking which used to open the file. That object is somehow missing this time, so I have no place to double-click. Therefore I am not able to open the file.I may add that I have recently moved to Windows 8 from XP, so my knowledge of Windows 8 is not up to mark. Can you please help?

  • How do I delete emails without opening them on iMac with Mavericks and 10.9.2 system

    How do i delete emails without opening them on my Imac with Maverick 10.9.2 operating system

    Right or control click the email then click Delete.

  • How to quit the games after open it?

    How to quit the games after open it?

    iOS 7 How to Close Apps
    Double Tap the Home Button... Then swipe the App (not the icon) Upwards... Tap the Home Button when finished.
    From Here  >  http://support.apple.com/kb/HT4211

  • How do I reenable Firefox 11 to download pdf files without opening them? Thank you!

    First, I'd just get a blank screen. Then I learned to change 'get info.' window to open Firefox in 32-bit mode. Now, pdfs easily open, but I don't how to just download them (for later viewing) without opening them.

    On Mac, use: Firefox > Preferences > Applications<br />
    You can set the action to "Always Ask"
    *http://kb.mozillazine.org/File_types_and_download_actions

  • How to Save Pdf file in a particular format

    Hi Experts,
                        Can anybody tell me how to save a pdf file in a particular format,My requirement is i have a print button in webdynpro ,when ever user clicks on print ,adobe form is opened ,if user clicks on save .Form is saving with adobe form name .My requirement is it should be saved as ID NO.Date.Pdf  form lets Id is 0456 ,form should be saved as 0456.040614.pdf format, Thanks in Advance
    Regards
    Sandesh

    Hi Sandesh,
    Please provide the complete code from print & save button.
    Thanks & Regards,
    Balamurugan G

Maybe you are looking for

  • How can I do an iCloud back-up from the 5 to the 4s?

    I previously had the iPhone 5 but it got stolen.  I was able to purchase the iPhone 4s and restore the backup from the 5 onto this phone.  However, I haven't been able to back up this phone onto my icloud.  It's saying I don't have enough storage spa

  • Burn movie as a whole

    I am sorry if this has been covered before in here... I am trying to make a copy of a home movie. I have loaded the video into iMovie and made a copy using iDVD. The only problem is that it only shows each chapter individually, then goes back to the

  • How to install Project Online and Project Pro for Office 365

    Hello, Can someone please explain where can I find reliable and exploitable step by step process to install Project Online and Project Pro for Office 365. I tried for several weeks with no avail. All the links I followed led to an impasse. Thanks for

  • Extract Created-Property from Office Documents

    Hello, i want to show the created-property of Office Documents in the search result list. KM only extracts Title, modified, modifiedby. So i followed the document "How to extract DC metadata from office documents for indexing and searching.pdf". But

  • IWeb site very slow

    I have created a website with iWeb08 for a local theatre company but my problem with it is that everyone trying to access it tells me it is very very slow and they also have problems with fonts (it looks good on my Mac but terrible on IE). Is there a