Rogue5099 Posted March 21, 2012 Posted March 21, 2012 Background Story: Ex-wife is in Kuwait, I have our 2 children. Kids video chat with her. They constantly hit keyboard shortcuts and mouse movements. I would like to use the BlockInput() but the problem is I would like to stop the input at any given moment by a hotkey or something. But once BlockInput(1) is in place HotKeySet doesn't work. I could do BlockInput while the: >>>> Window <<<< Title: Adobe Flash Player Class: ShockwaveFlashFullScreen Position: 0, 0 Size: 1280, 800 Style: 0x94000000 ExStyle: 0x00000000 Handle: 0x00000000001E05A2 is up but this eliminates me from ending the video call on my end. Anyway I think about being able to block the input and allowing to input to exit script on command allows a chance for the kids to press keys ect. Something else I might can try is to have a file on a flash drive and have the program keep checking the flash drive for the file and if the file doesn't exist (removing flash drive) then the script exits. Also starting the script would be tricky because I want the video call to be fullscreen. Any help would be appreciated! My projects: Inventory / Mp3 Inventory, Computer Stats
water Posted March 21, 2012 Posted March 21, 2012 You could give the a try. It lets you "Block all keyboard/mouse keys *except* specific keys/events." My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
BigDod Posted March 21, 2012 Posted March 21, 2012 You could just use Ctrl-Alt-Del to enable input as explained in the help file Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
Rogue5099 Posted March 22, 2012 Author Posted March 22, 2012 Once again something simple I try to make difficult! Thanks BigDod. This works perfectly: WinWaitActive("[CLASS:ShockwaveFlashFullScreen]", "") BlockInput(1) While 1 If Not WinExists("[CLASS:ShockwaveFlashFullScreen]", "") Then Exit Sleep(10) WEnd ;==> Ctrl+Alt+Del to Exit My projects: Inventory / Mp3 Inventory, Computer Stats
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now