Last active
August 29, 2015 14:26
-
-
Save aviaryan/5c1ba3d633b7b9646da0 to your computer and use it in GitHub Desktop.
Clipjump publicAPI example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SetWorkingDir, % A_ScriptDir | |
cj := new Clipjump() | |
cj.blockMonitoring(1) | |
msgbox % cj.version | |
Clipboard := "changes" | |
Clipboard := "morechanges" | |
msgbox % "Clipboard has " Clipboard ". But Clipjump has ? " | |
cj.blockMonitoring(0) | |
ExitApp | |
#include S:\Portables\AutoHotkey\My Scripts\ClipStep\publicAPI.ahk | |
/** | |
SOME TROUBLESHOOTING POINTS | |
1. It is a good idea to include the running Clipjump's publicAPI file | |
2. Use direct path if for #Include if you see include file error. | |
3. If for some reason script doesn't work, make sure Clipjump and both the script are running from same AHK version. So if you have installed AutoHotkey, better run Clipjump.ahk with | |
it and not use Clipjump.exe | |
**/ | |
; http://clipjump.sourceforge.net/docs/devList.html#pubapi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment