Jump to content

Recommended Posts

Posted (edited)

Hey. I know blockinput gets the job done, but if someone is holding ctrl, alt or the shift key when it's enabled it seems to bug out and never refresh its status.

My script opens run when a program stops working, this happens at any time and the computer might be in use when it happens.

How can I disable interaction with the Run window only?

Something like

If winexists ("Run") then

Blockinput ("Run", 1)

Send ("something")

Blockinput ("Run", 0)

Endif

For now I have the run keep trying to write whatever it is supposed to till it is correct, but it just doesnt feel "stable" enough.

Edited by Aarstad
Posted (edited)

You want to be able to interact with this window and restricted for anyone else?

Edit: And if you talk about what I think why don't you use Run() function or simply hide this window?

Edited by Andreik
Posted
Example
$sString = "[CLASS:#32770; TITLE:Run]"
$sStart = 'notepad'
While 1
If WinExists($sString) Then
_InteractWithRun($sStart,WinGetHandle($sString))
ExitLoop
EndIf
WEnd

Func _InteractWithRun($sText, $sIden)
BlockInput(1)
WinSetState($sIden,'',@SW_HIDE)
ControlSend($sIden,'','[CLASS:Edit; INSTANCE:1]',$sText)
ControlSend($sIden,'','[CLASS:Edit; INSTANCE:1]','{ENTER}')
BlockInput(0)
EndFunc

My code:

PredictText: Predict Text of an Edit Control Like Scite. Remote Gmail: Execute your Scripts through Gmail. StringRegExp:Share and learn RegExp.

Run As System: A command line wrapper around PSEXEC.exe to execute your apps scripts as System (LSA). Database: An easier approach for _SQ_LITE beginners.

MathsEx: A UDF for Fractions and LCM, GCF/HCF. FloatingText: An UDF for make your text floating. Clipboard Extendor: A clipboard monitoring tool. 

Custom ScrollBar: Scroll Bar made with GDI+, user can use bitmaps instead. RestrictEdit_SRE: Restrict text in an Edit Control through a Regular Expression.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...