Ask a Question related to Macromedia Flash Ad Development, Design and Development.

  1. #1

    Default Cycled ad problems

    I have a question about the flash ad on this site. Please forgive me if i
    incorrectly explain the question I am asking. Im finding it difficult to
    explain what im trying to ask.
    FIrst I must explain how this ad is working so the question i am asking will
    make more sense.
    This flash ad on the top that cycles through ads 1-4
    on frame one is ad #1.. on frame 120 is ad #2 on frame 240 is ad #3 and on
    frame 360 is ad #4. I also have a frame label on each of these 4 ads of 1-4. SO
    frame one also has a frame lable of 1. This is so my buttons on the bottom of
    this ad when rolled over will go to whatever frame label of the ad button that
    is rolled over.

    This is how i have the buttons set up
    Button one would be;

    on(rollOver){
    gotoAndStop("1");
    }
    on(rollOut){
    gotoAndPlay("1");
    }


    Ok now for the question. What i need is to be able to animate something
    between these frames. The problem I am having is that If i create a movie clip
    the only way I can use it is if i want it to run in a continuous loop. Perfect
    example of this would be ad # 2 in this flash example. the background is a
    movie clip that just repeats. But what if i dont want it to? I cannot do a
    stop() function on the movie clip because this causes my whole time line to
    also stop at the end of playing whatever movie clip that had the stop()
    function in it.
    I want to be able to make my buttons animate or have an animation in these ads
    that doesn't have to loop. Example of this
    [url]http://www.directv.com/DTVAPP/index.jsp[/url] when you mouse over a button on their
    flash Ad the button will pop up a preview and then stop. If i were to do this
    it would repeat that pop up animation over and over unless i put the Stop() but
    if i do that it will stop everything and also stop my ad from cycling. Am I
    making any sense? I don't know if there is a better function i should be
    using... or if I just have this whole thing set up incorrectly in the first
    place. Maybe there is option for call movie clip for given duration of time
    then move on to another one ? Please any help would be greatly appreciated. I
    can also send a working example if my explanation of this is not very good.
    Thanks to anyone that can help me out.

    PlsFlashMe Guest

  2. Similar Questions and Discussions

    1. problems with preLoadNetThing and fileName (was problems with preLoadNetThing and importFileInto)
      You don't want to leave the QT member in your cast when you publish your movie - it's not really there, it's linked. When you run the movie it will...
    2. IE6 problems
      I have a login script to a website where a user logs in through a standard webform with a username and password that needs to be validated. My...
    3. I having problems with IIS
      I just tried to view a page that I had earlier on my own personal web site and was not able to view it. I then tried just plain old localhost and...
    4. Why am I Having Problems ?
      On 8/2/03 1:08 PM, in article 6TUWa.216121$o86.33889@news1.central.cox.net, "Spam@markris.com" <Spam@markris.com> wrote: A Relationship requires...
    5. AVI Problems
      I would highly recommend using QuickTime instead. I had the same problems that you seem to be having. Once I made .mov's instead, the production time...
  3. #2

    Default Re: Cycled ad problems

    On the last frame of each animation (or cycle as you put it) put:

    gotoAndPlay("1"); //for first animation
    gotoAndPlay("2"); //for second animation
    gotoAndPlay("3"); //for third animation
    gotoAndPlay("4"); //for fourth animation

    aniebel Guest

  4. #3

    Default Re: Cycled ad problems

    on the frame you want the movieclip to stop on type
    _root.whoami {
    stop()
    }
    robin1232 Guest

  5. #4

    Default Re: Cycled ad problems

    I aint sure that works tough
    robin1232 Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139