Re: [Flashcoders] IE vulnerability

2006-03-24 Thread Scott Fanetti
You could always just tell that the IE is a buggy and insecure browser - and that in order to use your application, active scripting must be enabled. If your client balks then tell them IE is vulnerable with any web technology - it is just a piece of crap application. Explain to your client

Re: [Flashcoders] Movie Speed

2006-03-23 Thread Scott Fanetti
I have been playing with Flex 2 a lot recently, so I forgot a lot of the AS2 syntax for this, but this is pseudocode for what I would do. What I would do is initialize the MovieClip as an event broadcaster: AsBroadcaster.initialize(MovieClip); then add a broadcaster to the MovieClip prototype

Re: [Flashcoders] Do getters and setters add any size to a file

2006-03-07 Thread Scott Fanetti
using getters and setters adds no noticeable overhead to your application. Yes the functions add a few bytes, but after compile the difference is undetectable. The benefit you get from proper encapsulation greatly outweighs the slight increase in development time it and script size you get fro

Re: [Flashcoders] allowing external content to acces local content

2006-03-06 Thread Scott Fanetti
Use system.security.allowDomain("http://192.168.1.1";) allowinsecuredomain simply lets Flash allow a domain that is insecure to be loaded and executed if it is being served from a secure domain. Put system.security.allowDomain into your loader movie. Make sure your loader movie is running lo

Re: [Flashcoders] Newbiew question AS3

2006-03-06 Thread Scott Fanetti
AS3 information language reference: http://livedocs.macromedia.com/labs/1/flex/langref/index.html Adobe labs AS3 site http://labs.macromedia.com/wiki/index.php/ActionScript_3 Forums @ Existanze wrote: Hello all, This is my first post in this mailing list after reading it for about week, jus

Re: [Flashcoders] Event Dispatcher

2006-02-17 Thread Scott Fanetti
If you are using Flex2 , create a custom event that extends from the event class. and inject the namespace for the custom event into the superclass. ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http:

Re: [Flashcoders] AS 3.0 tutorials

2006-02-13 Thread Scott Fanetti
I screwed up on my syntax above - I would love to get a reply to correct it. Thanks Scott Fanetti ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashco

Re: [Flashcoders] _delete onEnterFrame vs onEnterFrame = null

2006-02-09 Thread Scott Fanetti
delete this.onEnterFrame is definitely the standard method. I think null kills the function definition, but the event still gets fired and the owner of the onEnterFrame event still gets the event notification. delete destroys the event and removes the function pointer from the instance Anggi

Re: [FlashCoders] textfield swapDepths

2006-02-09 Thread Scott Fanetti
WOW! I never knew Flash would not remove _mcs with negative depth. I just tried it and it and it won't work. I guess you learn something new every day. import flash.geom.Rectangle import flash.display.BitmapData _mc = _root.createEmptyMovieClip("rect_mc",3); _bdm = new BitmapData(300,2

Re: [Flashcoders] Is this site legit to buy the software???

2006-02-09 Thread Scott Fanetti
They'll probably just take your money and run ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [FlashCoders] textfield swapDepths

2006-02-09 Thread Scott Fanetti
Dimitirios, Have you considered loading a blank movieclip into the textfields depth then removing the movieclip? Loading the mc into that depths should clear that depth then removing the mc should clear that memory ___ Flashcoders mailing list Flas