The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.34 / 5.00 31,296 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.07 / 5.00 10,082 ViewsI need help with this game I'm making real quick, and the Flash -Help! board doesnt get enough replies. (I am starting to learn actions better.)
Ok, I when the instance name 'car', goes ON point A, I want it to go to another scene, which I would animate as another street. I'm trying to make it like your going around town. Instead, all I can do it when you click it with your mouse it goes to another scene, I want the actual car over point A to go to another scene. Please help, thanks.
P.S. - The arrow keys are for moving the car, NOT the mouse.
add the exact path to everything, that should do it.
Give a instance name to the car (properties ctrl+f3) ( car ) and make two movieclip (F8) blocks outside the stage.
Click on em, F9,
onClipEvent(enterFrame)
{
if(hitTest(_root.car)){_root.gotoAndStop("city2",1);}
}
for example.
Or you use _root.play(); or _root.nextFrame();