How can I import a pdf file into numbers so it will open with a click

How can I import a pdf file into a spreadsheet so that it will open with a click?

You can link to a webpage or an email in Numbers-- that's it.
The best way I found to do this is to enable websharing on your machine (see this article if you are running 10.8: http://lowendmac.com/crews/12lc/web-sharing-mountain-lion.html)
You can then place your pdf files in the folder /Users/<your user name>/Sites/<somefolder>
Then link to this using the url  "<your machine name>.local/~<your user name>/<somefolder>/<pdf Name>
My machines name is "Proton" (you can get this from the System Preferences > Sharing pane)
My user name is "wayne"
so I stored a pdf file (DM00027543.pdf) in the folder "/User/wayne/Sites/PDFTest"
and stored the URL "http://proton.local/~wayne/PDFTest/DM00027543.pdf" in the "URL" field of the Hyperlink inspector

Similar Messages

  • How do I import a pdf file into numbers?

    how do I import a pdf file into numbers?

    Open the PDF in preview or you favorite PDF reader, then drag pages from the page view to a Numbers sheet

  • How can I convert a pdf file into a usable xcel file

    how can I convert a pdf file into a xcel file. the pdf file file is layed out in colums, justified and separated in various types - i need to be able to set colum limits manualy,  thanks for your input/

    Without further information, I would suggest using either Acrobat or the Export PDF service.

  • How can I embed a pdf file into the body of an email?

    How can I embed a pdf file into the body of an email?

    The problem is defining what it even means to “embed” a PDF file in the body of an e-mail, especially if you are dealing with a multiple page PDF file.
    E-mail is either pure text, rich text (something akin to RTF in Word), or HTML. PDF is not compatible with any of these. Thus, to embed a PDF file, something has to be converted and that means the PDF would be converted to a less graphically rich raster format. But is that what you would really want?
    I think that the MacOS and iOS e-mail clients do under some circumstances place an attached PDF file within HTML segments and by clicking on same, you get the equivalent of extracting the full PDF file, but I have no real experience with that.
    Another alternative is HTML with a proxy image with a hyperlink to an external PDF file that is invoked when you click on the hyperlink.
    Perhaps you can explain what you are really trying to accomplish and what the recipient of such an e-mail's actual experience would be?
              - Dov

  • How can I import MP3 audio files into premiere pro cs5?

    Can any one help?
    How can I import MP3 audio files into premiere pro cs5?

    It is really difficulty for me.If you still haven't found a satisfactory answer,please search it on google.Hope you can get your answer as soon as quickly!
    fifa 14 coins
    cheap fifa coins

  • How can i import an excel file into formscentral?

    how can i import an excel file into formscentral?

    Thanks for asking.  This is not something we currently support but you can add or vote on feature ideas:
    http://forums.adobe.com/community/formscentral?view=idea
    If you need to add a new idea click "Create an idea" under "Actions" in the top right.
    Perry

  • How can I split a pdf file into smaller files using Acrobat XI

    How can I split a pdf file into smaller files using Acrobat XI?

    Hi laforcej
    Open the PDF In Acrobat ...
    Go to Tools -> Pages -> Extract
    Now Select the Page Number you Want to Extract and Save them

  • How can you convert a PDF File into a picture format for uploading?

    How can you convert a PDF File into a picture format for uploading?

    If you have Acrobat 11, you'd select: File > Save As Other > Image
    and select one of the available image formats.

  • How can I attach a pdf file to outgoing mail without it opening up within the message?

    How can I attach a pdf file to outgoing mail without in opening up within the message?

    You can use the Share button on Preview's toolbar. Choosing Email pops open Mail with the PDF already iconified as an attachment. If it doesn't behave this nicely for you, select the PDF in Mail and choose the right contextual menu, where you will find View as Icon. I also have Send Windows-Friendly attachments enabled.

  • How can I import multiple PDF pages into ID?

    I am putting together a catalog which consists of over 400 pages. We had the products on our website exported into a PDF format and I need to add a header and footer to each page via a master page in ID. I don't need to edit the actual PDF but I need to create a layer on top of what was exported. How can I import the 400 pages to be independent of each other without manually placing them?

    Depending upon what you want in the header or footer, you do it in
    Acrobat...Document>Header and Footer>Add.
    There's a multipage PDF place script that ships with ID...open the
    scripts panel and it should be there.
    Bob

  • How can I change a PDF file into a Word Document

    Regretfully, I am Disabled and unable to watch a Tutorial video online. So, I must use this venue to ask a simply question...Is there a way to make a PDF file into a Word Document? OR, how can I type info into a PDF file? Either answer would help me IMMENSELY!
    Thanks for your time and consideration.

    Using your Adobe ID, I believe you have one free trial on ExportPDF.
    Also, Acrobat is available as a fully functional 30-day trial.

  • How can I import a .AVI file into my project?

    I want to import a .AVI file into my video project but Final Cut Pro will not import it. Final Cut says the file is not recognized but it plays with Quicktime.

    Jamison S wrote:
    DJ OZA,
    Do you get the warning "Media files are not optimized for FCP. Either recapture the media or use Media Manager to crate new copies of the files to improve performance for multi-stream playback."?
    What does this mean?
    I can import and edit the files no problem either, except for that waring, which concerns me.
    It means you will not be able to use the multiclip feature with these files because your Macintosh is working very hard to decode them on the fly. More than one stream will choke your machine.
    Your AVIs are visible in FCP because you happen to have acquired an AVI file that uses a codec you have available on your machine.
    AVI isn't even supported by Microsoft; it's been a totally concatenated delivery wrapper for more than a decade. It only survives because of entrenchment.
    Use Get INfo on one of your AVI clips, figure out what codec was used, use Google to find out what you can about the codec, and decide how you want to proceed. You want to determine what your output is going to be and work backwards from that decision. For instance, if you're going to distribute a standard MPEG2 DVD, you want to edit using conventional DV. Transcode you AVI files to DV using Compressor.
    Your easiest solution will be to edit on a PC that does handles the AVI natively or to contact whoever gae you the files and demand they provide you with clips you can edit on a Macintosh.
    bogiesan
    Message was edited by: David Bogie Chq-1

  • How can I load a pdf-file into a byte[]?

    Hello,
    I would like to load a PDF-File into a byte-Array. How can I do this? The standard Streams shouldn't work because this can't be converted into characters. Can it? So, what does work?
    Any idea?
    Bye,
    Wolfang

    Why would someone not do:
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    InputStream is = new FileInputStream("foo.pdf");
    byte[] buf = new byte[4096];
    for(int len=-1;(len=is.read(buf))!=-1;)
            baos.write(buf,0,len);
    is.close();
    baos.flush();
    baos.close();
    buf = baos.toByteArray();  // Here are you bytes!You don't need to know the exact size, let ByteArrayOutputStream do it for you. Streams are generally for bytes, Readers/Writers generally for characters. Why exactly did you say: ``The standard Streams shouldn't work because this can't be converted into characters?''

  • How can I Import *.Mov video files into LightRoom 5.3 ?

    I am having trouble trying to Import *.Mov video files into LightRoom 5.3.    It imports preview thumbnails but when I select  'Import ' it now stops and displays an error message.

    Why do you ask about Lightroom issues on a Photoshop Forum?

  • How can I Split the PDF File into different pages?

    Hi,
    My requirment is to split the pdf file , which is obtained by using FM "convert_otf" , into seperate PDF file for each employee data(PERNR).
    Please suggest me the way to slipt the PDF file that has to be downloaded into the presentation server.

    Hi,
    Ok, looking at that programm didn't actually help me very much to understand what's going on, or where you have the CONVERT_OTF call... Regardless, if the suggestion by Raymond is not feasible in your scenario, the thing I'd try to do is - splitting the spool (OTF) contents before calling CONVERT_OTF into individual documents (feeding it to convert FM piecemeal)... The link to OTF format and commands documentation is here.
    Again, it's difficult to give a good algorithm without knowing the exact OTF contents (could you perhaps somehow export the display of spool in RAW format and attach here?) but it would boil down to approximately following:
    1) set the &first_page per PERNR = 1;
    2) run through OTF lines until the &end_page for PERNR has been identified somehow (hopefully there are Begin/End Form OTF commands '//' in that spool... and they correspond to the split of spool you need...);
    3) extract the otf contents from &first_page to the EP command of &end_page into separate OTF itab and, if necessary, add // (End of form) command at the end of itab;
    4) call CONVERT_OTF on the table and download;
    5) set the &first_page per PERNR = &end page + 1;
    6) repeat from 2) until end of spool OTF data
    Something like that... Depending how the Sapscript translates into OTF, you may also need to prepend a few commands found at the very beginning of the spool to each extracted invividual OTF document...
    I Hope you can get the gist of what I'm suggesting... splitting OTF is definetly easier than trying to split PDF, I feel. It's not ideal solution, because - what if the structure of OTF contents you would be realying on changes for some reason..?
    cheers
    Janis

