Skip to content

Instantly share code, notes, and snippets.

@aviaryan
Created July 15, 2014 15:27
Show Gist options
  • Save aviaryan/87459257093a0358eebd to your computer and use it in GitHub Desktop.
Save aviaryan/87459257093a0358eebd to your computer and use it in GitHub Desktop.
clipjump paste from channel public api example
#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