Hi Tudor,
re:
> is that if clicked?
No, it's available anytime the pointpicker has been able to get a point, like with mousemove.
> cuz if I click something, scripts ends it's action
Yes, that's how the regular Align command is supposed to work. When you click a point a 'finished' event will be triggered, and this part of the script exits the even loop when it sees that;
code:
while ( 1 )
{
if ( !pointpicker.waitForEvent() )
return;
>>> if ( pointpicker.event == 'finished' )
>>> break;
If you don't want the script to end when a point is clicked you would want to modify what it does with the 'finished' event, like ignore it.
- Michael
|