Difference between revisions of "LlOpenInternalBrowser"

From Second Life Wiki
Jump to navigation Jump to search
m
 
(4 intermediate revisions by 3 users not shown)
Line 10: Line 10:
|p4_type=integer|p4_name=width|p4_desc=The Width for the internal browser.
|p4_type=integer|p4_name=width|p4_desc=The Width for the internal browser.
|p5_type=integer|p5_name=height|p5_desc=The Height for the internal browser.
|p5_type=integer|p5_name=height|p5_desc=The Height for the internal browser.
|p6_type=vector|p6_name=Position|p6_desc=The Position on the screen for the internal browser.
|func_desc=Opens an internal Mozilla Browser on the [[agent]]'s client.
|func_desc=Opens an internal Mozilla Browser on the [[agent]]'s client.
|spec
|spec
|caveats
|caveats
|constants
|constants
|examples=llOpenInternalBrowser([[llGetOwner()]],"Google","http://www.google.com",600,400);
|examples=llOpenInternalBrowser([[llGetOwner]](),"Google","http://www.google.com",600,400, <0,0,0>);
|Suggestions=What about different positions on the HUD?
|helpers
|helpers
|also_functions
|also_functions=*[[llLoadURL]]
|also_tests
|also_tests
|also_events
|also_events

Latest revision as of 12:50, 25 May 2009

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, vector Position );
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.
• vector Position The Position on the screen 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, <0,0,0>);

See Also

Functions

Deep Notes

Search JIRA for related Issues

Signature

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