Thanks for the tip Ted. Curious, how are you using python with flasm? (that is, what sorts of stuff are you doing with the combo) - boon
Theodore E Patrick <[EMAIL PROTECTED]> wrote: Boon, Use FLASM. It provides text output representing AS Bytecode. http://flasm.sourceforge.net/ Simply do this: // decompress the AS block using zlib >> flasm -x myfile.swf // read the bytecode into a text file >> flasm -d myfile.swf > myfile.flm Open myfile.flm to see all the bytecode instructions. Flasm is still my favorite Flash tool and scripting Flasm with Python is a hell of allot of fun. Cheers, Ted ;) > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:flashcoders- > [EMAIL PROTECTED] On Behalf Of Boon Chew > Sent: Saturday, December 03, 2005 10:41 PM > To: [email protected] > Subject: [Flashcoders] where and how can I learn actionscript bytecode > > > Is there any tools or documentation out there that > will aid in learning actionscript bytecode? > > I ran into this the other day, and it seems like only > reading the bytecode can help me understand why it > doesn't work? > > class A > { > function destroy() > { > delete this; // doesn't delete itself > } > } > > var a = new A(); > delete a; // delete works here > > - boon > > > > __________________________________ > Start your day with Yahoo! - Make it your home page! > http://www.yahoo.com/r/hs > _______________________________________________ > Flashcoders mailing list > [email protected] > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > > -- > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.1.362 / Virus Database: 267.13.11/191 - Release Date: 12/2/2005 > -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.362 / Virus Database: 267.13.11/191 - Release Date: 12/2/2005 _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders --------------------------------- Yahoo! DSL Something to write home about. Just $16.99/mo. or less _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

