Search Results

0
votes
1answer
234 views

Best place to put prototype code in Flex project

I'm making a Flex project, using the Cairngorm library, and trying to keep the code in a good MVC structure. I just added some code to add a prototype function to a built-in class (I added the meth …
5
votes
4answers
2k views

Test if an object is defined in actionscript

In actionscript, how can you test if an object is defined, i.e., not null? …