windows - Using Sendkeys to press a space in Jscript -


i have line in batch file:

kbd(['{right}','{right}', '{tab}', '{enter}','{space}', '%s']); 

it runs fine until end. not press space button. need press space button uncheck checkbox.

i found answer. if using kbd command want press space not use {space} use ' '. this:

kbd(['{right}','{right}', '{tab}', '{enter}','{space}', '%s']); 

to

kbd(['{right}','{right}', '{tab}', '{enter}',' ', '%s']); 

Comments

Popular posts from this blog

qt - QML MouseArea onWheel event not working properly when inside QML Scrollview -

java - is not an enclosing class / new Intent Cannot Resolve Constructor -

python - Error importing VideoFileClip from moviepy : AttributeError: 'PermissionError' object has no attribute 'message' -