jfreeman1412
September 22nd, 2011, 01:43 AM
Hey Guys just got a quick question. Is it possible to be able to do the same thing for the color and black and white buttons as this script does for the f4 command? And what would that look like? ^b and ^c
; Start photobooth shooting sequence when any of the following keys are pressed
; (Works even if the photobooth window doesn't have input focus)
F4::
^!+5::
IfWinExist, Breeze Systems Photobooth
{
ControlSend,,{F4},Breeze Systems Photobooth
}
return
Would it look something like this?
; Start photobooth shooting sequence when any of the following keys are pressed
; (Works even if the photobooth window doesn't have input focus)
F4::
^!+5::
IfWinExist, Breeze Systems Photobooth
{
ControlSend,,{F4},Breeze Systems Photobooth
}
return
;
^c::
IfWinExist, Breeze Systems Photobooth
{
ControlSend,,{^c},Breeze Systems Photobooth
}
;
return
; Start photobooth shooting sequence when any of the following keys are pressed
; (Works even if the photobooth window doesn't have input focus)
F4::
^!+5::
IfWinExist, Breeze Systems Photobooth
{
ControlSend,,{F4},Breeze Systems Photobooth
}
return
Would it look something like this?
; Start photobooth shooting sequence when any of the following keys are pressed
; (Works even if the photobooth window doesn't have input focus)
F4::
^!+5::
IfWinExist, Breeze Systems Photobooth
{
ControlSend,,{F4},Breeze Systems Photobooth
}
return
;
^c::
IfWinExist, Breeze Systems Photobooth
{
ControlSend,,{^c},Breeze Systems Photobooth
}
;
return