Concatenere file swf as2


/ Published in: ActionScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. var movLoad:MovieClipLoader = new MovieClipLoader();
  2. var myListener:Object = new Object();
  3. myListener.onLoadInit = function(thisClip:MovieClip) {
  4. /*thisClip.onRelease = function (){
  5. gotoAndPlay("uno");
  6. }*/
  7. thisClip.onEnterFrame = function() {
  8. if (this._currentframe == this._totalframes) {
  9. gotoAndPlay("uno");
  10. }
  11. };
  12. };
  13. movLoad.addListener(myListener);
  14. movLoad.loadClip("1_Loop_Location.swf",loop1);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.