De DigiWiki.
// Display URL Dialog
default
{
touch_start(integer num_detected)
{
key gAvatarKey = llDetectedKey(0);
llLoadURL(gAvatarKey, "View the offical Second Life website.", "http://www.secondlife.com");
}
}
//Compact Script by Alessandro Spires to SecondBits and Second Life
default
{
touch_start(integer num_detected)
{
llLoadURL(llDetectedKey(0), "Visit the Second Life", "http://www.secondlife.com");
}
}
//Emmas Seetan
//21 September 17:06
string text = "Visit the Second Life Wiki!"; //Floating text
string url = "https://wiki.secondlife.com/"; //must include 'http://'
default
{
touch_start(integer num_detected)
{
llLoadURL(llDetectedKey(0), text, url); //Loads the URL
}
}