PDA

View Full Version : Touch Screen setting



chuckb
February 16th, 2010, 02:02 PM
Can you set a touch screen to exit the live view mode and go back to main screen? I am thinking of a "small" no "Smaller" touch section hidden out of the way that would allow you to exit the live view and go back so you really would not need a key board at all?

Chris Breeze
February 17th, 2010, 08:27 AM
You could probably write an AutoHotKey script to detect a touchscreen press and send an Esc key press to exit fullscreen photobooth mode.
Something like this should work:


#IfWinActive,Breeze Systems Photobooth
LButton::
MouseGetPos, xpos, ypos
if (xpos > 900 && ypos > 700)
{
WinActivate,Breeze Systems Photobooth
Sleep 50
sendinput {Escape}
}
return