Maybe you are looking for

  • How to display a frame at the upper left corner of each screen?

    hi, below are 2 ways to display a frame at the upper left corner of each screen (i have 2 monitors). both work but the 2nd way is much slower. which, if any, of the 2 approaches is "more" correct? import java.awt.Canvas; import java.awt.Color; import

  • Using bind variable with IN clause

    My application runs a limited number of straight up queries (no stored procs) using ODP.NET. For the most part, I'm able to use bind variables to help with query caching, etc... but I'm at a loss as to how to use bind variables with IN clauses. Basic

  • Error in Process Chains

    Hi APO Gurus I am getting following error in Process Chain : 1 Tab Page ICkw6Rdc7s7x000002e0280 still contains 3 temporary aggregates when deleting 2 Deletion of tab page ICkw6Rdc7s7x000002e0280 with 16566 registrations failed. 3  Error in function m

  • Problem in address printing in sap script in Russian language

    hi all I am trying to get a PO output using a sap script. The problem is that the vendor address in not coming in the required Russian language. The language in PO is Russian and the logon langauge is also Russian. The script uses ADDRESS ENDADDRESS

  • Part of my template cannot be edited. help

    Can someone please tell me why the right column of this template cannot be edited.  when I try to edit all the info is selected but nothing happens.  strangely the bottom part (wealth calculators) can be edited but the two divs above can't. thanks pa