hvordan klikker man på et movieclip (ActionScript - flash)
Jeg har lavet dette lille slideshow, og vil nu gerne kunne klikke på billedernenår de vises (hvilket skal udløse en given handling), men hvordan gør man det?
coverList = new Array();
coverList[0] = "IJustCantStopIt.jpg";
coverList[1] = "Whappen.jpg";
coverList[2] = "TheBestOfTheEnglishBeat.jpg";
coverList[3] = "EatToTheBeat.jpg.jpg";
var count = 0;
function changePic() {
if (count>=coverList.length) {
count = 0;
}
imageTarget.loadMovie(coverList[count]);
count++;
}
changePic();
setInterval(this, "changePic", 1500);
på forhånd tak
topperware