Hi,
I have a problem with this code:
//stop();
function moveimage (movex, movey) {
if (_root.photo._x < 200) {
_root.photo._x += movex;
_root.photo._y += movey;
}
else {
clearInterval (intervalID)
}
}
function zoomimage (xfactor, yfactor) {
_root.photo._xscale += xfactor;
_root.photo._yscale += yfactor;
}
function helloworld (){
trace (“helloworld”);
}
When I move the image it stops at 200pixlar. But when I than try to move it back again (or in any other direction) the image is frozen…how can I make the image move again?
/Emma