Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How do I use ShortKeeper to launch a selected file within an application?
#2
Since PDF-XChange is not your default viewer, I suggest that you create your shortcut with the command "Run AutoHotkey code" (by adapting one of the following two scripts):

Open a PDF document with PDF-XChange

run % "C:\Program Files\Tracker Software\PDF Viewer\PDFXCview.exe ""C:\Path\FileName.pdf"""

Open a selected PDF document (in Windows File Explorer or on the desktop) with PDF-XChange

ClipSaved := ClipboardAll
Clipboard =
SendInput, ^c
ClipWait, 2
if ErrorLevel
{
  MsgBox % "No file selected"
}
else
{
  run % "C:\Program Files\Tracker Software\PDF Viewer\PDFXCview.exe """ Clipboard """"
}
Clipboard := ClipSaved
Enterpad: For those who need more than a few shortcuts.

Reply


Messages In This Thread
RE: How do I use ShortKeeper to launch a selected file within an application? - by denilama - 05-14-2020, 10:18 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)