hi i’m a newbie to flash and am kinda stuck was wondering if someone could help me out.
basically what I want is
[LIST=1]
[]Flash banner that loops through images and displays them (with fadein/fadeout)** [I have done this bit]**
[]When it shows the image (ie img1.jpg), I want it to display clickable buttons that go to the url.
[*]If someone hovers over, the loops stops and as soon as someone moves their mouse away the loop starts again with another set of image and clickable buttons.
[/LIST]
I would much appreciate any help if someone can help me out with this.
I’m a newbie to be kind.
Thank you.
import mx.transitions.Tween;
import mx.transitions.easing.*;
var interval = 3000;
var menuItem2 = ["Digg", "Ajaxian", "Kirupa"];
var menuItemUrl2 = ["http://www.digg.com", "http://www.ajaxian.com", "http://www.kirupa.com"];
var counter = 0;
function rotate() {
if (counter<totalImages-1) {
counter++;
} else {
counter = 0;
}
}
function pause() {
}
onLoad = function () {
rotate();
};