LlLoadURL/ja
From Second Life Wiki
関数: llLoadURL( key avatar_id, string message, string url );
アバター avatar_id に Web ページ url を表示する旨のダイアログをメッセージ message と共に表示します。
ユーザが [ページに移動] をクリックすると、必要ならばブラウザを起動した上で、そのページをブラウザで表示します。
| • key | avatar_id | |||
| • string | message | |||
| • string | url |
url は 255 文字を超えた分は切り捨てられます。message は 254 文字を超えた分は切り捨てられます。
url にはプロトコルの指定が必須です。現在 "https://" と "http://" だけが指定可能です。
例
// URL ダイアログを表示する default { touch_start(integer num_detected) { key gAvatarKey = llDetectedKey(0); llLoadURL(gAvatarKey, "Second Life 公式サイトを表示", "http://www.secondlife.com"); } }
//Emmas Seetan //21 September 17:06 string text = "Visit the Second Life Wiki!"; // フローティング テキスト string url = "https://wiki.secondlife.com/"; // 'http://' を必ず含む default { touch_start(integer num_detected) { llLoadURL(llDetectedKey(0), text, url); // URL を表示 } }
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。

