Difference between revisions of "LlOpenInternalBrowser"

From Second Life Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
{{LSL Function
{{LSL Function
|mode=request
|func_id=300
|func_id=300
|func_sleep=20.0
|func_sleep=20.0
Line 20: Line 21:
|also_articles
|also_articles
|notes
|notes
|cat1=Avatar
|cat1
|cat2=Communications
|cat2
|cat3=LSL HTTP
|cat3
|cat4
|cat4
|}}
|}}

Revision as of 07:30, 18 May 2007

Emblem-important-yellow.png LSL Feature Request
The described function does not exist. This article is a feature request.

Summary

Function: llOpenInternalBrowser( key agent, string title, string url, integer width, integer height );
REQUEST Function ID
20.0 Forced Delay
100.0 Energy

Opens an internal Mozilla Browser on the agent's client.

• key agent The agent's key which you want the command to be done on.
• string title The title for the internal browser.
• string url The URL address for the internal browser to display.
• integer width The Width for the internal browser.
• integer height The Height for the internal browser.

Caveats

  • This function causes the script to sleep for 20.0 seconds.
All Issues ~ Search JIRA for related Bugs

Examples

llOpenInternalBrowser(llGetOwner(),"Google","http://www.google.com",600,400);

Deep Notes

Search JIRA for related Issues

Signature

//function void llOpenInternalBrowser( key agent, string title, string url, integer width, integer height );