hello

currently i'm trying to something (more complex than the little example given below) where i need to attach an externally loaded image (that can't be kept in the fla file) and then be able to do stuff when that image is rolled over, rolled out of, or clicked on.

I'm able to get the image there using loadMovie but then when i apply mouse events to the movieclip the image is loaded to, then they don't seem to do anything.....

here is a small example of how i used loadMovie

code:
class test extends MovieClip
{
private var container:MovieClip;
public function test()
{
_root.createEmptyMovieClip("test", 1);
container = _root.test;
//assuming there is a bob.png file in the same directory as the swf
//for example delfick755.googlepages.com/bob.png
container.loadMovie("bob.png");
container.onRollOver = function()
{
trace("hello");
};
}
}



so i was wondering if someone could help me please ??

thankyou