Hi everyone!
(Ok, I know this might be quite an elemental issue, but I don’t know why it happens, and I didn’t find the clue searching these forums…)
I’ve done a small swf as in the Random movement (Motion) tutorial http://www.kirupa.com/developer/mx/random_motionMX.htm. It works perfectly, smooth motion at 20 fps. But the problem comes when I load it as a movieclip’s background in another movie (with the same framerate), like this:
myButton.onRollOver = function() {
myButton.targetContainer.loadMovie(“myMovie.swf”)
};
myButton.onRollOut = function() {
myButton.targetContainer.unloadMovie(“myMovie.swf”)
};
(Simple… should work?)
There’s no smooth random motion, i don’t know, but it looks like there’s a slower framerate - the circles just change position every three seconds though both framerates are the same…
Where’s the mistery? Thanks a lot!!