[Flashcoders] Anyone know of a flasm-equivalent for AS3 swf command-line disassembly/assembly?

2010-03-19 Thread Ricky Blaha
I am aware that sothink, hp swfscan, and burak's asv support AS3 decompiling, but to my knowledge none of those support command-line disassembly/assembly like flasm does for AS1/2. ~R ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] Re: AS2 cross-domain parent-child swf scripting

2008-12-11 Thread Ricky Blaha
and functions works (as long as System.security.allowDomain() is in the loadee), but accessing textfields needs wrapper functions. ~Ricky http://codingjourney.blogspot.com On Wed, Dec 10, 2008 at 3:12 PM, Ricky Blaha ricky.bl...@gmail.com wrote: *Background:* SWF #1 is published for Flash 8 / AS2

[Flashcoders] AS2 cross-domain parent-child swf scripting

2008-12-10 Thread Ricky Blaha
*Background:* SWF #1 is published for Flash 8 / AS2 on domain name #1 and loads in SWF #2 (same publish settings) from domain #2. Both SWFs are created using Flash CS4 (I need to stick with these publish settings for this project) and I have tested this using Flash Player 9 and 10. SWF #1 needs

[Flashcoders] Restoring F1 Local Help Panel (with the tree)?

2008-12-03 Thread Ricky Blaha
One very annoying feature of CS4 is the lack of a local help panel - pressing F1 now takes you to the Adobe website for context sensitive help...and browsing around is slow because you have to wait for every page load...and there is no way to simply browse using a tree as you could in CS3. One

Re: [Flashcoders] AIR execute file .bat

2008-11-26 Thread Ricky Blaha
If that doesn't work for you, I have found Zinc to be a much better alternative to AIR for this and many other reasons such as database connectivity and COMPort access. Here is how you would launch a batch file using ActionScript and the Zinc package: mdm.System.exec(mdm.Application.path +

Re: [Flashcoders] singleton returns null

2008-11-21 Thread Ricky Blaha
Fábio, The reason you are seeing null is because your getInstance() does not assign the instance of SecondClass to _instance if it hasn't already been instantiated: public static function getInstance():SecondClass { return _instance; //_instance has never been assigned

[Flashcoders] Flash player 10 publicly available today!

2008-10-15 Thread Ricky Blaha
http://www.adobe.com/products/flashplayer/ ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Hebrew text

2008-07-03 Thread Ricky Blaha
I just completed a project involving RTL Hebrew - using Flash 8. RTL is not supported in Flash static text fields, but if you are loading data from external text/xml files which are encoded using UTF-8, the RTL carries through. The only thing you have to do is set the alignment of the text field

[Flashcoders] Flash 8 Tree - calculated horizontal scrolling

2008-04-10 Thread Ricky Blaha
The Flash 8 Tree component has the *hScrollPolicy *property, but if this set to on, the Tree does not automatically show a horizontal scrollbar (presumably to save rendering time since it requires traversing all nodes to find the widest). But this seems like a pretty basic requirement that should