How to Hold control Key and shift Key in MAC

Hi All,

In MAC,I need the commands to Hold the control key and shift key at the same time and click someother activity also.

To hold a key down you can use the KeyDown command, just don’t forget to use the KeyUp after you are done. So an example script might look like this:

KeyDown CommandKey
KeyDown ShiftKey
Click "MyButton"
KeyUp CommandKey
KeyUp ShiftKey

All the typeText commands are in Appendix C of the Eggplant Reference, Page 155