Is it possible for me to use a Send("{LEFT}")
and Send("{RIGHT}")
with the use of the value of my inputBox? My code is:
$input = InputBox("Brightness", "Set Brightness to:", "", " M", -1, -1)
_UIA_action($oUIElement,"setfocus");
focus on my control
It's not working when I used
Send("{RIGHT" & $input &"}")
Or
Send("{LEFT" & $input &"}")
Is there other way to do it?