Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Prism Hyperlinking

Dag Lavecchia
Registered User
Join date: 6 Dec 2009
Posts: 11
12-07-2009 08:45
Is there a way to allow a prism hyperlinking (scripting or otherwise?).

I have a square prism that I want the avatar to click on and then have the option to navigate to a website in their internet browser... Is this possible, and if so, how?
Ron Khondji
Entirely unlike.
Join date: 6 Jan 2007
Posts: 224
12-07-2009 08:55
CODE

default
{
touch_start(integer total_number)
{
llLoadURL( llDetectedKey(0), "Check it out: ", "http://www.whatever.com");
}
}
Dag Lavecchia
Registered User
Join date: 6 Dec 2009
Posts: 11
12-07-2009 14:21
Thanks so much. Works like a charm!