[Flex Beginner question] String and value object
- by James
Hi all,
In php we can assign a method name to a variable and then use that variable to call the method. For example:
$image_create_func = 'ImageCreateFromGIF';
$newImage = $image_create_func($oldImage);
But can we do this in Flex?
In flex, I have the string public var key:String = "email"
And I also have a value object searchTerm:SearchTermVO…