I am trying to use auto type on a form with nested HTML tabs on the page
there are keyboard short cuts for the first set of tabs alt-# (1 thru 5) this reveals the second set of tabs that also have keyboard short cuts alt-# (1-4 in most cases)
if you pick your finger off the alt key, say alt 1, alt 4 you go to first set of tabs number 4. you need to continuously hold down, alt 1 4 (release alt) in order to get to first set tab 1, second set tab 4.
%1%4 does not do the trick it goes to first set tab 4. is there a way to say hold the alt button down until is say let it up?
thank you for the help
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am trying to use auto type on a form with nested HTML tabs on the page
there are keyboard short cuts for the first set of tabs alt-# (1 thru 5) this reveals the second set of tabs that also have keyboard short cuts alt-# (1-4 in most cases)
if you pick your finger off the alt key, say alt 1, alt 4 you go to first set of tabs number 4. you need to continuously hold down, alt 1 4 (release alt) in order to get to first set tab 1, second set tab 4.
%1%4 does not do the trick it goes to first set tab 4. is there a way to say hold the alt button down until is say let it up?
thank you for the help
Use parentheses: %(14).
Best regards,
Dominik
Thank you so much. it works about 50% of the time which is better than I was getting.
the non 50% maybe unfixable, because the refresh rate on the page stinks
You could insert a delay, e.g. %(1{DELAY 1000}4) waits one second (1000 ms) between pressing 1 and 4.
Best regards,
Dominik