Page 1 of 1

ControlSendKeys - Windows & Menu Keys

Posted: Thu Dec 07, 2006 2:42 pm
by James Hirst
Hi guys,

Just looking at the key options for the ControlSendKeys function - can we expect the Windows key & the Menu key to be added to the list of supported keys?

Thanks,
James
:D

Posted: Thu Dec 07, 2006 10:06 pm
by webops
You can send the windows keystrokes in Ranorex the same way, like in the Python SendKeys modul:

Code: Select all

   # Left windows key - {LWIN}
    Ranorex.ControlSendKeys(0, "{LWIN}");

    # Right windows key - {RWIN}
    Ranorex.ControlSendKeys(0, "{RWIN}");

    # Context menu Key - Shift + F10
    Ranorex.ControlSendKeys(0, "+{F10}");
Sorry for the missing documentation, we will extend it for the next release.

Jenö Herget
Ranorex Team