A Flash Developer Resource Site

Results 1 to 6 of 6

Thread: go, play, or?...help please!!

  1. #1
    Junior Member
    Join Date
    Oct 2004
    Posts
    11

    go, play, or?...help please!!

    Pardoned my bad English , are Italian! I have two different movie clip (every movie clips have various frames) in two frames different and I would want that they came reproduced in succession as I must make? In alternative, there are the possibility to insert the frames of the second movieclip in the first one?
    Please help!!!

    Rewrite in italian:

    Ho due differenti movie clip in due differenti frames vorrei che venissero riprodotti di seguito, come devo fare? In alternativa, c'è la possibilit* di inserire i frames del secondo movieclip nel primo?

  2. #2
    undead creature necromanthus's Avatar
    Join Date
    Feb 2002
    Location
    ROM
    Posts
    1,890

    Re: go, play, or?...help please!!

    Originally posted by canzonando
    I have two different movie clip (every movie clips have various frames) in two frames different and I would want that they came reproduced in succession as I must make? In alternative, there are the possibility to insert the frames of the second movieclip in the first one?
    First of all,tell us if you're talking about FUN (KoolMoves source file) or SWF (no FUN source file for them) files.

  3. #3
    Junior Member
    Join Date
    Oct 2004
    Posts
    11
    I am talking about Fun movies mc1 and mc2 into two differents frames, they must play one after one. Do you have an action script for this? or Koolmoves have function for this? I want also insert a koolmoves preloader but the program play only the first frame.

  4. #4
    undead creature necromanthus's Avatar
    Join Date
    Feb 2002
    Location
    ROM
    Posts
    1,890
    Originally posted by canzonando
    I am talking about Fun movies mc1 and mc2 into two differents frames, they must play one after one. Do you have an action script for this? or Koolmoves have function for this? I want also insert a koolmoves preloader but the program play only the first frame.
    You have (at least) two options:
    1) copy & paste each frame of mc2 to the end of mc1
    2) if the last keyframe of mc1 is 66 and the last keyframe of mc2 is 77, put each "child-movie" in a separate ROOT keyframe and add this script for it:
    jumpto = function(){
    if(_root.mc1._currentframe == 66){
    clearInterval(jmpto);
    _root.gotoAndPlay("the keyframe for mc2");
    }
    jmpto = setInterval(jumpto,33);
    stop();


    Use a similar script for the mc2's keyframe.

  5. #5
    Junior Member
    Join Date
    Oct 2004
    Posts
    11
    Thanks! Your information as been very usefull!Everything is OK now!
    http://www.mrpacky.it this is my realization.

  6. #6
    undead creature necromanthus's Avatar
    Join Date
    Feb 2002
    Location
    ROM
    Posts
    1,890
    Originally posted by canzonando
    http://www.mrpacky.it
    Well done !

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center