Flex: getType() schmettype
by admin on Mar.07, 2009, under Development, Flex
I’ve started dabbling in Flex recently, and something that was apparent(and annoying at times) to me early on was it’s strongly-typed nature. Not type as in a keyboard, but variable types. Flex cares very much whether your variable is an Array, or ArrayCollection as it’s knowledge of types is key to it’s processing. This is quite the converse to a language like PHP, which is loosely-typed to say the least.
Anyway, I came upon a case where I needed to know the type a variable was so I could cast it properly(and for debugging), and I found that Flex doesn’t have a function to simply return a variable’s type. There is describeType(), but this returns an XML object with all of the information about the variable — not just the type. Plus you have to import the proper class to use it. So, I threw together this function quickly that will perform the import, and return/alert the type as needed:
I hope someone else can find it useful.
April 17th, 2009 on 2:06 pm
Awesome, thanks!
July 10th, 2009 on 7:45 am
Thanks!
July 10th, 2009 on 12:17 pm
Glad it was helpful!