Created
July 15, 2014 15:27
-
-
Save aviaryan/87459257093a0358eebd to your computer and use it in GitHub Desktop.
clipjump paste from channel public api 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
#include publicAPI.ahk | |
; create clipjump class | |
cj := new Clipjump() | |
; the channel number | |
myChannel := 2 | |
; get channel population | |
msgbox % num_o_cl := cj.getChStrength(myChannel) | |
; paste clips on by one | |
loop % num_o_cl | |
{ | |
cj.Paste( myChannel, A_index ) | |
sleep 100 ; if needed | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment