Featured FLA
» Author: Nitin Tikhe
» Title: Cart
» Description: This Animation Tut is a fun and useful for kids below 15 years. Watch the Flag, Doors, Stick and Horse movements.
» More by Nitin Tikhe
Featured Site
» Posted in the Flash Kit Links section
» Title: Banana Swimwear
» Description: This is a banana swim wear interactive catalog we designed and animated in Flash
onClipEvent (load) {
point = new object();
//hardcode
point.x = 0;
point.y = 100;
localToGlobal(point);
}
onClipEvent (enterFrame) {
if(Key.isDown(Key.SHIFT)){//hold shift to run
walkspd=20
}else{
walkspd=7
}
point.x = 0;
point.y = 100;
localToGlobal(point);
... other scipt ...
point.y was 100 because I didnt put the registration where I should have.
but what this does is take the point relative to where the character movieclip's
registration is, and turn it into a position on screen. Flash seems to like
me doing this, because everything works nice when I do.