How can I link to a pdf not on the web?

I'd like to include a link on my website-in-progress to a .pdf that is not on the web. I tried dragging it onto a blank page, thinking I would make an internal link, but no luck. Suggestions?

Use "Link to: A file" in the link inspector.

Similar Messages

  • How can I buy Photoshop CC and not rent the software? [was: buy]

    HOW CAN I BUY
    PHOTOSHOP CC AND NOT RENT THE SOFT WARE

    You can't.  You can, however,  buy Photoshop CS6.
    http://www.adobe.com/products/catalog/cs6._sl_id-contentfilter_sl_catalog_sl_software_sl_c reativesuite6.html
    By the way, your caps lock is stuck on.

  • How can I make my imap email not take the emails off the server?

    How can I make my imap email not take the emails off the server when I delete them on my iPad?
    Can anyone help me whith this?
    I tried to use the pop account in gmail settings but that was downloading all my emails sice 2008 ( more than 300 deleted emails tha can only be found in the deleted email box), when I just have 5 or 6 email in the inbox .
    How can I solve this????
    Thank u all...

    I have the same problem. For years I have been able to delete emails from my ipad and have them remain on the server so I can deal with them on the desktop. Now they get deleted from the server when deleted from the ipad, which makes the ipad unless for reading mail.
    You answered to delete the email account on the ipad and set up a new one as a pop. I have made many attempts to do that in the  incomping mail server "Host Name" field but it always errors out even when the host name is equal to what my desk top has. So I can see no way to change away from IMAP. I started with an ipad 1 and now have an ipad 2.
    Rachael

  • I have started a photo book in iPhoto (OS 10.7.5). How can I add photos that were not in the original album?

    I have started a photo book in iPhoto (OS 10.7.5). How can I add photos that were not in the original album?

    Thanks for your quick response. I thought I had tried that but I must not have because it worked perfectly.

  • Help!!! the app Iphoto is closed marking a erros. I go back and open the application and are not photos. How can I recover them? Are not in the image folder.

    I was editing my photos and adding them to a album and suddenly the app is closed marking a erros. I go back and open the application and are not photos. How can I recover them? Are not in the image folder.

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • HT4759 How can i transfer everything on my Note to the iCloud

    How can i transfer everything on my Note to the iCloud

    Go to System Preferences>iCloud and check Notes.  Then open the Notes app.  If your Notes are not in the iCloud account, drag and drop them there.

  • HOW CAN I IMPORT TEXT FROM MICROSOFT WORD TO THE WEB PAGE?

    HOW CAN I IMPORT TEXT FROM MICROSOFT WORD TO THE WEB PAGE?

    Another method is tosave your Word document as an a web page.  Then open the htm file, copy the text and paste into an HTML snippet on your web page.  Resize to show all the document and publish. It will retain the style, font and alignment of the original Word document.
    OT

  • How can I auto export a PDF File using the "Smallest File Size" preset and set the Exported File Name based on information from an Imported PDF?

    Greetings all,
    I am trying to create a script to automate a PDF export process for my company for inDesign. I’m fairly new to inDesign itself and have no previous experience with javascript, although I did take C++ in high school and have found it helpful in putting this code together.
    We have an inDesign template file and then use the Multi-page PDF importer script to import PDF files. We then have to export two version of each file that we import, then delete the imported file and all of the pages to reset the template. This has to be done for nearly 1000 pdf files each month and is quite tedious. I’m working on automating the process as much as possible. I’ve managed to piece together code that will cleanup the file much quicker and am now trying to automate the PDF exports themselves.
    The files are sent to us as “TRUGLY#####_Client” and need to be exported as “POP#####_Client_Date-Range_North/South.pdf”
    For example, TRUGLY12345_Client needs to be exported as POP12345_Client_Mar01-Mar31_North and POP12345_Client_Mar01-Mar31_South.
    There are two templates built into the template file for the north and south file that are toggled easily via layer visibility switches. I need to get a code that can ideally read the #s from the imported Trugly file as well as the Client and input those into variables to use when exporting. The date range is found in the same place in the top right of each pdf file. I am not sure if this can be read somehow or if it will have to be input manually. I can put North or South into the file name based on which template layer is visible.
    I am not sure how to go about doing this. I did find the following code for exporting to PDF with preset but it requires me to select a preset and then type the full file name. How can I set it to automatically use the “Smallest File Size” preset without prompting me to choose and then automatically input some or preferably all of the file name automatically? (If the entire filename is possible then I don’t even want a prompt to appear so it will be fully automated!)
    PDF Export Code (Originally from here: Simple PDF Export with Preset selection | IndiSnip [InDesign® Snippets]):
    var myPresets = app.pdfExportPresets.everyItem().name;
    myPresets.unshift("- Select Preset -");
    var myWin = new Window('dialog', 'PDF Export Presets');
    myWin.orientation = 'row';
    with(myWin){
        myWin.sText = add('statictext', undefined, 'Select PDF Export preset:');
        myWin.myPDFExport = add('dropdownlist',undefined,undefined,{items:myPresets});
        myWin.myPDFExport.selection = 0;
        myWin.btnOK = add('button', undefined, 'OK');
    myWin.center();
    var myWindow = myWin.show();
    if(myWindow == true && myWin.myPDFExport.selection.index != 0){
        var myPreset = app.pdfExportPresets.item(String(myWin.myPDFExport.selection));
        myFile = File(File.saveDialog("Save file with preset: " + myPreset.name,"PDF files: *.pdf"));
        if(myFile != null){
            app.activeDocument.exportFile(ExportFormat.PDF_TYPE, myFile, false, myPreset);
        }else{
            alert("No File selected");
    }else{
        alert("No PDF Preset selected");
    So far my code does the following:
    1) Runs the Multi-Page PDF Import Script
    2) Runs PDF Export Script Above
    3) Toggles the Template
    4) Runs #2 Again
    5) Deletes the imported PDF and all pages and toggles template again.
    It’s close and much better than the original process which was almost 100% manual but I’d like to remove the Preset prompt from the PDF script and have it automatically select the “Smallest File Size” preset. and then if there’s a way to have it auto-fill in the file name so no user input is required at all other than selecting each file to import. (If there’s a way to setup a batch action for the multi-import script that would be even better!)
    Thanks in advance and if there’s anything else I can provide that would help please let me know! Even a nudge in the right direction will be a big help!

    If you hold down the option key, it will typically show the location. Or you can often hit option-return on the file and it will reveal the file in the Finder, instead of opening it.
    Final option is to open it, and just option-click the filename in the toolbar of Preview and it should show you the location.
    It's probably an attachment to an email you've received. If you have Mail set to cache emails and their attachments it'll be stashed in a subdirectory of ~/Library/Mail. Which is fine.

  • How do I link external files (.pdf's) in the flash content please?  I'm creating a CD interface

    Hello
    I'm new to Adobe CS software and would like some advice please.
    My company uses a CD with a flash interface that opens via an .exe or .app file.  The original designer is on maternity leave at the moment but we need some content updates before she gets back and I’m deciding whether to redo the CD myself or to source a new designer.
    So far I've been able to replicate most of the CD in Catalyst using the trial version but there is one thing stopping me from buying the software.  I can't find a way to link external files (specifically pdf's) via the flash content.  The CD is for instruction manuals so once the interface has been navigated the user needs to click on a button to open the desired pdf manual.
    Is this possible in Catalyst or am I looking at the wrong software?
    I can't write code and my experience is limited so I would appreciate help from someone who knows what they're talking about please and any software recommendation would also be great
    If I need to outsource please tell me but bear in mind that I have been able to do all the design work and it's just linking the pdf's that I'm struggling with
    Thanks in advance and for any help

    Hi Bear,
    Thanks for your quick answer.
    Flash Catalyst currently prefixes all links with "http://", so you would need to save your FXP in Catalyst, open the FXP in builder, and remove the "http" so that you're just loading the local pdfs.
    I tried your suggestion but couldn't get it working so I'm probably doing something wrong since I'm not very familiar with Flash Builder.
    I created the button > on click > go to url interaction in Catalyst and saved the project (tried it using a PDF saved on our server and also my PC).
    I imported the FXP and opened to "project name / src / (default package) / main.mxml / button name"
    After deleting "http" I selected "export release build" and opened the new SWF and also tried the HTML; the new button just opened to my homepage instead of the PDF
    I also tried deleting "http:" and "http://" which deactivated the button completely (I expect some coders will laugh at that but I am a noob )
    Unfortunately linking to online files isn't an option for me so do you see what I'm doing wrong please?
    Thanks for your help

  • How can I stay signed in to Hotmail on the web

    I am using an Ipad 4 and every time I close Safari and reopen It, I have to enter my username and password, and there is no box to tick to stay signed in.  I am more comfortable using hotmail through the web based platform rather than through the email app, so please don't suggest using that instead. 
    Does anyone know what's going on and how I can stay signed in?

    Unless hotmail has an app or mobile interface (usually m.hotmail.com is the naming convention sites use) if there's no 'remember me' tick box, then there isnt' a way.
    The lack of that box could be a security feature, but more likely that it's java based, which isn't supported on the iPad.
    Have you tried to access it via another browser? There's some free ones out there that have different levels of functionality than Safari.

  • How can you display a dynamically loaded vi to the Web Server?

    I am working with LabView 6.1 and the Web Server. I can call a subvi and have it display on a remote machine using a browser with no problem. But what I would like to do is dynamically load and run a vi and have it display on the remote computer using only a browser. I have tried a small example of a front panel that invokes the run vi method (and fp.open prop) on another vi when a button is pressed, but the invoked vi is displayed only on the local computer. Is there any way of viewing dynamically loaded vi's on a remote machine without having a copy of LabView running on it?

    If i understand your question correctly, you want to monitor vi that are dynamically loaded on a remote machine without having LabVIEW installed on the machine from witch you want the monitor. I don't think it's possible how ever a good reference book would be Internet applications in LabVIEW. You can find it on BARNES&NOBLE.
    Hope i could help

  • How can I keep music playing longer without using the web.

    I listen to siriusxm through the web. After about 20 min the system turns off if I do nothing on the web. How I fix this?

    You need to keep your computer from going to sleep. this is a windows setting and not a Firefox one, but here is something to point you in the right direction:
    http://windows.microsoft.com/en-us/windows7/sleep-and-hibernation-frequently-asked-questions

  • How can I copy text from PDF and include the source filename in the pasted selection?

    I'm a biologist and frequently cut-and-paste notes from PDFs of scientific articles.  I name all of the PDF articles with their PubMed ID, a short unique identifier (e.g. 19397482.pdf).  When I take notes, I will select a few sentences from the PDF and then paste them into a text editor for later reference. 
    Can anyone suggest a method or script that would allow me to paste the copied text with the Pubmed filename included in a single action?  I would want the pasted output it to look something like this, with the filename appended to the end:
    Of the transcripts that were significantly different, there was a greater number of transcripts that were down-regulated in the IVC embryos (380) than the number of transcripts that were up-regulated (208).  [20668257.pdf]
    This would really help me to properly cite information sources during the writing process.  I know there are bibliography managers that might be able to do something like this, but I prefer to read the PDF articles directly in Preview and select the text as I am reading. 
    Thanks very much for any suggestions / ideas.
    jjw

    To copy and paste in a single action:
    tell application "Preview" to activate
    tell application "System Events" to tell process "Preview"
        -- Get the PubMed ID:
        get the title of the front window
        set thePubMedID to word 1 of result
        -- Copy the selected text to the clipboard:
        keystroke "c" using {command down} -- ⌘C
        delay 0.25 -- adjust if necessary
        -- Add the PubMed ID to the contents of the clipboard:
        set theNotes to the clipboard
        set the clipboard to (theNotes & space & "[" & thePubMedID & ".pdf]")
    end tell
    tell application "Notational Velocity" to activate
    tell application "System Events"
        -- Paste the contents of the clipboard to the end of the Notational Velocity document
        key code 125 using command down -- ⌘↓
        keystroke return & return
        keystroke "v" using {command down} -- ⌘V
    end tell

  • HT4718 how can i get osx lion its not on the app store and i have factory reset my macbook pro and now cant download even though i brought it a year ago?

    i might be stupid, but i cant find osx lion which i paid for a year or so ago, all it shows is mountion lion which i would have to buy. anyone have any ideas as to how i can redownload lion osx, 10.7.5 thanks.

    Hopefully, you saved a copy of that ill-designed installer which deletes itself during the installationi process, necessitating wasting resource DLing it over and over again. Sheer madness and toatlly anit-green in behavior.

  • How can I get my printer to not change the font from any larger number than 10

    Is the problem in the printer or in the computer, I have a Dell windows 7

    I understand that you are finding issues while printing certain fonts with font size >10
    Please try to provide more details about the application software used, printer model and additional information which might help to understand the issue better.
    In general, the application software controls the complete page formatting (page layout, text/font size etc.).  Information or print commands sent by software will override the certain print driver settings and driver will convert the job to printable data.
    Please mark the post that solves your problem as Accepted Solution
    Click the 'Kudos Thumbs Up' if this was helpful. Thank You!
    (Although I am an HP employee, I am speaking for myself and not for HP)

Maybe you are looking for

  • Galaxy S3 no longer connects to PC via USB after 4.3 Update

    Can anyone else verify on the Verizon JB4.3 update, that connecting their Galaxy S3 to their PC, only initiates charging, but no longer makes the connection for data transfers. Developer Mode is active, and USB Debugging checked.

  • Opening gif and wmv files

    I have received emails with attachments in gif and wmv formats that will not open. Yet on my old iMac running 10.3 there is no problem, they open automatically. On wmv format get message OSStatus error -50. My Quick Time Player (v. 7.3.1) implies tha

  • How can I run Windows XP under 10.10.2?

    While I seldom use XP, there are times I need a Windows OS.  I run OX 10.10.2 on my late 2012 iMac, and until I updated to Yosemite, I was running under Parallels.  I deleted Parallels as I wished to upgrade it, and have lost my Windows OS ability. 

  • ITunes Error-1 !!!

    When i restore my iphone 5 i have Error -1 How Can i fix it !!! IOS 6.1.4 If the problem Hardware How can I find an agent for the apple company in the Middle East - Jordan And warranty my phone is still working Any Help !

  • Different Credit control area in the AR invoice document

    Hi all, Our client has the line item display field turned on for the AR reconcilation account. When we run FBL3N for this account, we see a credit control area that is different from what is there on the customer line item in the invoice document. Wh