up vote 11 down vote favorite
3
share [g+] share [fb]

One thing I really like about AS3 over AS2 is how much more compile-time type-checking it adds. However, it seems to be somewhat lacking in that there is no type-checked enumeration structure available. What's a good (best / accepted) way to do custom enumerated types in AS3?

link|improve this question

feedback

6 Answers

up vote 8 down vote accepted

your answer after the jump :-)

Enumerations with classes

link|improve this answer
Good answer, thanks! – HanClinto Dec 1 '08 at 0:50
Link is broken. – Joe Feb 7 '11 at 1:37
while my edit is being reviewed I think this link would be similar to the one originally provided: Enumerations with classes – gltovar Feb 7 '11 at 21:19
feedback

Just wanted to share my way

link|improve this answer
A bit verbose, but I like it. – Rytmis Feb 18 '09 at 11:01
feedback

Here's one pretty thorough Enum implementation: http://scottbilas.com/blog/ultimate-as3-fake-enums/

link|improve this answer
feedback

Check this out: http://flexblog.faratasystems.com/?p=242

link|improve this answer
feedback

I know, this is a little outdated and does not exactly answer your question, but you might wanna check out haXe. You can also use it to generate as3 for you, plus there are many other reasons to use it. But this'd really get off topic...

link|improve this answer
Cool, thanks for the suggestion! – HanClinto Sep 29 '09 at 16:46
feedback

There's also a rather good post on the subject by Mattes Groeger: Strong typed constants

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.