View Single Post
Old 12-24-2012, 07:49 PM   PM User | #2
adaminaudio
New Coder

 
Join Date: Jan 2012
Location: Columbus, Ohio, U.S.A
Posts: 41
Thanks: 0
Thanked 8 Times in 8 Posts
adaminaudio is an unknown quantity at this point
Hi there,

I'm hoping I understand your question right but I'll try:

would it be possible for you to use a dictionary for this? (associative array, same thing)

and say something like:
PHP Code:
var monthlyDP:Dictionary = new Dictionary();
monthlyDP["1st"] = "first";
monthlyDP["2nd"] = "second";
monthlyDP["3rd"] = "third"
...and so on.

that way you get direct access. Of course there are multiple ways of doing this.

Hope that starts you in the right direction.

-Adam
adaminaudio is offline   Reply With Quote
Users who have thanked adaminaudio for this post:
shaunthomson (01-04-2013)