this feels like it should be pretty easy but I can't find documentation on how to do this:

I just want sikuli to type ctrl+c to copy text to the clipboard.

type(KEY_CTRL+'c') doesn't work and neither does type(KEY_CTRL,'c')

Any suggestions?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Try using type("c",KEY_CTRL) instead.

I wrote a simple script which types a line in notepad, double clicks it to mark it and then ctrl+x ctrl+v it into the document again. Works great.

openApp("notepad.exe")

find("textfield.png" )
type("Some text")
doubleClick("theText.png")

type("x", KEY_CTRL)

click("theTextField.png" )
type("v",KEY_CTRL)
link|improve this answer
That was it, (KEY_CTRL,'c') doesn't work but ('c', KEY_CTRL) does, go figure! – Dave S Jun 15 '11 at 0:24
feedback

The following works in 0.9 and newer versions of Sikuli

type('x', KeyModifier.CTRL)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.