“LlLoadURL”的版本间的差异
(创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名 = 函数: llloadurl (键头像,字符串消息,字符串 url) ; |…”) |
|||
第5行: | 第5行: | ||
|函数名 = 函数: llloadurl (键头像,字符串消息,字符串 url) ; | |函数名 = 函数: llloadurl (键头像,字符串消息,字符串 url) ; | ||
|参数= 参数: | |参数= 参数: | ||
− | key avatar – avatar UUID that is in the same region | + | key avatar – avatar UUID that is in the same region |
+ | |||
string message – message to be displayed in the dialog box | string message – message to be displayed in the dialog box | ||
+ | |||
string url | string url | ||
|返回值= 返回值: | |返回值= 返回值: |
2020年8月22日 (六) 03:29的最新版本
首页 | 函数 | 事件 | 类型 | 操作符 | 常数 | Flow Control | Script Library | Categorized Library | Tutorials |
函数名 |
---|
函数: llloadurl (键头像,字符串消息,字符串 url) ; |
参数:
key avatar – avatar UUID that is in the same region string message – message to be displayed in the dialog box string url |
返回值:
如果用户点击 yes,在他们的浏览器中启动页面,如果需要的话启动浏览器. Url 被截断为255个字符,消息被截断为254个字符。 url 的协议必须指定,目前只支持“ https://”和“ http://”。 url 应该是 rfc-1738兼容适当的转义 |
注意事项 |
---|
*这个函数使脚本休眠0.1秒。
|
示例 |
---|
示例一
default { touch_start(integer num_detected) { key id = llDetectedKey(0); integer avatarInSameSim = (llGetAgentSize(id) != ZERO_VECTOR);// TRUE or FALSE if (avatarInSameSim) { string info = "Visit the Second Life website!"; // must start with either "http://..." or "https://..." string url = "http://www.secondlife.com/"; llLoadURL(id, info, url); } else { llInstantMessage(id, "I can only open a URL dialog on your screen if you're in my sim!"); } } } |
相关函数 |
---|
相关事件 |
---|