Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Hovering Text

Nisa Maverick
Registered User
Join date: 3 Jun 2007
Posts: 224
07-07-2008 05:15
Think this is a simple question but I'm new to scripting.

How do I get a second line of text added to this script please.

{
state_entry()
{
llSetText("Click for Landmark ", <3.0,1.0,0.0>, 1);
}
}
Dora Gustafson
Registered User
Join date: 13 Mar 2007
Posts: 779
07-07-2008 05:30
include the characters: \n
llSetText("Click for Landmark\nLine two\nLine three", <3.0,1.0,0.0>, 1);
Btw: color components range from 0.0 to 1.0.
_____________________
From Studio Dora
Nisa Maverick
Registered User
Join date: 3 Jun 2007
Posts: 224
07-07-2008 05:34
Thank you very much Dora for that it works brilliantly.