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?
|
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?
| |||
|
feedback
|
|
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.
| |||
feedback
|
|
The following works in 0.9 and newer versions of Sikuli type('x', KeyModifier.CTRL) | |||
|
feedback
|