Is there any way to color a note from world.DoAfterNote?
world.DoAfterNote + Color
Posted by Webkid on Sat 22 May 2004 01:58 AM — 3 posts, 13,715 views.
You can use DoAfterSpecial, which lets you send a script command after x seconds. Here is an example:
What this example does is:
In the example above the arguments to ColourNote have double-quotes around them because it is quotes within quotes.
Look at the help for DoAfterSpecial for more details.
world.DoAfterSpecial 3, "ColourNote ""white"", ""red"", ""hi there""", 12
What this example does is:
- After 3 seconds ...
- Send: ColourNote "white", "red", "hi there"
- Send to the scripting engine (12)
In the example above the arguments to ColourNote have double-quotes around them because it is quotes within quotes.
Look at the help for DoAfterSpecial for more details.
Awesome, thanks Nick.