Hi,

I was wondering if someone could point me in the right direction with this.

I want to build a sort of pulled down projection screen thing using ActionScript.
Basically the MC will come down with a picture on it.

I have this starting code which doesn't work terribly well because it just moves the screen from top to bottom instantly.
Code:
on (release) {
	do {_root.mcScreen._y+=1;
	} while (_root.mcScreen._y<200);

}
Essentially I want the screen to smoothly scroll down into place over about half a second.

Anybody able to point me in the direction?

Ta

Neil