I’ve got a little problem using the MovieClipLoader.
I have a movieclip named “scroll_mc” wich contains multiple mc’s.
I use MCL to load images into those mc’s.
I want to be able to click these images since they will be used as thumbnails.
var my_thumbLoader = new MovieClipLoader();
my_thumbLoader.loadClip("img.jpg", scroll_mc.thmb1_mc);
//this works fine so far!
//here's where it goes wrong.
scroll_mc.thmb1_mc.useHandCursor;
//no handcursor appears when i hover over the mc
scroll_mc.thmb1_mc.onPress = function(){
//blablabla function somethingy
}
//function will not perform at all!!!