Section 1
//MainTimeline (lolmantrain_fla.MainTimeline)
package lolmantrain_fla {
import flash.events.*;
import flash.display.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.geom.*;
import flash.media.*;
import flash.net.*;
import flash.printing.*;
import flash.system.*;
import flash.text.*;
import flash.ui.*;
import flash.utils.*;
import flash.xml.*;
public dynamic class MainTimeline extends MovieClip {
public var black1:MovieClip;
public var black2:MovieClip;
public var black3:MovieClip;
public var black4:MovieClip;
public var mc:mantrain;
public var otherindex1;
public var otherindex2;
public var otherindex3;
public var otherindex4;
public var otherindex;
public var black:MovieClip;
public function MainTimeline(){
addFrameScript(0, frame1);
}
public function vibrate(_arg1:Event){
_arg1.target.x = (_arg1.target.tx + (Math.random() * 5));
_arg1.target.y = (_arg1.target.ty + (Math.random() * 5));
}
function frame1(){
mc = new mantrain();
mc.x = (stage.stageWidth / 2);
mc.y = (stage.stageHeight / 2);
mc.tx = mc.x;
mc.ty = mc.y;
mc.addEventListener(Event.ENTER_FRAME, vibrate);
addChild(mc);
otherindex1 = getChildIndex(black1);
setChildIndex(mc, otherindex1);
setChildIndex(black1, (otherindex1 + 2));
otherindex2 = getChildIndex(black2);
setChildIndex(mc, otherindex2);
setChildIndex(black2, (otherindex2 + 1));
otherindex3 = getChildIndex(black3);
setChildIndex(mc, otherindex3);
setChildIndex(black3, (otherindex3 + 1));
otherindex4 = getChildIndex(black4);
setChildIndex(mc, otherindex4);
setChildIndex(black4, (otherindex4 + 1));
otherindex = getChildIndex(black);
setChildIndex(mc, otherindex);
setChildIndex(black, (otherindex + 2));
}
}
}//package lolmantrain_fla
Section 2
//mantrain (mantrain)
package {
import flash.display.*;
public dynamic class mantrain extends MovieClip {
}
}//package