Need to send keystrokes into a Citrix window

0


Client just got a new system. They're connecting to a program through Citrix. I don't know the exact details but basically the call center connects to a VDI, and then opens the application. The application opens in a Chrome window connecting through Citrix.

Previously, we had created a macro shortcut to switch between programs and populate fields.
Now with Citrix, when we Alt+Tab to the Citrix window, we still cannot tab to the proper field until we've clicked on a field.

Is there any way to send a command to Citrix? I'd like to use some kind of a command to give focus to a specific field.

Eric Saragosti

Posted 2018-07-19T18:30:05.343

Reputation: 1

Answers

1

You can try

  • ControlFocus or ControlClick - if the specific field has a classname (ClassNN in Window Spy):

    ControlFocus, Control, WinTitle

    ControlClick, Control, WinTitle

  • or ControlClick, Pos, WinTitle - if the field's relative position to the window (shown in Window Spy) is always constant,e.g.:

    ControlClick, x55 y77, WinTitle

user3419297

Posted 2018-07-19T18:30:05.343

Reputation: 2 055