Form Form1 {
(省略)
Button Button1 {
X = 16;
Y = 84;
Width = 232;
Height = 27;
Title = "AppStoreでBiz/Browser AIを見る";
Function OnTouch( e ) {
try {
var rt = new Runtime;
rt.ShellLink("itms-apps://itunes.com/apps/bizbrowserai");
} catch(e) {
//.MessageBox(e.message);
}
}
}
}
|