Re: [flexcoders] Re: 3D Carousel in Flex 4?

2010-08-29 Thread claudiu ursica
HTH http://blog.onebyonedesign.com/actionscript/3d-carousel-as3-style-bop-secrets-turns-10/ Claudiu From: hdave_123 hdave_...@yahoo.com To: flexcoders@yahoogroups.com Sent: Sat, August 28, 2010 11:32:49 PM Subject: [flexcoders] Re: 3D Carousel in Flex 4?

[flexcoders] Pb with SwfLoader

2010-08-29 Thread Christophe
Hello, When I use SwfLoader to load an external swf with resizing it, there is a zoom on all my application ? Thank you, Christophe,

[flexcoders] Overriding Item Background In ItemRenderer Problem.

2010-08-29 Thread Stephen
I can change the Label color but cant change the background color, its anying. Can anybody suggest a solution. s:ItemRenderer xmlns:fx=http://ns.adobe.com/mxml/2009; xmlns:s=library://ns.adobe.com/flex/spark

Re: [flexcoders] Overriding Item Background In ItemRenderer Problem.

2010-08-29 Thread claudiu ursica
Working alternating 2 color renderer. Should give you a headstart: oddColor and evenColor are defined in css file. You can justg hardcode them in here. In took out data code and labels, left the skeleton ... ?xml version=1.0 encoding=utf-8? xmlns:s=library://ns.adobe.com/flex/spark

[flexcoders] Nested ItemRenderers Problem

2010-08-29 Thread Stephen
I have placed a Label renderer inside of a Drop Down List inside of a Data Grid and I am having trouble makeing the Drop Down List scroll properly. I have included a link to the application which has the attached source code available if you need to look. When I click to drag the list closes

[flexcoders] Re: Nested ItemRenderers Problem

2010-08-29 Thread Stephen
If I make the DataGrid editable I can select from the drop down and it updates the Data Grid which I can show by scrolling the Drop Down List off the panel and back on and it is still changed at the same time the Drop Down List scroll bars just close the drop down list when you click on them.

Re: [flexcoders] Where To Declare CSS Style Name in AS Component

2010-08-29 Thread Angelo Anolin
Wesley, I did not quite understand what you meant here (my less than expertise in CSS and designing in general is a hindrance in tackling this quite simple problem, perhaps). Previously in Flex3, when you declare a CSS style named after a component, that component would get the styles you

[flexcoders] Calculating width of a child BEFORE it's added...

2010-08-29 Thread Laurence
Using ActionScript, I want to add a Label to a VBox. I know what text I want to put into the label (said text is read from an XML file), but of course, the program cannot know what the width of the label should be until after the text is read from that XML file. I want the label to be as wide

[flexcoders] basic authentification on air

2010-08-29 Thread cholid cholid
i try to get some property of an object with xmlrpc and it's work then i adopt the code to air application when it run, then show a login window that is not happen in flex application it says The Server admin (on port 0) requires a username and password this server uses 'basic' authentification

Re: [flexcoders] Calculating width of a child BEFORE it's added...

2010-08-29 Thread Alex Harui
For mx:Label, you can try using measureText() on the parent unless the label will have different styles that will affect measurement. Then you’ll have to add it and call validateNow() and call getExplicitOrMeasuredWidth(). But why not use mx:Text? Why do you have to get the width exactly? If

Re: [flexcoders] Where To Declare CSS Style Name in AS Component

2010-08-29 Thread Alex Harui
I believe the fully qualified name is now used to find the type-selector. Namespaces allow you to specify the fully-qualified name with less typing. So, if your component is in package foo, then declare the namespace foo and use it to qualify the type-selector. On 8/29/10 11:33 AM, Angelo

Re: [flexcoders] Pb with SwfLoader

2010-08-29 Thread Alex Harui
Flex will zoom the SWFLoader content if it isn’t another Flex app. I guess it could be possible that the content has other code that zooms other stuff. On 8/29/10 3:04 AM, Christophe christophe_jacque...@yahoo.fr wrote: Hello, When I use SwfLoader to load an external swf with resizing

Re: [flexcoders] Where To Declare CSS Style Name in AS Component

2010-08-29 Thread Angelo Anolin
Do you have any sample codes for this? I'm still having a hard time trying to figure this out in my code. For example, I have two files, one is named default.css and my component is named myButton.as Where do I declare which? Thanks. From: Alex Harui