I am trying to randomly position a movie clip object in flash using a script.
I have a movie clip object in my scene with a Motion Tween implemented on it which does fade-in fade-out. Now I am trying to make a script that will randomly position that movie clip at each loop of a timer interval. The syntax I am using to reposition is:
movieclipobject.x = Math.round(Math.random() * 50); for example
This script works if I change my profile to use Flash Player 9 but doing this disables what the the Motion Tween is supposed to do.
With the profile set to Flash Player 10, the Motion Tween does it’s job of fading in and out but of course the script to re-position the object does not work.
Can anyone help?