im trying to get movieclips that were made with as2 to handle eventListeners with no luck. no compile errors. i see the image loaded in the swf, but the “trace” call i put in the listener never happens. heres my code . . .
imageHolder.createEmptyMovieClip( "mc_Games", imageHolder.getNextHighestDepth() );
loadMovie( "game.png", imageHolder.mc_Games );
var eventListener:Object = new Object();
eventListener.onMouseOver = function(evt){
trace(evt.name);
}
imageHolder.mc_Games.addEventListener("onMouseOver", eventListener);