WEBサイトへのリンク
WEBサイトへのリンク
WEBサイトへのリンク
default {
touch_start(integer total_number){
llLoadURL(llDetectedKey(0), "Goto My Website", "http://www.second-lifes.org/");
}
}
解説
Goto My Website・・・" "(ダブルクォーテーション)の中にリンク先の名前を入れる
http://www.second-lifes.org/・・・サイトのURLを入れる
WEBサイトへのリンク
WEBサイトへのリンク(日本語)
日本語WEBサイトへのリンク
default{
touch_start(integer total_number)
{
key id = llDetectedKey(0);
llLoadURL(id, llUnescapeURL(" "),
"http://www.second-lifes.org/");
}
}
}
解説
llUnescapeURL(" ")に日本語変換した文字コードをいれます。
日本語WEBサイトへのリンク