Form Form1 {
(省略)
Button Button1 {
X = 16;
Y = 84;
Width = 232;
Height = 27;
Title = "電話番号を指定して電話アプリを起動";
Function OnTouch( e ) {
try {
var action_dial = "android.intent.action.DIAL";
var tel = "tel:00-0000-0000";
/* インテントを生成 */
var i = new Intent(action_dial, tel);
/* インテントを発行 */
i.startActivity();
} catch(e) {
//.MessageBox(e.message);
}
}
}
}
|