Quote from
Gaev on April 2, 2020, 10:58 pm
@rocote
You can use MoveObject e.g. ...
MoveObject "Headline1" 50 100
... or SetObjectBounds ...
SetObjectBounds "Headline1" 20 300 0 0
... just leave blank those parameters you do not need to be changed
Once you verify that these work as expected, you can replace parameters with [variables] e.g. ...
SetVar [newLeft] 80
SetVar [newTop] 200
SetObjectBounds "Headline1" [newLeft] [newTop] 0 0
Note: You can use negative numbers for top or left to move all/part of the object off screen.
@rocote
You can use MoveObject e.g. ...
MoveObject "Headline1" 50 100
... or SetObjectBounds ...
SetObjectBounds "Headline1" 20 300 0 0
... just leave blank those parameters you do not need to be changed
Once you verify that these work as expected, you can replace parameters with [variables] e.g. ...
SetVar [newLeft] 80
SetVar [newTop] 200
SetObjectBounds "Headline1" [newLeft] [newTop] 0 0
Note: You can use negative numbers for top or left to move all/part of the object off screen.
luishp and Samuel Vanneste have reacted to this post.