Animate a loaded jpg

Hi there. Been a while since I’ve posted here, but that due to having a lack of problems figuring things out :wink:

I’m trying to figure out how to make a dynamically loaded image actually move across my screes. So far, my script loads the image, but stops after 1 frame. Without the loaded image everything works just fine. It’s all Action Script, so my gues is that I probably missed something along the way.

Here’s my script:


scaler.loadMovie("image.jpg");

//set the starting value for 2 variables
var targScale = 45;
var targX = 250;
var targY = 102;
var speed = 5;

scaler.onEnterFrame=function() {
    scaler._xscale -= (scaler._xscale-targScale)/speed;
    scaler._yscale -= (scaler._yscale-targScale)/speed;
    scaler._x += (targX-scaler._x)/speed;
    scaler._y += (targY-scaler._y)/speed;
}

Any help would greatly be appreciated!