Hi I’m a newbie to flash. I’m using the below script to zoom in to an object.
on (release) {
_root.test:y_target = "500";
_root.test:x_target = "500";
_root.test:scale_target = "100";
}
I want to but a 1 second pause just before the zoom after the positioning so
on (release) {
_root.test:y_target = "500";
_root.test:x_target = "500";
PAUSE HERE
_root.test:scale_target = "100";
}
could anyone let me know how to do it. I know how to pause the timeline but not sure about pausing a script.