Don't click here unless you want to be banned.

LSL Wiki : llLoadURL

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings :: You are crawl836.us.archive.org
llLoadURL(key avatar_id, string message, string url)

llLoadURL displays a dialog box to the user offering to load a web page using the default web browser.

The URL given must begin with "http://" or "https://"; it will not work with other protocols such as ftp, telnet, secondlife, etc. If a user mutes an object, they will not receive any URL offers from that object. (Note: For those still running the pre-voice clients (1.18.0(6) or less; for UI or Voice incompatibility reasons?), muting the object or avatar does NOT stop llLoadURL boxes from appearing.)

Notes:
The url is truncated to 255 characters and message is truncated to 254 characters.
This function delays the script for 10 seconds.
This function only works on a user within the same sim as the object calling it.

Example:
default
{
    touch_start(integer total_number)
    {
        llLoadURL(llDetectedKey(0), "Flame on!", "http://forums.secondlife.com");
    }
}

Q: Can I use this with a secondlife:// URL?
A: No, use llMapDestination to do that.


This article wasn't helpful for you? Maybe the related article at the LSL Portal is able to bring enlightenment.

Functions | Communications | HTTP
Comments [Hide comments/form]
Before you try, no, secondlife: urls don't work to teleport you.
-- LexNeva (2005-04-06 18:07:35)
Breaking italics.
-- CatherineOmega (2005-04-14 01:41:41)
Does anyone have an idea how you allocate a user to the command if llLoadURL is activated by a Listen event activated by a dialogue menu? Its find under touch event as the user is recorded, but it doesn't appear to be under listen
-- 213-2-186-169.uk.vianw.net (2007-08-23 07:08:58)
Attach a comment to this page: