reapeating banner only 3 times

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

  1. #1

    Default reapeating banner only 3 times

    I was wondering how I can make my banner rotate 3 times and then stop after the third one?

    Any ideas?

    Thanks in advance!

    KAT
    space_kat Guest

  2. Similar Questions and Discussions

    1. Ad banner
      I might not know how to explain this. But I will try. I will like to do an advertisment banner which it will run out and running on the screen when...
    2. xml and banner
      Hello every one, I am creating a banner in flash, this flash moive reads the images that it needs to load from xml file here is where the problem...
    3. Reapeating Radio Groups
      Do i need to use an insert record loop?
    4. Has anyone seen the "Mad Mad House" banner or the Pizza Hut banner? [video]
      Has anyone seen these two banners anyplace? I've run into both of them on Yahoo and am desperately seeking a tutorial or any resources on how these...
    5. Help with Web Banner
      Hi! I need some help getting started with a web banner. I want the banner to include 2-3 images and some text. How do I insert images into the...
  3. #2

    Default Re: reapeating banner only 3 times

    The easiest way:

    Insert a frame action in the timeline, with

    if (counter < 3) {
    counter+=1;
    } else {
    stop();
    }

    space_kat wrote:
    > I was wondering how I can make my banner rotate 3 times and then stop after the third one?
    >
    > Any ideas?
    >
    > Thanks in advance!
    >
    > KAT
    Armando Alves Guest

  4. #3

    Default Re: reapeating banner only 3 times

    The easy way is to create a variable as the movie begins and set its value to
    0, then increment it at the end of the loop. At the beginning of the loop you
    check the value of the variable, and if it is 3 or larger, just stop()....



    hitparader61 Guest

  5. #4

    Default Re: reapeating banner only 3 times

    add a stop action on the frame you want it to stop on.
    FlashAcesDesign 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