Ok I have a label in my flex app.
<mx:Label bottom="0" left="0" textAlign="center" text="Start Date:
{dispDate}" width="100%" height="5%" />
The dispDate is defined as
[Bindable]
public var dispDate:Date = new Date();
then in an init function I update the date through flashvars which
javascript is passing in a millisecond time.
dispDate.setTime(Application.application.parameters.startTime);
I can alert the dispDate and it shows the updated date, but the label
doesn't update and is just the current date...
how can I make it update.
thanks