Maze.
Well with the maze that comes in the Flash MX samples folder, ive done everything for the maze, but the player is not moving.
I know the opponent is a motion guide, but the player you control is not moving…
Actionscript is on the maze.
Maze.
Well with the maze that comes in the Flash MX samples folder, ive done everything for the maze, but the player is not moving.
I know the opponent is a motion guide, but the player you control is not moving…
Actionscript is on the maze.
Bump
Hi,
You got some errors on your code and on your desig as well.
First: The walls are to thin.
Second: on that piece of code on the maze walls:
[AS]onClipEvent (enterFrame) {
if (_root.started && _root._currentframe==1) {
…[/AS]
you are checking for the wrong frame #.
You´re not on frame 1, you´re on frame 5.
And you´re not passing the _root.started variable correctly…
if you change the code for this it will work:
[AS]onClipEvent (enterFrame) {
if (_root._currentframe==5) {
…[/AS]
Cheers :bounce:
Still not working, Can you send me the file?
Sure! =)
I forgot to mention that you should have made a mc of the walls inside the mc maze, and give it a instance name of walls.
There you go
:: Copyright KIRUPA 2024 //--