I was just testing my site and theres this section with a menu where on mousover, an image appears to the side of the movie. On ‘rollout’, the image is supposed to dissappear. This works perfectly except that i realised that if u click on one of the menu items, drag ur mouse and then let go, the image at the side remains. Heres the code that i used for the menu items.
[AS]on (release) {
// customize the window that gets opened
// 0 equals NO.
// 1 equals YES.
address = “slbdeadbeat.html”;
target_winName = “Digicel”;
width = 544;
height = 394;
toolbar = 0;
location = 0;
directories = 0;
status = 0;
menubar = 0;
scrollbars = 0;
resizable = 0;
// sends data back to the function
openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);
}
on (rollOver) {
_root.createEmptyMovieClip(“emptyMC”, 25);
_root.emptyMC.loadMovie(“pic_slb.swf”);
_root.emptyMC._x = 500;
_root.emptyMC._y = 50;
}
on (rollOut) {
_root.emptyMC.removeMovieClip();
}
[/AS]