Keys Method - Holding [ALT] while pressing twice the same key
Hi guys, I have an issue when holding a certain key and pressing another key multiple times, during the same combination. At the moment, I have an object and I try to hold [ALT] while pressing [F7] twice, in order to change section in my desktop application. Here is the code in javascript : var myObject =Aliases.Sys.MyObject; myObject.Keys("[Hold]~[F7][ReleaseLast][F7]"); As you can see, it shoul press and hold [ALT], the [F7], release [F7] and re-press it. The real behavior is that it hold [ALT], presses [F7] and keeps holding [ALT] until I have an error due to unexpected window opened (while [ALT] is hold, there is a window opened). I used debugging, and the code seems to be stuck in the Keys method. Not sure what to do, any ideas ?Solved1.3KViews0likes2Comments