Use links to open folders

Links are valuable tools for using one document to open another.  But, sometimes it is more useful to open a folder containing what I am looking for - especially when the content changes often.  Unfortunately, Acrobat cannot perform this function directly (it should).  Instead I use a Word document containing hyperlinks to the folder and then covert that to a PDF file.  It works, but I get an irritating message about macro security that must be answered for each use.  I don't see how to use the Trust Manager to change this.  Is there any other way around this problem or another way to accomplish the goal?

I am using the link tool to open a file. The error message -

Similar Messages

  • How can I use links to open music files (aiff)?

    I want to create a pdf file with links to a large number of music files (too many to embed in the pdf). When I create a link in the normal way Adobe Reader gives me a message that it cannot open the files. How can I get round this?

    I am using the link tool to open a file. The error message -

  • In FF 34.0.5 I use to be able to click on a link within an e-mail and the link would open in a new tab; it now opens in the same tab; how can i change it back?

    I'm using FF 34.0.5 (I like it). I use to be able to right click on a link, within an e-mail, and the link would open in a new tab. Now when I click on the link it opens in the same tab replacing my e-mail.
    Example - a friend sends me an e-mail containing a link to a web site he thinks I'd like. I click on the link and go to the web site and then go back to the e-mail tab and reply to him. Now, when clicking that link, my e-mail disappears and is replaced by the new site.
    How can I fix this? When this happened once before I was told to change the 'value' for a specific 'preference name' through the about:config page.
    Can anyone help jog my memory?
    Thanks!

    Is this about clicking a link in an external program?
    You can check this pref on the about:config page for external links.
    * browser.link.open_newwindow.override.external (-1)
    If this pref has the default value -1 then browser.link.open_newwindow is used.
    * http://kb.mozillazine.org/browser.link.open_newwindow
    *1: current tab; 2:new window; 3:new tab;
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config

  • How do I stop Firefox from opening a new tab when I click a link or navigation button (such as "home") instead of redirecting using the currently open tab?

    Any time I click on a link within a page, such as the "home" link in Facebook, or the various links on the Mozilla page that I needed to follow to get to this screen, Firefox opens a new tab instead of redirecting using the tab I'm on. Also, Firefox doesn't go to the new tab, it just opens it. So if I want to actually go to the page I've just clicked on, I have to then also find and click on the new tab that just opened.

    Hello,
    In safe mode link still open in new tabs?
    *[http://mzl.la/MwuO4X Firefox in safe mode]
    Go to '''about:config''' and search for:
    *'''browser.tabs.loadInBackground''' change its value to '''false'''.
    If in safe mode the links still open in new tabs try go to '''about:config''' and search for:
    *'''browser.link.open_newwindow''' change its value to '''3'''.
    *[http://kb.mozillazine.org/About:config about:config]

  • How can I use Automator to open and save Word docs with links?

    Hi-
    I'm having trouble building a Workflow to open and save Word docs with links.
    My Workflow so far:
    1. Get Finder items
    2. Copy Finder items (to new folder)
    3. Rename selected items
    4. Open selected items (Word docs)
    Three problems occur.
    The first is a Word 2004 problem -- I can't get the warning "This document has links in it; do you want to open it with/without updating the links" to go away (Unilke the Macro warning toggle capability, there is nothing in the Preferences for Word 2004 that addresses the links warning, as far as I can tell; any insight you can shed on this would be terrific.)
    The second problem happens with Automator: if I manually accept the update of the first document's links, Automator opens that document but then halts completely, even though I've instructed it to open multiple documents.
    The third problem I have is that there's no Finder action in Automator that allows me to save the document that's now open (as far as I can see).
    Any suggestions for how to fix? If I can get this to work, and scheduled in iCal, it will be an unbelievable time saver.
    Thanks,
    Jeremy
    PowerPC G5   Mac OS X (10.4.6)  

    Hi there Jeremy,
    to do this you are going to have to add in some Run AppleScript steps...
    These will rely on GUI Scripting. So first you need to activate GUI Scripting.
    Now we need to add in a Run AppleScript action to the end of your workflow...
    This will replace your current number 4 in the workflow (Open Selected...)
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">on run {input, parameters}
    set allItems to every item of input
    repeat with currItem in allItems
    tell application "TextWrangler"
    open currItem
    end tell
    activate application "TextWrangler"
    tell application "System Events"
    tell process "TextWrangler"
    delay 2
    --when the Word document is opened I have told it to press okay !
    --I don't know what key you want it to press in the dialog box
    keystroke return
    delay 2
    --save the doc
    keystroke "s" using command down
    delay 5
    --close the doc
    keystroke "w" using command down
    end tell
    end tell
    end repeat
    return input
    end run</pre>
    The above script should open each Word Document, press a button in the dialog box then do a save and then close the doc...then loop through the rest of them.
    You need to replace the name Text Wrangler with Microsoft Word (or whatever it is called!), I don't have it on my Mac.
    You will have to let me know what button needs pressing in the first dialog, if it isn't the 'highlighted ' one then we will have to amend the script...
    regards
    Ric

  • How to use JavaScript to Open a link automatically

    Is there a method (using JavaScript) to allow a user clicked link to open the link through a “intermediary” page?
    For example, say I have a web page with a embedded Flash file that contains links to several different (outside) web pages. The behavior I want is that the user clicks a link (within the Flash file), a HTML window opens (over the 1st HTML/Flash window) with the new content, leaving the original Flash/HTML window displayed in the background. The user reads the new content. The user can then close the newer window and be back at the displayed HTML/Flash file.
    The twist is that the link embedded in the referring Flash/HTML file goes to a “intermediary page”. Call that the “collector” page. I control that page. On that page I have collected (in a list) all the actual outside URLs (I do this so that I can easily change the URLs using HTML rather than having to edit the Flash file.) The Flash file contains essentially the same URL for each outside location (plus a variable unique to a specific URL).
    The user should not ever actually see this intermediary/collector page. Instead, they click the link, a variable is passed from the referring page to the collector page and fires the corresponding link automatically (replacing the content in the newly created window). Since the link fires automatically the content in the new window (initially created by the collector page) changes to the destination content.
    Is this possible?
    What JavaScript functions are used?
    How are the referring links constructed in the Flash so the variable is passed to the collector page?
    How does the “collector” page auto open the actual content?
    If anyone can point me to descriptions on how this might be done I’d certainly appreciate it.
    TPK

    >is there a way i can call javascript without security checking?
    It wouldn't be security if you could just bypass it. Did you read all
    the security notes? You might be able to do something with trusted
    functions, but I'm not sure how that would integrate with a plug-in.
    Aandi Inston

  • Clicking on a link in Mac Mail Firefox does not open in front of Mail--it used too. The link does open but I have to click on the Firefox icon in the Tray to bring it to full screen. Can you please help

    clicking on a link in Mac Mail Firefox does not open in front of Mail--it used too. The link does open but I have toclick on the Firefox icon in the Tray to bring it to full screen. Can you please help.

    Thanks Jason, I had the same problem and did exactly the steps above. Problem solved! You rock! :)

  • I created a pdf form and then iported it to Forms Central for distribute. It is now loaded to my website and setup so a person clicks on the link to open the form. At this point they then have to go to upper right to open form using a different view. I wo

    I created a pdf form and then imported it to Forms Central for distribute. It is now loaded to my website and setup so a person clicks on the link to open the form. At this point they then have to go to upper right to open form using a different view. I would like the form to open directly in Adobe Reader form to make it easier to enter information. Thanks, Ike

    If you created it in Forms Central, you have to edit it there. I believe Forms Central is similar to LiveCycle Designer in that the form created is no longer able to be edited in Acrobat. I might be wrong, but that is my understanding. You add the submit button in Forms Central. Within Acrobat, you should be able to go to the forms menu and Manage Data to save the data to an Excel file. Others better with forms should be by to clarify things, but this should get you started. In the future you might find it better to post a forms question in the forms discussions.

  • HYPERLINKS  is it possible to use "_blank" to open PDF links in new window?

    When I export my PDF from Numbers '08, is it possible to have my Hyperlinks open in a new window? Possibly using the "_blank" HTML function inside the URL dialog? Right now the links just replace the PDF.
    *I've tried ex)*
    http://www.website.com target="_blank"
    http://www.website.com, target="_blank"
    Those don't seem to work. Any ideas? Is this fixed in '09?
    Thanks
    PS - seems there should be a checkbox saying "open hyperlink in new window". Just makes sense.

    Yes, true. But there is a way (in HTML) to force a link to open in a new window by including the "target=_blank" command. I'm wondering if Apple (or anyone else) has found a way to embed this into the "Hyperlink" property within Numbers? If not, it would be nice if future versions had a check box to include this option with a link in the Hyperlink property inspector.
    Thanks for the feedback!
    Message was edited by: flashburn3030

  • I just downloaded Google Chrome and use both Google Chrome and Firefox as my browser. However, whenever I click on an email link, it opens up Chrome and I want it to open Firefox. How do I fix this?

    I just downloaded Google Chrome and use both Google Chrome and Firefox as my browsers. However, whenever I click on an email link, it opens up Chrome and I want it to open Firefox. How do I fix this?

    Go into FF Preferences & set it to be your default browser.  This way when you click on an email link in Chrome, FF will open.

  • I'm using tweetdeck to open links but after i update to 14.0.1 version, the window open or pop out every single time when I open the links, how can i do?

    I'm using tweetdeck to open links , I can click on tons of link I want to open without the firefox window pop up but after i update to 14.0.1 version, the window open or pop out every single time when I open the link, how can I just open the link but not the window?

    yesssssss , EXACTLY !!!! before the update ,whenever I open an external link, Tweetdeck used to stay in front, and now Firefox moves in front of Tweetdeck<<<< EXACTLY !!!

  • Safari 3.0: How do I force all links to open in tabs without using cmd?

    In a number of other browsers it's easy to set all links to open in tabs. I don't want any separate windows to open and I don't want to have to use the keyboard to force every single link into a tab.
    How do I get Safari to do strictly tabbed browsing?
    Thanks,
    iMactel

    Before posting the very same question, I searched first (like a good boy should) and found your post....which addressed the exact question I have.
    I'm in the process (of hopefully) of transitioning from years of using Firefox to Safari. The reason: I'm amazed at how quickly web pages open in Safari compared to Firefox.
    Anyway, after installing a few Safari add-ons, I'm feeling pretty good about the transion -- except for the fact that I NEVER want Safari to open anything in a separate window unless I specifically ask it to. Evidently, it's simply not designed to do this...

  • Use Firefox to open email links on GMail

    Hi,
    I am running Firefox on Windows 7.
    I want to open mailto: links from different applications in Firefox.
    I have followed the instructions on the support page :
    https://support.mozilla.org/en-US/kb/change-program-used-open-email-links
    If I am on a web page, and I click on a mailto:xxxx link Gmail opens: great !
    But if I am in another application (like an ERP application) and I click on a mailto:xxxx link then Outlook opens.
    When I go to Default Programs => Associate a file type or a protocol to a program, for the MAILTO protocol there is only Outlook defined and I can not find a way to define another program for that protocol: any idea ?

    Sorry, I don't need this addon: it doesn't solve my problem.
    I can follow mailto links within Firefox, I want mailto links from an application to lauch Firefox.
    At the moment, I have only Outlook as a possible choice in the window: Default Programs => Associate a file type or a protocol !
    I have tried changing the registry settings with info gathered from several web page ... with no results.
    Any ideas ?

  • Hey, im really sick of this, how can i open folders but in the same windows, when i open a folder which is inside of another one, it just open me a new window, its so annoying, could anyone tell me what to do? im using mac os 10.7.2

    hey, im really sick of this, how can i open folders but in the same windows, when i open a folder which is inside of another one, it just open me a new window, its so annoying, could anyone tell me what to do? im using mac os 10.7.2

    Finder > Preferences > General > Always open folders in a new window: uncheck

  • I use Earthlink mailbox, and I want my email links to open with Firefox, but they open with Internet Explorer; how to fix?

    I am using Windows XP 2002 operating system; Earthlink mailbox program for email with AT&T Broadband.
    I want to have Firefox as my default browser, but my email links open with Internet Explorer. I have followed the Firefox help page to set Firefox as my browser, but the problem remains.
    Do you know how to fix this? Is it a problem with Earthlink?

    I have Microsoft Outlook also with Firefox and can open just about every link, url, company page, etc via the email links. First, make sure you have noted the email as NOT JUNK so that the links are activated by Outlook. Second, Firefox needs to your default browser for the links to open in Firefox rather than IE. There are some links from Microsoft that may ignore the default and open in IE but not all anymore. I have a Sony laptop which ignores the default browser and opens all of its support information from its VAIO software loaded on the computer in IE. Besides that though, over 95% of my items will open in my default brwser selection, which is currently Firefox.
    Go to this link to make sure Firefox is your default browser.
    http://support.mozilla.com/en-US/kb/How+to+make+Firefox+the+default+browser?s=Make+Firefox+the+default+browser+&as=s
    Or this link to make any browswer of your choice the default.
    http://www.chami.com/tips/internet/043099I.html
    Hope this helps.

Maybe you are looking for

  • Vendor Payment Due Date Report

    Is there any standard T.code for Payment due dates as per Vendor ? Please provide solution for this Thanks & regards

  • How to delete multiple mailbox and User's in Enterprise Office 365

    I'm just finishing a trial and I want to make sure all the data is gone from the system.

  • The web application at [URL] could not be found.

    Hi, I am trying to run a simple code like finding all the users in the SharePoint site. But I am seeing this error constantly no matter what I do!! The Web application at [https://xxxxxx] could not be found. Verify that you have typed the URL correct

  • Error in Synchronous mode of data flow

    Dear All, I am new to PI. I am using a Synchronous mode while sending a message from ECC system to JDBC Receiver. After processing the message i am getting a error in response message. Are there any naming conventions to be followed while creating da

  • The allow button disappears

    When a new tab opens the allow button disappears underneath the toolbar and the page will not open == URL of affected sites == http://