in action script
str is string var
str=(some condition)?" store true":"store false";
when i alert the str am not getting any message …..why am not getting
code:
[Bindable]
public var errVarMsg:String ;
errVarMsg="";
errVarMsg=(minfee<=maxfee)?"":"fee min > max\n";
Alert.show(errVarMsg);
If
minfeeis less than or equal tomaxfee, you’ll get an empty alert which might be taken as no message. Change it to