Re: [Flashcoders] Coding Standards: Use of Get/Set

2007-02-13 Thread Daniel Grace
The biggest complaint that I have seen is the issue of speed. If you do "var foo: String = obj.theLetterA" you expect that to be a hash lookup/dereference/something fast. If you do "var foo: String = obj.getSomething()" and you are thinking about speed, you go and look at what getSomething() is doi

Re: [Flashcoders] Flash 9, XMLSocket.onClose

2007-02-08 Thread Daniel Grace
Daniel Grace wrote: [snip] > I'm connecting to a custom message bus using an XMLSocket. When the > remote end closes the connection (when we have to restart the message > bus, as it's also beta quality) the Flash 8 plugin calls my onClose > handler. The flash 9 plugin h

Re: [Flashcoders] syntax highlighting

2007-02-07 Thread Daniel Grace
Jon Bradley wrote: > > On Feb 7, 2007, at 2:50 PM, Iv wrote: > >> For example in our field Adobe declaration of AS code html-formatting >> standard is enougth for start support this standard by big number >> of developers. > > Problem 1 is that the tool is re-writing the HTML content of the page, >

[Flashcoders] Flash 9, XMLSocket.onClose

2007-02-07 Thread Daniel Grace
I am currently building a large-scale Flash application. I had been testing with the v8.something plugin. During beta customers were complaining about crashes and I've finally tracked it down. I'm connecting to a custom message bus using an XMLSocket. When the remote end closes the connection (whe