Thursday, November 19, 2009

Action Script Command Flash

0 comments
Action Script Untuk Fullscreen
on (release) {
fscommand ("fullscreen", true);
}
//on (release) {
fungsi jika tombol diklik lalu dilepaskan
//fscommand ("fullsreen", true); }
fungsi "fulscreen", true berarti diaktifkan
jika "fullscreen", false maka tidak di aktifkan fullscreen


Action Script Untuk Keluar Windows
on (release) {
fscommand ("quit", true);
}
//on (release) {
fungsi jika tombol diklik lalu dilepaskan
//fscommand ("quit", true); }
fungsi "quit", true berarti diaktifkan
jika "quit", false maka tidak di aktifkan


Action Script Untuk Mendisable Context Menu
on (release) {
fscommand ("showmenu", false);
}
//on (release) {
fungsi jika tombol diklik lalu dilepaskan
//fscommand ("showmenu", false); }
fungsi showmenu, false berarti tidak diaktifkan


Action Script Untuk Menentukan Ukuran Stage
fscommand ("alowscale", true);