FloHin
FloHin

Reputation: 41

Eclipse ECL: How to perform a mouse click while pressing a control key?

I am testing components inside a JavaFX canvas inside an Eclipse RCP application and have to simulate a mouse left button click while ctrl (or shift, or ALT ..) is pressed.

Does anybody know how to solve this in ECL?

Upvotes: 0

Views: 296

Answers (1)

Adam Horvath
Adam Horvath

Reputation: 1286

You have to solve it using commands beginning with mouse- and use their -mask CTRL parameter.

mouse-press 299 350 -mask CTRL
mouse-release 299 350 -mask CTRL

Upvotes: 1

Related Questions