PDA

View Full Version : Start a "toned B/W" sequence with F Key



BoothThis
July 27th, 2012, 07:32 AM
PS Remote
UPDR-200
Canon G10

Were using a uhid nano with 2 hard buttons to send (F2 - switch to B&W mode and start the photobooth sequence) and
(F3 - switch to color mode and start the photobooth sequence). The event on Saturday would like to use a toned B/W (sepia) instead of the B/W. Is there an easy way to make F2 start a toned B/W (sepia) sequence. I know PS Remote recently acquired this ability. Thanks.

Chris Breeze
July 27th, 2012, 08:53 AM
There isn't a keyboard shortcut to switch to toned B&W and start the photobooth shooting sequence in PSRemote at the moment. The simplest way around this would be to use an AutoHotKey script which converts the F2 key press into Ctrl+T followed by F4.

alexsiskahn
July 27th, 2012, 07:24 PM
it would be a great upgrade for the next release

BoothThis
July 28th, 2012, 04:07 PM
There isn't a keyboard shortcut to switch to toned B&W and start the photobooth shooting sequence in PSRemote at the moment. The simplest way around this would be to use an AutoHotKey script which converts the F2 key press into Ctrl+T followed by F4.

I am horrible with auto hot key, so anybody have an idea of how to write this script.

BoothThis
July 28th, 2012, 08:11 PM
; Remap F2 to Send Control t (toned B/W Sepia) and then F4 (Start Sequence)
; (Works even if the photobooth window doesn't have input focus)
F2::
^!+5::
IfWinExist, Breeze Systems Photobooth
{
ControlSend,,^t,Breeze Systems Photobooth
}
{
ControlSend,,{F4},Breeze Systems Photobooth
}

return