On 11/18/05, Michael Hansen <[EMAIL PROTECTED]> wrote:

>  I don't quite follow your suggestion. Sorry for being stupid, but all this
> is semi new to me :) Could you elaborate a bit on your  answer?

So instead of this:

<mx:Vbox>
    <mx:Image source="./{dataObject.file"  />
    <mx:Label text="{dataObject.file}"/>
</mx:VBox>

You have to do this:

<mx:Vbox>
    <mx:Image source="./{dataObject.file"  />
    <mx:Label id="label" />
    <mx:Script>
      override public function set dataObject(value:Object):Void
      {
        super.dataObject = value;
        label.text = value.file;
      }
    </mx:Script>
</mx:VBox>

Which sucks obviously, but for the time being that's what we have
(wait for the next build).

>  Also do you guys have a public bug tracking running somewhere. I would save
> us all (both you and me) some time. (i also got found 7 or 8 bugs i would
> like verify, before submitting)

No, I don't think so.  I'm sure QA engineers from the Flex team are
lurking on the list (and often posting too) and will pick up any
problems reported here.

Manish


------------------------ Yahoo! Groups Sponsor --------------------~--> 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to