Hyperlink (weblinks and UNC-links to files)

Think of links (Hyperlinks - active one's!) in Business partners to their web pages (not just the filed available with the need to 'copy and paste' to the browser - to me this seems like going to use a typewriter to write letters).
Think of links in Items or BOM's to documents and specifications to a already set up file structure on a documentation server. Nobody I know wants to have all these documents copied to a 'one level flat' file structure like B1 does. This leads to a completely unstructured and unusable File structure on the file server. It is just nonsense to believe that the access to these files always happens through B1 and the structure behind is a 'don't care'.
I just want to store the link to the web adress or document (UNC path or with mapped drive) without copying the document to a second place and linking/opening the document from its original place.
Please add this in as soon as possible. I assume its a small change to add a new UDF version based on the current one that copies the file. The rest can stay the same as with the current UDF for links.
Franz

This is must-have feature for any application.
It's hard to imagine that we cannot create any hyperlink in an ERP system. Can't believe this important feature is still missing after about almost three years.

Similar Messages

  • Script to search and relink linked image files that were moved?

    Good afternoon
    My indesign product catalog has links with a lot of different folders around in my hard disk, not a single folder. And to keep my catalog up to date I must package it.
    When I move my linked files in my computer because I change the folder structure or do some cleaning, my indd loses track of its linked files. Currently I need to relink one by one.
    Therefore I would like to find a script which would scan the hard disk with the all broken links in mind to detect their new location and relink. Yes I am a lazy person.
    Thanks for any clue,

    Thanks so much! I will try soonest.
    How does your script react in the unlikely case of duplicates?
    Date: Thu, 18 Jun 2009 12:43:47 -0600
    From: [email protected]
    To: [email protected]
    Subject: Script to search and relink linked image files that were moved?
    At least your honest about your laziness.... Here's your reward:
    Just a hint, don't select root of your volume, it will loop through every folder in existence, but key to this script is, if you know the general location, select into that folder hierarchy and the script will test for a relative path, otherwise, come back in a few days, and it will be finished.
    ~mike
    var processed = 0
    var skipped = 0
    var updated = 0
    if (app.documents.length > 0){
        if(app.activeDocument.links.length > 0){
            var mydoc = app.activeDocument;
            var mylinks = mydoc.links;
            var myRoot = Folder.selectDialog("Choose the volume or server where assets are located", undefined, false);
            main();
    else
    { alert("No Links present")
    else{alert("No Documents Open")
    function main(){
        if(myRoot != null){
            for(var i = 0; i < mylinks.length ; i++){
                if(mylinks.item(i).status == LinkStatus.linkMissing){
                        var linkdata= mylinks.item(i).filePath;
                        var my_result = linkRepair(linkdata);
                            if (my_result == false){
                                var filetype = "." + mylinks.item(i).linkType;
                                var mysearch =   search(linkdata, filetype);
                                    if(mysearch != undefined){
    var myswitch = confirm(mylinks.item(i).name + " has been found in a different location, Relink and Update?", "Relinker")
                                            if(myswitch){
                                                mylinks.item(i).relink(File(mysearch));
                                                mylinks.item(i).update();
                                else{
                                    alert("" + mylinks.item(i).name " was not found\nFolders processed: "processed + "\nFiles skipped: "+ skipped)
                            else{ alert( my_result + " has been found");
                                mylinks.item(i).relink(File(my_result));
    function linkRepair(linkdata){
    var mypath = linkdata.split(":")
            my_status = analyzePath(mypath)
            if(my_status == true){alert("UPDATED");
                    updated++       
        return my_status
    function analyzePath(mypath){
    var num = mypath.length ;
    for(var i = 0; i < num-1; i++){
        mypath.shift()
        var newpath = pathRebuild(mypath)
        newpath = (myRoot + newpath)
            if(File(newpath).exists){
                return newpath
        return false
    function pathRebuild(pathArray){
    var solidPath = ""
        for(var i = 0; i < pathArray.length ; i++){
            solidPath +=  "/" + pathArray+ ;
        return solidPath;
    function search(linkdata, filetype){
        var mypath = linkdata.split(":")
        var mylink = mypath.pop();
        var OK = confirm("Relative Path does not exist, search folder hiearchy for file?", true, "File Scanner")
        if(OK){
    var myscanresult = getfiles(mylink, myRoot)
    return myscanresult
    function getfiles(mylink, myBase){
    myBase = Folder(myBase);
    var files = myBase.getFiles("*")
    for(var i = 0; i < files.length; i++){
    try{
    var foldertest = files+.getFiles();
    processed++
    var myfile =     File(files+ + "/" + mylink)
        if(myfile.exists == true){
            return myfile
            break;
        else{
        var myscan = getfiles(mylink, Folder(files+))    
            if(myscan != undefined){
            return myscan
            break;
    catch(myerror){
        skipped++
    >

  • Sun Studio 11 do not parse make output and create link to file?

    Hi,
    Running Sun Studio 11 and can only get file links in the output window when I run a make command that uses CC -g (debug option). We have integrated other tools into our make system (flexlint, cppUnit..) and even though we make sure that the syntax is exactly the same as the compiler output and matches regular expression under tools->options->building->make settings->error expression, it doesn't work. Why do you have to debug compile to get sun studio to create a file link in the output window? Doesn't sun studio just parse the text from the make command?
    example of flexlint output for which no link is created:
    "/vobs/project/oss/fm/fm4/fm-fmalib/fmbal/fmaaulib/src/FMA_List.cc", line 440: Error 84: sizeof object is zero or object is undefined'�
    example of make debug output for which we do get a link:
    "/vobs/project/oss/fm/fm4/fm-fmalib/fmbal/SunOS5.10/inc/FMA_alarm_record.hh", line 1310: Warning (Anachronism):Info "static" is not allowed and is being ignored.
    Regards,
    Ola

    I'd second Maxim's suggestion: try NetBeans 5.5 with C/C++ Development Pack. The official release of NetBeans C/C++ Development Pack 5.5 has happened a few days ago. You can download it from
    http://www.netbeans.info/downloads/all.php?b_id=2284
    Some of the changes between the beta3 build and FCS are:
    * Significant performance improvements in the code parser resulting in faster results in the Class View and Code Completion
    * Programs now run in an external terminal (system dependent) by default. This allows better input control
    * Significant performance improvement in the debugging module
    * Significant functionality improvement in the debugging module
    * New project type "C/C++ Project From Existing Code" which simplifies creating a project from existing code
    * Macro support in code completion
    * Hyperlink navigation for macro usages and #include directives
    * Reformat code
    * Code folding
    * Code completion
    All these features will appear in next Sun Studio release, so you can
    consider NetBeans C/C++ Development Pack 5.5 as a preview of new
    Sun Studio IDE.

  • Link software install 2 error codes 1706 and blackberry link .msi file cant be found

    seems impossible to download and install link,
    any ideas?

    You are not the only one having problems installing BlackBerry Link. See this thread: http://supportforums.blackberry.com/t5/BlackBerry-Link/Cannot-install-BlackBerry-Link-on-a-Windows-7....

  • Unable to install Captivate 8 on my Macbook Pro. Akamai Download Mgr won't install and direct link to file doesn't work. Help!

    I get an error message when trying to install the Akamai Download Manager Installer.  When I click on the link to download the files directly, it does nothing.  I've tried on Chrome, FF, and Safari.  I'm running OS 10.9.3.  This is for my laptop at home; I've had no trouble installing it at work on an iMac.

    clear your adobe.com cookies if you're getting a header error here, http://www.adobe.com/cfusion/tdrc/index.cfm?product=captivate

  • "Placing" linked PDF File in Illustrator for Markup Edits?

    When I highlight text in a PDF file that is linked to an Illustrator file (PDF is "Placed" in the Illustrator file as a linked object), text highlights in the PDF file do not show up in Illustrator when I update the link.  Does anybody know why, or is there some setting or workaround to force the PDF markups to show up in Illustrator?
    Reason for Question
    I often use Illustrator as a PDF editor because it is much more flexible than Acrobat's clunky editing tools.  There are some significant problems however.  If you open a PDF page in Illustrator, you lose some stuff like paragraph formatting, which Illustrator wants to left justify (same problem when opening an AutoCAD file in Illustrator).  You can also have trouble with missing fonts like Helvetica, which isn't a default system font because it is licensed and expensive.  Illustrator will swap the missing font out with a substitute so it can edit the text.  (Acrobat will do the same thing if you try to edit a font that isn't loaded in your system).
    A workaround to maintain exact registration if I just want to mark up a PDF file (rather than changing the text) is to "Place" the PDF file in Illustrator.  When Placed, the file behaves like an object the isn't editable in Illustrator (you can edit a Placed object from Illustrator, but Illustrator will use the authoring application to do the edits, in this case, Acrobat).  I you are interested doing the same thing,... when I use Illustrator to mark up another file like PSD, JPG or PDF, I initially open the file in Illustrator to capture the dimensions, and then delete everything, and then "Place" the file back into Illustrator.  You can optionally link or embed the Placed object.  After Placing, I use the transform tool to move the Placed Object's upper left corner to 0,0 (XY Coordinates) to acquire registration, lock the layer, and do my markups on separate layers.
    This procedure is a bit clunky and requires multiple construction files but Illustrator's vector tools are much better than the most of the markup tools (but not all) in Photoshop or Acrobat.  A Photoshop file will link to Illustrator, and you can export it back to Photoshop, but the Illustrator construction file will not be "linked" into Photoshop, so if you need to make changes with Illustrator you have a couple of options.  You can open the Illustrator smart object from Photoshop (Photoshop will launch Illustrator to do the edits), or you can delete the smart object and work on the Illustrator construction file directly and re-import.
    Since you can't select the text of a Placed PDF file object in Illustrator to highlight text, I'd like to do some of the text highlighting in the linked Acrobat file upstream of Illustrator.  I should be able to bounce back and forth with both files open, the Illustrator construction file and the linked PDF file.  Problem is that when I add a highlight to the PDF file, it does not show up in the Illustrator placed object that is linked to the PDF file.
    So back to my original question.  Does anybody know why PDF text highlights do not show up in Illustrator when the PDF file is placed as an object in Illustrator?  Is there a workaround to force the PDF text highlights to display in Illustrator?
    FYI, I working on a business presentation and need to mark up a few pages of IRS publication 463, which is a 58 page PDF document with a bunch of "destination" links (10 to 20 links per page).  I can extract a page, do my markup edits, and then "replace" the page back into the original Acrobat file and all the links and bookmarks will still work, but registration is critical.
    I'm using CS6
    Thanks in advance for your insight.

    Mylenium, Thank you for your on-point explanation of why the markups don't import into Illustrator.  Based on your input, I did some digging and discovered:
    I can export the Acrobat "Comments" (text highlights, but not markups?) to a FDF file
    http://help.adobe.com/en_US/acrobat/pro/using/WS40A4853E-0D48-46a6-8AB6-6B9A27A22D83.html
    and then optionally re-import them to another PDF, including a blank document (with the same dimensions to maintain registration) or the final output file.  I can then open the PDF (that contains the comments only) using Photoshop and save as a PSD file.  Photoshop captures the text highlight color graphic without the white background or text so I am able to achieve transparency.  I can then "Place" the Photoshop file as an object on its own layer in the Illustrator construction file as either an embed object or a linked object, but I tend to link for a number of workflow reasons.
    Quite clunky, but it seems to maintain exact registration (although for some reason, whenever I place an object in either Illustrator or Photoshop I need to move (transform) the object corner to 0,0 because it is typically off by a pixel or 2).  Not sure if there is a way to also export PDF "Markups", but my objective was to use Acrobat's highlighting tools combined with Illustrator's vector graphic tools for markups, so even if I can only export the Acrobat text highlights and not the "Markups", I can still achieve my objective.
    From a work flow perspective, I may optionally choose to use the text highlights only as a reference in the Illustrator construction file and turn them off when saving back to PDF.  I would then import the text highlights (FDF file) into the final PDF so they are actual Acrobat highlights rather than raster objects, but I do have the option.
    I have also noted that I can print an Acrobat file to PDF to capture the text highlights, but that method introduces problems with registration and transparency (the white paper background).  I'll often print my final output to PDF rather than saving to achieve a small flat file that will render consistently on different computers, but in this case registration is important so it is better to save to PDF and live with the larger files size.
    Why all the fuss?  Acrobat is good at highlighting text and Illustrator is good at drawing stuff like curvy paths with variable strokes.  Illustrator also has layers and stacking order control.  (Acrobat has clunky wannabe layers that are good for limited stuff like multiple versions, but not much help with graphic composition or stacking order).  I need workflows that can merge tools from multiple programs (Acrobat, Photoshop, Illustrator, Autocad, and Solidworks).  I could do my vector markups in Illustrator, then save to PDF and do the highlights in the final Acrobat file, but if I need to change the vector graphics later I would lose the highlights.  Doing the highlights in a separate PDF file and then exporting to a FDF file lets me make changes in Illustrator without having to recreate the highlights from scratch.
    Thank you for your assistance.  If you have any additional suggestions I am always striving to improve my workflows.  btw, I've experimented with some of the 3rd party PDF editor's, but not the expensive ones (less than a few hundred dollars).  Most of them do a few things better than Acrobat, but they all have their shortcomings and I'm leery of investing my time in applications that might be obsolete in few years.  Perhaps this discussion is better suited to the Acrobat Forum, but I do a lot of PDF editing with Illustrator despite its limitations.

  • FM9/Win - Changing linked image file?

    I can do what I want to do in InDesign, QuarkXpress, and PageMaker, but for some reason this functionality appears to be absent in FrameMaker, which is utterly dain bramaged.
    I have a placed image in multiple places in a FrameMaker document. The image is placed by reference, not embedded. I now want to link to a different graphic (annual updates).
    Re-placing the image a zillion times is not an option, as the sizing and position is already set. I just want to change what FrameMaker is linking to.
    For the life of me, I cannot find where or even if, I can do this.
    The inelegant solution would be to simply move or rename the currently-linked-to file on the hard drive, and rename the new graphic to the same name as the old one. I do not like that option at all, as there are some instances in other documents that I still wish to link to the old image file.
    Is FrameMaker's link handling really this clumsy and archaic? In the other applications I refer to above, I would either go to a links palette and change the destination or right-click on an image and relink it. In FrameMaker, the "Object Properties" dialog appears to only report the location of the referenced file, not allow you to change it.
    What gives?

    Dan,
    To my knowledge, there is nothing in FrameMaker like there is in InDesign that allows you to relink an image directly, or even indirectly via a link list. I also have looked and not found anything. There is a link menu item somewhere but I have never figured out what it does.
    There is a plugin by Bruce Foster that is used to archive a book or document and its linked image files and text insets. When you run it, the plugin COPIES the book file and ALL the files associated with it into another folder that you specify, and then readjusts all the links among these files to point to the copied files. It puts all graphics files into one subfolder and all text insets into another. So, once you get your book where you want it, with no future changes, run the archive, and then use the files and book in the archive folder to print or do whatever you need to do in the future.
    The downside is that you have two sets of files to manage, but if the archived set is rarely or never edited or updated, then all is well.

  • I have a document made up of separate PDF files which reside in a folder and are linked to each other via hyperlinks. Each pdf file is set to open with bookmarks displayed, however if I link from one PDF file to another and use the "Previous View" button

    I have a document made up of separate PDF files which reside in a folder and are linked to each other via hyperlinks. Each pdf file is set to open with bookmarks displayed, however if I link from one PDF file to another and use the "Previous View" button to navigate back to my starting point the bookmarks are replaced by "page thumbnails". Is there anyway to stop this from happening?

    Hi Pusman,
    While setting up the links, if you choose to open the file in a new window then you won't face this issue, then you can simply switch to the previous file and bookmark view will remain as it is.
    Does that helps with your query?
    Regards,
    Rahul

  • Link to file hyperlinks

    How to create an InDesign document with link to file hyperlinks in InDesign to PDF and still be able to use via a USB flash drive?

    Hi Pusman,
    While setting up the links, if you choose to open the file in a new window then you won't face this issue, then you can simply switch to the previous file and bookmark view will remain as it is.
    Does that helps with your query?
    Regards,
    Rahul

  • Linking KN9 files together using hyperlinks, fades to black

    When linking KN9 files together using hyperlinks, I press play the document being linked to fades in, then out to a black screen and after a couple of seconds returns to the files open files on my desktop.
    I've checked all the setting and it even does it on 2 empty pages I tested with no transitions or document settings.
    If I open both document before pressing play it's OK but because I have several large files being linked together I dont want to have to open all the files before presenting to clients etc.
    Thanks!

    The History
    I reported the hyperlinking problem over a year ago when I updated Keynote from version 5.0.5 to version 5.1. According to the Apple tech that I wroked with at that time the Apple engineers had reproduced the issue and had put it on the fix list (Case 235638615). I then worked with Apple in December 2011 to test a version that supposedly fixed the problem, but did not, so Apple sent me a data logging monitor program which I ran and sent back. The Apple tech asked me to be patient as it might take awhile for the Apple engineers to fix the issue. When version 5.2 came out I reran my testing suite of presentations and found that the hyperlinking issue had still not been fixed. I have tried to contact Apple about my case since July 26th - my emails to the Apple tech with whom I worked back in December bounce back as undeliverable and he does not answer his phone (I have left messages with no replies) plus when I try to use Apple support to follow up on the case, all I get is a message to contact my Apple tech (Doh!). If Apple techs or Apple engineers watch the forums I hope they look into unresolved Case 235638615.
    The Workaround
    Hyperlinking worked fine with 5.0.5 - the .key files would load and display and did not have to be preloaded prior to runing the linked presentations. Version 5.1 through the current version 5.2 require all of the linked presentations to be preloaded prior to running them. Prior to the current version of Lion, I was able to manually run version 5.0.5 to successfully run my system of 32 presentations. The only downsides were that I could not use any transitions or animations introduced with version 5.1 and I had to force quit Keynote 5.0.5. However, when I tried that solution this month, it would not work. So I created an Automator app to load the appropriate subset of presentations for each day of the five day class and used version 5.2. Everything went okay with preloaded presentations.
    I love using Keynote and do not want to go back to PowerPoint, so I hope Apple fixes this issue. I think we have been more than patient with the Apple engineers.

  • I can no longer click on file and send link to why

    I can no longer click on file and send link to mail program! Have gone to applications and chosen g mail and would not work. Changed to win live mail and it will not work.
    help..........

    Sorry, I forgot to mention that this problem occurs when I'm using Facebook in a browser.

  • Need to link 2 files, one with a numeric firld and on with an alpha numeric

    I need to link 2 files in my report by employee number. In the employee file it is an 8 character Numeric field like 1505087. In the GL File, it is an 8 character field like '01505087' I have done a TONUMBER on the employee number.  Where do I link these files? I have done it in my data selection, but it now takes hours to run the report. The report does work. Any suggestions for linking the files together?
    Thanks,
    Rick

    Hi Rick,
    Linking numeric and non numeric fields at report level takes long time because for each detail it has to process i.e convert your non numeric field to numeric and then link.
    To avoice this, try to use Add command for your non numerica table and convert the field to numeric in free hand SQL itself.
    Eg: Select fields..convert(non numeric to numeric) from table   // my convert syntex is not correct becasue i don't know what database you are using
    Now you get both tables with numeric fields and you can link both.  It will not take much time to retive records.
    Thanks,
    Sastry

  • I have a word document that I have put hyperlinks in and turned into a pdf.  When I email and receiver opens in iPad the document is blank.  When I do a file save as pdf the document appears and the hyperlinks work but the document has much of the content

    I have a word document that I have put hyperlinks in and turned into a pdf.  When I email and receiver opens in iPad the document is blank.  When I do a file save as pdf the document appears and the hyperlinks work but the document has much of the content turned into symbols.  What is going wrong?

    You select the printer properties and set the appropriate page size (I think there is a place to set it in PDF Maker too, but not sure). In the printer, this is equivalent to putting the proper paper in the printer.

  • Hello, I am attempting to install Camera raw from a .zip file provided via a link provided by adobe for a Nikon D810. The .zip file unzips fine and I moved the files to the recommended folder. But the operation is failing

    I am attempting to install Camera raw from a .zip file provided via a link provided by adobe for a Nikon D810. The .zip file unzips fine and I moved the files to the recommended folder. But the operation is failing

    Can you describe what “the operation is failing” means?  What is happening and how is it different than what you expect?
    Also, what product are you trying to update manually, and do you have a link to the page of instructions, so we know what your attempting to do?

  • We are currently looking for a way to link images to a design file within programs like InDesign and Illustrator using an HTML link instead of a local file.  We are hosting our images in SharePoint and need the design file to retain it's links, no matter

    We are currently looking for a way to link images to a design file within programs like InDesign and Illustrator using an HTML link instead of a local file.  We are hosting our images in SharePoint and need the design file to retain it's links, no matter who on our network opens the design file.

    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

Maybe you are looking for

  • My macbook pro won't boot, I just get the apple logo but no progression.

    P.S. (pre script) I'm in the UK I think my macbook's Hard-drive is capooot, here's my symptoms, windows takes 10-15 minutes to boot and when it does every program I open becomes non responsive every 20 seconds or so, so it's unusable. I've tried play

  • Even after resets get "The backup disk image "/Volumes/FreeAgent GoFlex Drive/MacBeth (2) 1.sparsebundle" could not be created (error 22)."

    HELP!  "The backup disk image “/Volumes/FreeAgent GoFlex Drive/MacBeth (2) 1.sparsebundle” could not be created (error 22)." TC estimates over 750GB for full backup. Late 2010 MBA is connected wirelessly to 802.11n (1st gen) TC that is connected via

  • System freeze at midnight

    Hi there, last night, at exactly midnight the whole system froze up, nothing worked anymore. I had to do a hard reset. I assume that it is related to systemd and its journal since it usually starts to get active at 12, doing whatever, causing lots of

  • Nokia N80 crashing!

    My nokia N80 keeps crashing when i send a text message, my network is vodafone if that makes any difference. if any one knows whats going on or knows how i can resolve this issue please let me know. Dan .:: DAN ::.

  • Adobe reader 9 flub

    I installed adobe reader 9.0. it said it uninstalled a previous version. immediately after install, my computer would not access any program including the internet! Zone Alarm wouldn't open. Add or Remove Programs wouldn't open. Several reboots did n