http://megaswf.com/view/3e575063f24e...91918d82f.html
Here's the link to my game guys. As you can see! The turning doesn't work, I'm just a beginer. I don't think the rotation works quite correctly? Not sure why.. But I need somehow to have the code moveForward relative to the car_mc. Instead of just x += +5 : being relative to the document!
Code:
stop();
forward_mc.addEventListener(MouseEvent.CLICK, moveForward);
function moveForward(event:MouseEvent):void
{
car_mc.y -= 15;
}
backward_mc.addEventListener(MouseEvent.CLICK, moveBackward);
function moveBackward(event:MouseEvent):void
{
car_mc.y += 15;
}
left_mc.addEventListener(MouseEvent.CLICK, moveLeft);
function moveLeft(event:MouseEvent):void
{
car_mc.rotation -= 15;
}
right_mc.addEventListener(MouseEvent.CLICK, moveRight);
function moveRight(event:MouseEvent):void
{
car_mc.rotation += 15;
}
bigger_mc.addEventListener(MouseEvent.CLICK, makeBigger);
function makeBigger(event:MouseEvent):void
{
car_mc.scaleX += 2;
car_mc.scaleY += 2;
}
smaller_mc.addEventListener(MouseEvent.CLICK, makeSmaller);
function makeSmaller(event:MouseEvent):void
{
car_mc.scaleX -= 2;
car_mc.scaleY -= 2;
}
cloak_mc.addEventListener(MouseEvent.CLICK, makeCloak);
function makeCloak(event:MouseEvent):void
{
car_mc.alpha -= .50;
;
}
reset_mc.addEventListener(MouseEvent.CLICK, reset);
function reset(event:MouseEvent):void
{
car_mc.alpha = 1;
car_mc.scaleX = 1;
car_mc.scaleY = 1;
car_mc.rotation = 0;
car_mc.y = 512;
car_mc.x = 518;
}

any help would be much appreciated! I am a newbie so bare with me
Thankyou!