ALT CLICK: Difference between revisions
From Macros Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[:Category:Dialog|{{Up}}]] | [[:Category:Dialog|{{Up}}]] | ||
ALT_CLICK <control type> <control num> <value> | {{Command|syntax=ALT_CLICK <control type> <control num> <value> | ||
|description=:Enables the ALT+Click feature in the macro dialog.<br> | |||
:ALT+Click feature allows you to interrogate a coordinate and place it a dialog’s input field. | |||
|param1=<control type>|param1_desc=set type, example INPUT | |||
ALT+Click | |param2=<control num>|param2_desc=The number of <control type> | ||
|param3=<value>|param3_desc=What value to interrogate when ALT+Click, example HPOS | |||
}} | |||
===Example=== | |||
:ALT_CLICK INPUT, 1,HPOS | |||
:ALT_CLICK INPUT, 2,VPOS | |||
:ALT_CLICK INPUT, 3,DPOS | |||
<br> | |||
:INPUT 65, 10, 70, 24, x1, 0 | |||
:INPUT 65, 20, 70, 24, y1, 0 | |||
:INPUT 65, 30, 70, 24, z1, 0 | |||
:will fill input1, input2 and input3, with X,Y,Z values from alt clicking a point... | |||
: | |||
[[Category:Dialog]] | [[Category:Dialog]] |
Revision as of 10:49, 21 February 2025
Command
- ALT_CLICK <control type> <control num> <value>
- Enables the ALT+Click feature in the macro dialog.
- ALT+Click feature allows you to interrogate a coordinate and place it a dialog’s input field.
Parameters
- <control type>
- set type, example INPUT
- <control num>
- The number of <control type>
- <value>
- What value to interrogate when ALT+Click, example HPOS
Example
- ALT_CLICK INPUT, 1,HPOS
- ALT_CLICK INPUT, 2,VPOS
- ALT_CLICK INPUT, 3,DPOS
- INPUT 65, 10, 70, 24, x1, 0
- INPUT 65, 20, 70, 24, y1, 0
- INPUT 65, 30, 70, 24, z1, 0
- will fill input1, input2 and input3, with X,Y,Z values from alt clicking a point...