I am trying to create some key navagation in an app that I am working with and I want to be able to click a back button when a person presses [BACKSPACE] or [ALT]+[<]. The backspace works no problem. But the Alt + left arrow is not working. Here is the code.
Code:if (e_Key == 8) or ((e_Key == 37) and (e_Modifiers.alt == true)) then if Button.IsVisible("B-Back") then Page.ClickObject("B-Back") end end
Not working and I am confused. I have had the modifiers work in the past but it is not working now so I figure it is me![]()
Tigg

