PdfXchange Editor use local Manual

MilesAhead

Eclectician
VIP Member
Pro User
Messages
2,130
Hi. I'm hoping someone uses PdfXchange Editor and knows the trick to get F1 to use the local manual file instead of going onto the web.

It has a Help subdirectory. Copying the manual there does nothing. Also I see no setting in Preferences or anything in the online FAQ.
 

My Computer

System One

  • OS
    Windows 8.0 x64
    Computer type
    Laptop
    System Manufacturer/Model
    Toshiba Satelite C55D-A Laptop
    CPU
    AMD EI 1200
    Memory
    4 gb DDR3
    Graphics Card(s)
    Raedon 340 MB dedicated Ram
    Monitor(s) Displays
    Built in
    Screen Resolution
    1366 x 768
    Hard Drives
    640 GB (spinner) Sata II
    Keyboard
    Built in
    Mouse
    Touch pad
According to their forum, it's not possible. Weird. :)
 

My Computer

System One

  • OS
    Windows 8.0 x64
    Computer type
    Laptop
    System Manufacturer/Model
    Toshiba Satelite C55D-A Laptop
    CPU
    AMD EI 1200
    Memory
    4 gb DDR3
    Graphics Card(s)
    Raedon 340 MB dedicated Ram
    Monitor(s) Displays
    Built in
    Screen Resolution
    1366 x 768
    Hard Drives
    640 GB (spinner) Sata II
    Keyboard
    Built in
    Mouse
    Touch pad
They have a PDF manual. If it hasn't been installed automatically you can get it by using Live Update feature.

Of course it won't load under F1 but it's definitely local ;)
 

My Computer

System One

  • OS
    Windows 8.1 Pro x64
    Computer type
    Laptop
    System Manufacturer/Model
    Dell Precision M4800
    CPU
    Intel i7-4900MQ
    Memory
    32 GB
    Graphics Card(s)
    Intel HD Graphics 4600 & nVidia Quadro K2100M
    Monitor(s) Displays
    Dell U2312HM & Dell 2408WFP
    Screen Resolution
    1920x1080 & 1920x1200
    Hard Drives
    Samsung 840 EVO 256 GB & Hitachi TravelStar 5K750 750 GB
    Browser
    Firefox 32
    Antivirus
    Kaspersky Internet Security 15
I have the manual. I guess I need to make an ahk script paragraph to detect the program as the active window and open the manual pdf when I press F1. Clunky but that's how macros are. :)
 

My Computer

System One

  • OS
    Windows 8.0 x64
    Computer type
    Laptop
    System Manufacturer/Model
    Toshiba Satelite C55D-A Laptop
    CPU
    AMD EI 1200
    Memory
    4 gb DDR3
    Graphics Card(s)
    Raedon 340 MB dedicated Ram
    Monitor(s) Displays
    Built in
    Screen Resolution
    1366 x 768
    Hard Drives
    640 GB (spinner) Sata II
    Keyboard
    Built in
    Mouse
    Touch pad
For any ahk script lovers using PdfXChange Editor

Change the path as necessary. Also I renamed the pdf manual "help.pdf".
If it doesn't find the file it passes on the F1 to bring up help in the browser

Just add the paragraph below to your general purpose ahk script

Code:
; PdfXChange Editor
#IfWinActive #IfWinActive ahk_class PXE:{C5309AD3-73E4-4707-B1E1-2940D8AF3B9D}
F1::
  If FileExist("C:\Program Files\Tracker Software\PDF Editor\Help\help.pdf")
    Run,"C:\Program Files\Tracker Software\PDF Editor\Help\help.pdf"
  else
    Send {F1}
return
#IfWinActive

Edit: I changed the #IfWinActive to use the class for the window to get away from the title changing with the active document.
 

My Computer

System One

  • OS
    Windows 8.0 x64
    Computer type
    Laptop
    System Manufacturer/Model
    Toshiba Satelite C55D-A Laptop
    CPU
    AMD EI 1200
    Memory
    4 gb DDR3
    Graphics Card(s)
    Raedon 340 MB dedicated Ram
    Monitor(s) Displays
    Built in
    Screen Resolution
    1366 x 768
    Hard Drives
    640 GB (spinner) Sata II
    Keyboard
    Built in
    Mouse
    Touch pad
Back
Top