Re: [Flashcoders] [AS2] How to remove unused code from the SWF?

2008-04-19 Thread Pasha
ze. There must be a solution. Guys, help! Anyone?! >Hi, >You can create "intrinsic classes" - stub code that will allow you to compile a SWF without using the classes (which go in a library). >Glen Pasha wrote: Hey! I'm trying to reduce SWF file size to the minimum. The

[Flashcoders] [AS2] How to remove unused code from the SWF?

2008-04-16 Thread Pasha
ction Script Viewer to explore the SWF. Of course, I could remove the unused methods by hand, but it is highly impractical for the large projects. Do you know if there is a tool that can help me to remove unused code from my SWF? Maybe one of the obfuscators?

[Flashcoders] AS2, AM/PM or 24 time format?

2008-03-26 Thread Pasha
Hey! Is it possible to detect time settings on user computer? I would like to know whether he/she uses american (AM/PM) or european 24 hour time format. Pasha ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com

[Flashcoders] How to expand import "*" statements?

2008-03-26 Thread Pasha
anymore, so don't bother :) Pasha ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] How to expand import "*" statements?

2008-03-23 Thread Pasha
ely it does not support a batch mode. So I have to open each class in the editor to convert imports. And there are around 500 classes in the project. Any ideas? Pasha. ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] attachMovie("LibrarySymbol"). Right way to access custom clip variables and functions.

2008-03-11 Thread Pasha
() { trace("size = " + ball_mc.size); //"size = 20" } This technique works fine. However, I don't like the fact that I have manually add onLoad() call to every symbol which properties or functions I want to access. Do you think this is the right way to solve the