[Sikuli-driver] [Question #172411]: Java equivalent of screen.type(g, KEY_CMD|KEY_SHIFT)

2011-09-26 Thread Rakesh
New question #172411 on Sikuli: https://answers.launchpad.net/sikuli/+question/172411 I am trying to invoke the browse dialog in Finder using MAC short cut cmd+shift+g I tried the following without success: What is the java equivalent of : type(g, KEY_CMD|KEY_SHIFT) I tried :

Re: [Sikuli-driver] [Question #172411]: Java equivalent of screen.type(g, KEY_CMD|KEY_SHIFT)

2011-09-26 Thread Tsung-Hsiang Chang
Question #172411 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/172411 Status: Open = Answered Tsung-Hsiang Chang proposed the following answer: r = new Region(); // or new Screen(); r.type(g, KeyModifier.CMD | KeyModifier.SHIFT) -- You received this question