[flexcoders] Multiline Textfield Trunctation

2008-05-29 Thread ninobronzed
Is there a way to truncate a multiline textfield? Or is there a component out there that someone wrote that does it? The single-lined Label component does truncation, but I need it for textfields with more than one line... THX

[flexcoders] Slider Thumb overlaps end of Track

2007-11-30 Thread ninobronzed
The thumb is centered, and it's two halves hang over the track bar at 0 and at the maximum. This is normal and looks great, but I want my thumb to be in the inside of the track only. It's a rectangle and fits in the track...the edges of the thumb should be flush with the edges of the track

[flexcoders] AS2 errors and code when debugging in Flex Builder

2007-11-08 Thread ninobronzed
I'm using a SWFLoader to load an AS2 Swf. When it loads I see my AS2 code in the call stack in the flex debugger...and errors are thrown. Is this expected? I'm porting this code, which is just a SWFLoader loading an AS2 swf, from an AIR App. I didn't see those errors and AS2 code call stack in

[flexcoders] Re: Text word wrapping

2007-10-31 Thread ninobronzed
%. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ninobronzed Sent: Tuesday, October 30, 2007 9:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Text word wrapping I have a mx.controls.Text instance. It is a child of a VBox. I give

[flexcoders] Text word wrapping

2007-10-30 Thread ninobronzed
I have a mx.controls.Text instance. It is a child of a VBox. I give it a percentWidth = 100, and the text is truncated (cut off, actually. no ellipsis) and doesn't wrap. It only happens when the text is a specific length. So, most of the time it works correctly, only when the text is close to

[flexcoders] Class (not instance of) implements Interface

2007-09-05 Thread ninobronzed
Is there a way to check if a Class implements an Interface? Not an instance of a class, but if com.something.MyClass implements com.something.IMyInterface.