Method: Castanaut::OS::MacOSX::TigerMovie#doubleclick
- Defined in:
- lib/castanaut/os/mac_os_x_legacy.rb
#doubleclick(btn = "left") ⇒ Object
125 126 127 128 129 130 131 132 |
# File 'lib/castanaut/os/mac_os_x_legacy.rb', line 125 def doubleclick(btn = "left") not_supported "anything other than left clicking" unless btn == 'left' execute_applescript(%Q` tell application "Extra Suites" ES click mouse with double click end tell `) end |