home > onPressとonRelease
onPressとonRelease
October 29, 2007
ボタンの設定で僕はよくonPressを使うんですが、onPressだとgetURL("http://sample.com","_blank");でページを開く時に、WinのFirefoxでポップアップウィンドウブロックの警告が出るようです。
samplebtn.onPress = function(){では警告が出る。
getURL("http://sample.com","_blank");
}
onReleaseでは出ないようです。
samplebtn.onRelease = function(){
getURL("http://sample.com","_blank");
}
知らなんだ。