ALT CLICK

From Macros Wiki
Revision as of 11:43, 21 February 2025 by CatoH (talk | contribs)
Jump to navigationJump to search

Up

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

You can use : HPOS VPOS DPOS TOPH TOPV TOPD RAD ANGLE DIAV OPCSH OPCSV OPCSD OPCSTOPD

Example

INPUT 65, 10, 70, 24, x1, 0 !first input
INPUT 65, 20, 70, 24, y1, 0 !second input
INPUT 65, 30, 70, 24, z1, 0 !third input
ALT_CLICK INPUT, 1,HPOS
ALT_CLICK INPUT, 2,VPOS
ALT_CLICK INPUT, 3,DPOS


will fill the first input field with HPOS or X value when alt clicking a point.
will fill the second input field with VPOS or Y value when alt clicking a point.
will fill the third input field with DPOS or Z value when alt clicking a point.