From: sprecks1 on
I am making a 3d game with director, everytime I test something, I have to
reset the world by double clicking on the stage to open a window where I can
reset the game. Could anyone help me on creating some code that will have the
game reset the world itself everytime I exit the game and come back to it? Any
help would be greatly appreciated

From: Mike Blaustein on
you can reset the world with the resetWorld() command.

member("3dmember").resetWorld()

Put that code anywhere you want, like in startMovie for instance which
would reset it every time you start the Director movie...
From: duckets on

member("your 3d scene").resetWorld()

- Ben