using namespaces in XML

Ok, I lost my friday evening on this one. using namespaces in AS3 and XML. You can get the namespace using namespaceDeclarations. that's step 1. if you need to find node X you MUST type namespace::X. if you don't your query will return empty and you will be left clueless!

remove entire xmllist from object

Very usefull and clean little snippet for removing xml nodes, found on snippler ;)

bytesTotal from a dynamic generated content

A little bit of php code to solve an issue with loaderinfo.bytestotal and dynamic xml. if you don't use this in the php file, bytestotal will always be 0 and your preloader graphic is useless.

add several events to a listener object

This piece of code comes in handy when using the event system in AS3. I'm not a real fan of that system but we have to work with what we have ;).

AS3 Timer method

A simple and easy to use timer utility method. keeps my code clean. it uses an anonymous function as a timer listener.

remove event listener from anonymous functions

sometimes i choose to use anonymous functions as listeners. this is a very lazy way to remove them!