Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
52 views

Getting and setting a static variable

[Bindable] public class ProductsCache { private static var _products:ArrayCollection; public function get products():ArrayCollection{ return _products; } public function set ...
2
votes
4answers
388 views

how bad is such a comment

if I have a variable which name is explicit enough, for example: errorLocation How bad it is to put a comment like //variable to indicate error location My opinion is that it's really a stupid ...
1
vote
0answers
38 views

Please, review my actionscript web service call class. And web method call class

I' trying to isolate a webservice in its own class, and I plan to add separate classes to each webmethod there is in the webservice. So far, this is what I've got. And it works, I have this feeling ...
1
vote
1answer
82 views

More efficient way to write this Actionscript 3 class?

I wrote one of my first classes in Actionscript 3 and I want someone versed in AS3 to help me fine tune my class. I am sure there are things that could really help with efficiency and I love learning ...
1
vote
0answers
58 views

AS3 AIR class robustness check

I have a ActionScript 3 AIR class that I'd like you to check for robustness. I know it's quite a lot of code and It's not required that you review the full code, but maybe you see general problems in ...
3
votes
1answer
199 views

How can I improve this method?

I've been using FlexLib for its dockable toolbar feature. When you shrink the window, it will try to wrap rows if the stage width is less than the row width. Unfortunately, it won't reverse the ...