Be a Supporter!

Help With Actions

  • 569 Views
  • 2 Replies
New Topic Respond to this Topic
TvP
TvP
  • Member since: Apr. 27, 2003
  • Offline.
Forum Stats
Member
Level 19
Blank Slate
Help With Actions 2004-10-03 16:16:03 Reply

I 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.

Help With Actions


BBS Signature
Inglor
Inglor
  • Member since: Jan. 26, 2003
  • Offline.
Forum Stats
Member
Level 17
Blank Slate
Response to Help With Actions 2004-10-03 16:24:00 Reply

add the exact path to everything, that should do it.

SchorhrAntiPostLimit
SchorhrAntiPostLimit
  • Member since: Sep. 2, 2004
  • Offline.
Forum Stats
Member
Level 01
Blank Slate
Response to Help With Actions 2004-10-03 16:30:09 Reply

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();