[flexcoders] what is wrong with this code?

2009-10-10 Thread funandlearning3
public var str:String = "Area = "; public var area:Number = Math.PI * Math.pow(3, 2); str = str + area; I am getting an error that str and area variable do not exist...

[flexcoders] Differences between flex modules and flex components

2009-10-09 Thread funandlearning3
Hi All, I was reading about flex modules and was trying to understand what is the difference between a flex module and flex component when they both server the same purpose of maintaining separate code for different components... Is there a code example to show the difference between the two?

[flexcoders] Help with comboBox selectedItem

2009-09-24 Thread funandlearning3
Hi, I have a combobox which is populated with query on backend. when I am trying to display a alert box with the selectedItem, I get the following error: Multiple markers at this line:Implicit coercion of a value with static type object to a possibly unrelated type string: Here is my code sni