"Insert link to file"- where did this go?

Anonymous
2013-02-06T22:04:23+00:00

I'm an attorney, and I created a great litigation and trial-management system using only OneNote.  We put it to use in a large "mass action" case with over fifty plaintiffs and tens of thousands of exhibits.  The system allowed us to completely outmaneuver the plaintiffs at trial, and we were able to line up exhibits, deposition citations, and both direct and cross examination questions from a single program.   We all credit a great deal of our defense verdict to the system.

The key feature that let us build the various pages for trial quickly was the ability to drag and drop exhibit pdfs into the onenote pages as links to files.  Due to the sheer volume of exhibits, as well as the ease of using tables, links were far more effective than inserting the files directly, and certainly more effective than inserting printouts. 

With OneNote 2013, this mission-critical feature appears to be missing.  I can only insert the file, or insert a printout.  I don't want to do either- I want to insert a link.  I know that I can insert links using the manual "insert link" function, but that is slower and more error prone than the simplicity of the previous versions.  Am I missing a key option to trigger?  Or is this a missing feature from OneNote 2013?  If the latter, I suspect we will stick with 2010....

Microsoft 365 and Office | OneNote | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

98 answers

Sort by: Oldest
  1. Anonymous
    2013-11-07T10:53:59+00:00

    I have Onenote 14 32 bit with Windows 8.1

    After the upgrade from Windows 8 to Windows 8.1, first I had to face the Win+S problem, wasting hours of work.

    Now I found that the shortcut to a original PDF file doesn't work anymore.

    I am really disappointed that Microsoft hasn't any kind of workaround.

    Maybe someone is able to solve it writing a macro for Onetastic?

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2013-11-07T14:58:34+00:00

    Ok, I've done the macro for Onetastic plugin by myself.

    Procedure:

    1. Shift + right click on the file
    2. Choose Copy as Path
    3. Go to OneNote, Onetastic Link > Add Link (the macro)
    4. Paste it in the box with Ctrl+V

    It will be wonderful if:

    1. it will become possible to associate a keyboard shortcut to the Onetastic macro
    2. The author of Onetastic add the "paste from clipboard" function in the programming language

    The following is the macro code: Add Macro -> Import -> Paste the code -> Save

    <?xml version="1.0" encoding="utf-16"?>

    <Macro name="Add link" category="Link" description="" version="5">

    <ModifyVar name="strData" op="set" value="file:///" />

    <For first="Text">

    <That hasProp="selected" op="eq" value="true" />

    <IfProp name="hyperlink" op="not" value="">

    <ModifyVar name="strData" op="set">

    <Prompt type="message" values="">Cannot insert when cursor is next to or in a hyperlink. Add a space and try again.</Prompt>

    </ModifyVar>

    <Else>

    <IfProp name="value" op="eq" value="">

    <ModifyVar name="linktext" op="set">

    <Prompt type="text" initialValue="" values="">< CTRL+V ></Prompt>

    </ModifyVar>

    <IfVar name="linktext" op="contains" value=""">

    <ModifyVar name="linkn" op="set">

    <Function name="String_Length">

    <Param name="string" var="linktext" />

    </Function>

    </ModifyVar>

    <ModifyVar name="linkn" op="sub" value="2" />

    <ModifyVar name="linktext" op="set">

    <Function name="String_Substring">

    <Param name="string" var="linktext" />

    <Param name="offset" value="1" />

    <Param name="count" var="linkn" />

    </Function>

    </ModifyVar>

    </IfVar>

    <ModifyVar name="strData" op="add" var="linktext" />

    <ModifyProp name="value" op="set" var="strData" />

    <ModifyProp name="fontSize" op="set" value="8" />

    <ModifyProp name="hyperlink" op="set" var="strData" />

    </IfProp>

    <IsRootOp />

    </Else>

    </IfProp>

    </For>

    </Macro>

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2013-11-07T16:40:43+00:00

    Francesco, see this for how to set up a keyboard shortcut for a macro: http://omeratay.com/onetastic/?i=shortcuts-for-macros

    and if you submit this macro to Macroland, people can just download it from there.

    Thanks,

    Omer

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2013-11-08T08:29:57+00:00

    Hello Omer, 

    thank you for the hint and for your work in OneNote and Onetastic ;-)

    I've submitted the macro to Macroland, please note that it doesn't work with Chrome settled as std web browser, but it was successful with Firefox.

    Francesco

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2013-11-08T20:22:33+00:00

    I agree the original 2010 functionality should be restored where we see the path to the file in a <file:> tag.

    GTTG

    Was this answer helpful?

    0 comments No comments