Hi,
I got this little actionscript
var container:MovieClip = createEmptyMovieClip("container", getNextHighestDepth());
var mcLoader:MovieClipLoader = new MovieClipLoader();
mcLoader.addListener(this);
mcLoader.loadClip("inrichting/Antwerpen 1.JPG", container);
Now I want this image to be clickable. I tried several things, fi
container.onPress = function()
{
trace('boe');
}
but it doesn’t work. Anyone knows what’s going wrong here?
Thnx in advance,
Grenouille.