Thank you Andrew for those new examplefiles.
Really intsructive examples you make! Hope to be able to give
something back to the community my self later on (when Im a little
less noob).
Just to show that I use your examples for something productive like
learning here is a link to a schoolproject I just finished -
http://barnaftiden.dk/dancraft/banner/
The text is in danish. Translation:
1st text "To many balls in the air?" (Danish expression meaning "too
busy")
DanCraft is the name of a Recruiting company and the byline is saying
"An active Coplayer"
Have a new question too: How do I make the APE container dymamically?
have tried this (inside a setupAPE function):
var APE_container:MovieClip = new MovieClip();
APE_container.width = stageWidth // stageWidth hardcoded beacuse
stage.width gives too large number!!!
APE_container.height = stageHeight // ------*---------------
stage.addChild(APE_container)*/
APEngine.init(1/4);
APEngine.container = APE_container;
APEngine.addForce(new VectorForce( false, 0, 0 ) );
APEngine.damping = .97;
this throws an error "reference to possible unknown method..." in the
line APEngine.container = APE_container
I have tried the APE documentation but cant figure out the explanation
given...
Thank you for any help given
Klaus