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

  1. #1

    Default Rotation Ads

    Hi - Thanks in advance for any help.

    I'm have a section on the page for sponsers. I want to have a sponsor show
    for a 5 seconds and then change to another sponsor for 5 seconds, then
    change again. I know how to do this in a movie clip. The problem is the
    code to getUrl.
    Depending upon which sponsor is showing, I want to have code that will get
    the url of the visible sponsor.

    I see web sites that have ads that change, you can click on the ad and go to
    the corresponding web site. My project is all flash, how does one do the
    coding to get the correct url.

    Thanks,
    Tim


    Tim A. Setliff Guest

  2. Similar Questions and Discussions

    1. Rotation between two transform.rotation vectors.
      Hello, I think my subject is pretty straight forward. :) I am looking for a way for my 3D character to slowly rotate between two vectors. The...
    2. No rotation?
      I have a W3D file that I import into Director. There, I can pan, zoom, rotate just fine, but when I preview it in a browser (F12) or publish it, I...
    3. How to get rotation from model
      Hi forum, How can i get the rotation value from a model? and How can i remove a texture i made using lingo? Tanx!
    4. rotation
      > I'm trying to create a animation (flash 5) with an object rotation. http://www.macromedia.com/support/flash/ts/documents/center_point.htm ...
    5. Rotation?
      im creating a small bullet seen for a movie of mine , and was wondering how i can do angles and rotations on a bullet easily? ie. A bullet flys...
  3. #2

    Default Re: Rotation Ads

    What method are you using to rotate the ads? You could just make each banner
    separate movieclips then call the URL like so:

    banner1_mc.onRelease = function() {
    getURL("http://www.someplace.com", _blank);
    }
    banner2_mc.onRelease = function() {
    getURL("http://www.someotherplace.com", _blank);
    }

    OR...

    you could create an invisible button if you have these mcs rotating on a
    single timeline. Then you would put that invisible button over each banner,
    each one separated by keyframes and change the instance name for each one. Then
    you could use the same code above except change "banner1_mc" to something like
    "banner1_btn".

    aniebel 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