Hi everybody.
So here is script for C 9.5.
;<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Select an Insert <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
!1:: ; Alt+1 hotkey.
Y:=114 ; (114)
Sleep 10
SendEvent {Alt up}
GoSub, SelIns
return
!2:: ; Alt+2 hotkey.
Y:=114+22.06
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return
!3:: ; Alt+3 hotkey.
Y:=114+22.06*2
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return
!4:: ; Alt+4 hotkey.
Y:=114+22.06*3
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return
!5:: ; Alt+5 hotkey.
Y:=114+22.06*4
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return
!6:: ; Alt+6 hotkey.
Y:=114+22.06*5
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return
!7:: ; Alt+7 hotkey.
Y:=114+22.06*6
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return
!8:: ; Alt+8 hotkey.
Y:=114+22.06*7
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return
!9:: ; Alt+9 hotkey.
Y:=114+22.06*8
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return
!0:: ; Alt+0 hotkey.
Y:=114+22.06*9
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return
SelIns:
IfWinExist, Channel Settings
WinActivate
else
{
SendEvent e
WinWaitActive, Channel Settings
}
PixelGetColor, InsColor, 84,86, [RGB] ;Check the Tab Inserts/Strip
If InsColor <> 0x2F3840 ;if Strip is active
{
Click 84,86 ;Open Inserts
Sleep 100
}
MouseMove 187,Y ;Select an Insert , (x=187)
Sleep 50
;MouseMove 194,Y
;Sleep 100
Click
Return
#IfWinExist
;<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< End <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
I stopped at the Insert #10 (Alt+0) so far. If you have any suggestions for the Key commands to be set for the rest of them we can have them all.
Greetings.