ฟังก์ชันที่ใช้บ่อย ๆ
play();
stop();
gotoAndStop();
gotoAndPlay();
stopSound();
stopAllSound();
fscommand();
fscommand("fullscreen",true);
fscommand("quit",true);
properties ของ MovieClip ที่สำคัญ
_x
_y
_width
_height
_name
_alpha
_visible
_enabled
properties ของ Dynamic Text ที่สำคัญ
text_box.text = "test"; // ใส่ค่าให้กับ Dynamic Text
var text_string = text_box.text; //get ค่าข้อความใน Dynamic Text
textWidth //ความกว้างของ Dynamic Text ที่มีข้อความ
textHeight //ความสูงของ Dynamic Text ที่มีข้อความ
Random
var randIndex = Math.floor(Math.random()*100); trace(randIndex)
Drag & Drop
for(i=1;i<=16;i++){ eval('_root.label'+i).onPress = function(){ startDrag(this); } eval('_root.label'+i).onRelease = function(){ num =int( this._name.substring(5,names.length)); atarget1 = eval("_root.group1"); if(this.hitTest (atarget1)){ stopDrag(); } else{ this._x =_global.x_pos; //origin_x this._y = _global.y_pos; //origin_y this._width = default_width; stopDrag(); } } }
Time Interval
var k=0; var number=0; var myInterval=0; function wait_time(){ if(k==number){ clearInterval(myInterval); } k+=1; } function set_time(){ k=0; number = 10; myInterval=setInterval(wait_time,500); }
Hit Test
for(i=1;i<=16;i++){ eval('_root.label'+i).onPress = function(){ this._width=500; startDrag(this); } eval('_root.label'+i).onRelease = function(){ num =int( this._name.substring(5,names.length)); atarget1 = eval("_root.group1"); if(this.hitTest (atarget1)){ this._visible=false; _global.index_bad+=1 _global.count+=1; if(_global.count==16){ _root.sound_win.play(); _root.next_page._visible=true; _root.vs._visible=false; _root.next_btn1._visible=false; }else{ _root.next_btn1._visible=true; } eval("_root.b"+_global.index_bad)._visible=true; _root.sound_correct.play(); stopDrag(); } else{ this._x =_global.x_pos; //origin_x this._y = _global.y_pos; //origin_y this._width = default_width; stopDrag(); } } }
Shuffle
function shuffle_array(input:Array){ for(var i=input.length-1;i>=0;i--){ var randomIndex = Math.floor(Math.random()*(i+1)); var itemAtIndex:Object = input[randomIndex]; input[randomIndex]=input[i]; input[i] = itemAtIndex; } } var name=["a","b","c","d"]; shuffle_array(name);
LoadVDO
_root.mc.loadMovie("VDO/end.swf");
Load Image
mc.loadMovie("pic/img0"+int(_global.select+1)+".png");