topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 19, 2024, 11:00 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Right click Hyper link in email text and have option to send shortcut to desktop  (Read 7752 times)

questorfla

  • Supporting Member
  • Joined in 2012
  • **
  • Posts: 570
  • Fighting Slime all the Time
    • View Profile
    • Donate to Member
Outlook 11 windows 8.1 if it matters.
This sounded so easy i told my wife she should be able to do it. BUT I would gladly do it for her.

Then, I tried.  :-[    I found that  there seems to be a total disconnect in the right click context menu when using Outlook.  Nothing I could find and no research I could do seemed to touch anywhere near the problem.  Yet this seems like a useful tool.  If you have the email with the note saying "Click for Free Daily What-zit" link in an email why can't you just right click and choose to send it to your desktop as a shortcut named "Click Here for Free Daily What-Zit?"  No big deal, just send the shortcut to the desktop from the email

Sure, you can go through all the copy hyper-link, create shortcut on desktop , paste in the hyper link and STILL have to go back and copy the name "Free Daily What-Zit" as well for the shortcut and maybe 5 minutes later you get what should have been a single right click and done job.

Hated to admit defeat to the wife but I am hoping someone here might have the answer before i face her in the am :)
PS:  Tried quicksteps too but they were worthless.
Help! :tellme:

Masonjar13

  • Participant
  • Joined in 2014
  • *
  • Posts: 35
    • View Profile
    • Read more about this member.
    • Donate to Member
Outlook has a COM interface, so it would be possible to some extent, but as for adding a legitimate context item, I couldn't tell you. I could make an alternative though.. If you can right-click > copy link to clipboard (I don't use Outlook so not sure if that's in there), you could use the following, written in AHK:
#c::IniWrite,% clipboard,% a_desktop "\" a_now ".url",InternetShortcut,URL ; WinKey + c
a_now would be better suited to be a regex statement to grab the name from the url, but I don't know regex. You could also prompt the user for a name or something.
Tox ID: 065459DFC23CA5D238F2334168150B8727B1D0826C80DD2F49F35B612B401A0837F89E7C9C86

MilesAhead

  • Supporting Member
  • Joined in 2009
  • **
  • Posts: 7,736
    • View Profile
    • Donate to Member
My guess is they don't bother to add another interface since you can open in a new window or tab, then drag from the addressbar to desktop.  I think there was a Firefox AddOn called DeskCuts or something.

I'm not sure how old it is or if it still works:
https://addons.mozil...refox/addon/deskcut/

lifeweaver

  • Member
  • Joined in 2014
  • **
  • Posts: 22
    • View Profile
    • Donate to Member
You might try this script, it's written in Autohotkey so you may need to look at a tutorial in their site but should work.

copyText()
{
  oldClip := clipboard
  newClip :=
  clipboard :=
  Send, {ctrl down}
  Sleep, 10
  Send, {c down}
  Sleep, 10
  Send, {c up}
  Sleep, 10
  Send, {ctrl up}
  clipWait, .01
  if ErrorLevel ; If the first copy failed do it again
  {
    Send, {ctrl down}
    Sleep, 10
    Send, {c down}
    Sleep, 10
    Send, {c up}
    Sleep, 10
    Send, {ctrl up}
  }
  newClip := clipboard
  clipboard := oldClip
 
  ; Release duplicate clipboard content from memory, could have large file in clipboard
  VarSetCapacity(oldClip, 0)
  return newClip
}

#IfWinActive ahk_class Net UI Tool Window
Rbutton::
Send s
linkText := copyText()
currentEmailText := ComObjActive("Outlook.Application").ActiveExplorer().Selection.Item(1).body
regexMatchText := "(?<=" . linkText . "\s<)[^>]*"
RegExMatch(currentEmailText, regexMatchText, selectedOutlookLink)
FileCreateShortcut, %selectedOutlookLink%, %A_Desktop%\test.lnk
return
#IfWinActive

To use it rightclick on on the link then rightclick again, it doesn't create a new context menu item but works for me on Windows 7 and outlook 2013.