[flexcoders] Error in StyleManager

2008-02-20 Thread Christoph Atteneder
Hi, Just for the case someone else runs into this error: During the usage of the StyleManager I´ve found a bug which I can reproduce all the time. It throws an Error, if it is not able to load a runtime-style.swf even if you implement the StyleEvent.ERROR handler. Steps to reproduce: 1.

Re: [flexcoders] Height Problems of List component using itemrenderer with different row height

2007-12-05 Thread Christoph Atteneder
. The explicitWidth of the renderer is set by the list class before the renderer's measure() is called. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Christoph Atteneder *Sent:* Friday, November 30, 2007 9:00 AM *To:* flexcoders

[flexcoders] Height Problems of List component using itemrenderer with different row height

2007-11-30 Thread Christoph Atteneder
Hi, My problem is following: I have a List component which is filled with a list of properties and I want to know how much space it needs to display all of its items. This only works with single label renderer or renderer with a fixed height, but not with renderer with different row height

Re: [flexcoders] Height Problems of List component using itemrenderer with different row height

2007-11-30 Thread Christoph Atteneder
@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Christoph Atteneder *Sent:* Friday, November 30, 2007 7:43 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Height Problems of List component using itemrenderer with different row height Hi, My problem is following: I

Re: [flexcoders] Code behind - class extend mxml vs. mxml extend class

2007-09-19 Thread Christoph Atteneder
What you should have done is declare a public Bindable in the code behind AS for each Button or whatever in the MXML file, where the variable name in the AS class matches the id parameter in the MXML. The creationComplete() handler for the AS class then attaches all the eventListeners.