Shape animation

this.createEmptyMovieClip(‘square’, 0);
with (this.square) {
moveTo(0, 0);
beginFill(0xFFFFFF);
lineTo(800, 0);
lineTo(800, 320);
lineTo(0, 320);
endFill();
}

just used this to create a rectangle in stage
know i want to move (animated) one of the points of the rectangle

how can i do that? :slight_smile: