ll.LoadURL

ll.LoadURL (AvatarID: uuid, Text: string, URL: string) -> ()

Shows dialog to avatar AvatarID offering to load web page at URL. If user clicks yes, launches their web browser. llLoadURL displays a dialogue box to the user, offering to load the specified web page using the default web browser.

Example

ll.LoadURL(uuid(<key>), 'test', 'test')
Raw function spec json
{
  "def": "func",
  "desc": "Shows dialog to avatar AvatarID offering to load web page at URL.\tIf user clicks yes, launches their web browser.\nllLoadURL displays a dialogue box to the user, offering to load the specified web page using the default web browser.",
  "energy": 10,
  "sleep": 0.1,
  "must_use": false,
  "link": "https://wiki.secondlife.com/wiki/LlLoadURL",
  "private": false,
  "takesSelf": false,
  "name": "LoadURL",
  "signatures": [
    {
      "def": "signature",
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            {
              "def": "simple",
              "value": "()"
            }
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "AvatarID",
          "desc": "",
          "type": [
            {
              "def": "simple",
              "value": "uuid"
            },
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Text",
          "desc": "",
          "type": [
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "URL",
          "desc": "",
          "type": [
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll