TIP_SET_POS
Usage:
TIP_SET_POS <horizontal offset> <vertical offset>
Description:
Use this command to reposition existing tips that are onscreen.
Details:
<horizontal offset> is a percentage value, where 0% would
be the very left of the screen and 100% the very right.
<vertical offset> is a percentage value, where 0% would be the very top of the screen and 100% the very bottom.
NOTE: the default positioning for tips is the middle of the screen (50% 50% center). So this command is only useful if you want to display tips somewhere else on the screen.
For example, using a series of these commands and wait commands, you can make text scroll across the screen, or make an entire sentence move from the center point up to the top of the screen.
Example:
This example moves the message steadily down the screen:
RADIUS_TRIGGER 0 0 -1 TIP_SET_POS 50% 20% TIP "Hello world!" 5 WAIT 1 TIP_SET_POS 50% 35% WAIT 1 TIP_SET_POS 50% 50% WAIT 1 TIP_SET_POS 50% 65% WAIT 1 TIP_SET_POS 50% 80% END_RADIUS_TRIGGER