Difference between revisions of "ISKernel:MouseClick (Command)"
Jump to navigation
Jump to search
m (→Examples) |
|||
(8 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
== Syntax == | == Syntax == | ||
+ | {{CMD-DR|MouseClick|Intermediate|Beginner|Beginner|Beginner}} | ||
+ | MouseClick [-hold|-release] <left|right> | ||
− | == | + | == Forms == |
+ | *MouseClick -hold <left|right> - clicks and holds the left or right mouse button | ||
+ | *MouseClick -release <left|right> - releases the left or right mouse button | ||
== Examples == | == Examples == | ||
+ | ===Click something with left mouse button=== | ||
+ | *MouseClick -hold left | ||
+ | ===Release the left mouse button=== | ||
+ | *MouseClick -release left | ||
+ | ===Click the left mouse button with a delay=== | ||
+ | *mouseclick -hold left | ||
+ | *waitframe | ||
+ | *mouseclick -release left | ||
+ | |||
+ | this is useful when a fast left click doesn't do the expected because a slight delay in press time is needed. | ||
== See Also == | == See Also == | ||
*[[LavishScript:Commands|LavishScript Commands]] | *[[LavishScript:Commands|LavishScript Commands]] | ||
+ | *[[IS:Kernel#Commands|Kernel Commands]] | ||
*[[IS:Session#Commands|Inner Space Session Commands]] | *[[IS:Session#Commands|Inner Space Session Commands]] | ||
+ | |||
+ | |||
+ | {{Command-Stub}} | ||
+ | [[Category:Inner Space]] | ||
+ | [[Category:Inner Space Kernel]] | ||
+ | [[Category:Inner Space Kernel Commands]] |
Latest revision as of 07:23, 24 October 2007
Contents
Syntax
MouseClick | |
Usage | Intermediate |
Level of Understanding | Beginner |
Computer Savvy | Beginner |
Logic | Beginner |
MouseClick [-hold|-release] <left|right>
Forms
- MouseClick -hold <left|right> - clicks and holds the left or right mouse button
- MouseClick -release <left|right> - releases the left or right mouse button
Examples
Click something with left mouse button
- MouseClick -hold left
Release the left mouse button
- MouseClick -release left
Click the left mouse button with a delay
- mouseclick -hold left
- waitframe
- mouseclick -release left
this is useful when a fast left click doesn't do the expected because a slight delay in press time is needed.
See Also