■ブラウザゲームの場合
[html]
<a href="
http://yahoo.co.jp" target="_blank">テスト</a>
[endhtml]
■PCゲームの場合
[html]
<a id="link" href="javascript:void(0)" >テスト</a>
[endhtml]
[iscript]
$("#link").click(function(){
var gui = require('nw.gui');
gui.Shell.openExternal("
http://yahoo.co.jp");
});
[endscript]