[flexcoders] Mutiline LinkButton? (Flex 2)

2006-04-30 Thread rigidcode
Can I make a LinkButton that line wraps rather than pushing out the Box it's in (or doing an ellipsis), if it's text is too wide? In other words, the behavior you'd expect if it was an html hyperlink... Also, can I do hypertext in Flex? Like, a text field with some of the words as

[flexcoders] Re: data service in craingorm

2006-04-30 Thread deepu_verma
Thanks Matt for the reply. I tried the following code in my service.mxml and alert message was not being display cairngorm:ServiceLocator xmlns:mx=http://www.adobe.com/2006/mxml xmlns:cairngorm=org.nevis.cairngorm.business.* mx:Script ![CDATA[ import mx.controls.Alert; ]]

RE: [flexcoders] New to Flex and deciding...

2006-04-30 Thread David Mendels
Hello, 1. Somewhere they say that the SDK is now free but the builder ispriced and with that will be one framework license. I don't quiteunderstand what is this framework license. The Framework and compiler are free for both development and deployment.You can use them with any text

[flexcoders] Has anyone done a tree grid with columns

2006-04-30 Thread hank williams
Has anyone done a tree grid with columns. What I am really looking for is a datagrid where the first column had a tree structure that would allow the showing and hiding of rows. Hank -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] New to Flex and deciding...

2006-04-30 Thread JesterXL
1. SDK = Flash Player 8.5 + mxmlc + compc + Flex 2 Component Framework (source code to compile) That's all free. Flex Builder 2, the Eclipse plugin or optional standalone, is not free. 2 3 I'll let others handle. - Original Message - From: nasirk09 [EMAIL PROTECTED] To:

Re: [flexcoders] F2B2 States: How to clear/remove a style set in a state

2006-04-30 Thread Manish Jethani
On 4/27/06, revanisle [EMAIL PROTECTED] wrote: mx:states mx:State name=LEFT mx:SetStyle target={PREVIEW} name=left value=0/ mx:SetStyle target={PREVIEW} name=right/ /mx:State [snip] What actually happens is that whichever state is used first works fine, but when I switch to the other

Re: [flexcoders] Flex 1.5 ViewStack child creation

2006-04-30 Thread Manish Jethani
On 4/30/06, Manish Jethani [EMAIL PROTECTED] wrote: If you set creationPolicy to none, you can create each child on your own using the 'createComponentFromDescriptor' method. Didn't realise you were talking about Flex 1.5. It's createComponent() in that case. Manish -- Flexcoders

Re: [flexcoders] Flex 1.5 ViewStack child creation

2006-04-30 Thread Manish Jethani
On 4/25/06, nahruka [EMAIL PROTECTED] wrote: What I'm realising is that children are ALL created, in a sequential fashion, but CREATED in fact. Why is this happening? Should I set a creationPolicy property to none and then instantiate the views manually? If so, which is the best way to do

Re: [flexcoders] Attaching component dynamically

2006-04-30 Thread Manish Jethani
On 4/24/06, flexlearner [EMAIL PROTECTED] wrote: My final and simple goal is : To load a xml file -- loop thru the array of node dailly_learning And attach the custom component as many as dailly_learning nodes are and fill the data into it I could have easily done flash using attachmovie

Re: [flexcoders] Flex 1.5 Box container component that wraps?

2006-04-30 Thread Manish Jethani
On 4/24/06, Andrew D. Goodfellow [EMAIL PROTECTED] wrote: We're all super familiar with the HBox and VBox containers. Has anyone extended one of these to get a wrapping behavior? Almost like an HVBox? :) I want to create a tag cloud using Link components to look like:

Re: [flexcoders] Best way to set component height based on size of parent container?

2006-04-30 Thread Manish Jethani
On 4/21/06, flexabledev [EMAIL PROTECTED] wrote: I have two simple scenarios that I need help with. 1. I have a Canvas that scales with the Browser window. On that Canvas, I have a panel with a top and bottom layout constraint, but I need the width to be dynamically calculated based on the

Re: [flexcoders] Re: AS3 Custom Component question

2006-04-30 Thread Manish Jethani
On 4/21/06, sufibaba [EMAIL PROTECTED] wrote: Does anyone know how to add scroll bar functionality to this component? To avoid a lot of work, extend your component from ScrollControlBase instead of UIComponent. Manish -- Flexcoders Mailing List FAQ:

Re: [flexcoders] How to modify a component design to give a 3d effect

2006-04-30 Thread Manish Jethani
On 4/27/06, nelsoncostabatista [EMAIL PROTECTED] wrote: I would like to change a component layout (for example a panel with some fields in it), in order to give it a 3d feeling. I don't want to change the skin, but the way the component and its child are drawn in the screen. I want to give

Re: [flexcoders] Mutiline LinkButton? (Flex 2)

2006-04-30 Thread Manish Jethani
On 4/30/06, rigidcode [EMAIL PROTECTED] wrote: Can I make a LinkButton that line wraps rather than pushing out the Box it's in (or doing an ellipsis), if it's text is too wide? Try grabbing the internal TextField object and setting its word-wrapping on (I've lost track of how to do this

[flexcoders] Looking for Perm pos. in Flex + J2EE

2006-04-30 Thread Suresh
Hello Everyone, First of all I want to thank you this group member for reading this email, My name is Suresh Akula; I am looking for a perm position, if anyone has opening in below skills, please email me the details. Here is my summary of experience: I have one year of experience in

[flexcoders] How does one build a ComboBox with a Data Grid as the drop down?

2006-04-30 Thread raghuramab
Hi, I would like to build a combobox where a DataGrid is displayed as the drop down list instead of the regular List. From the docs, it seems like I need to either Subclass ComboBase or ComboBox. I tried assigning a Factory that creates DataGrid to the dropdownFactory property of

Re: **SL-JUNK** [flexcoders] how to read gutter size of chart?

2006-04-30 Thread Sreejith Unnikrishnan
ComputedGutters.left, right, top, and so on - Original Message - From: shemeshkale To: flexcoders@yahoogroups.com Sent: Sunday, April 30, 2006 2:41 AM Subject: **SL-JUNK** [flexcoders] how to read gutter size of chart? in charts (flex 1.5) - if not

[flexcoders] Re: Mutiline LinkButton? (Flex 2)

2006-04-30 Thread rigidcode
--- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 4/30/06, rigidcode [EMAIL PROTECTED] wrote: Try grabbing the internal TextField object and setting its word-wrapping on (I've lost track of how to do this myself). Yea I tried that but the textField of the

Re: [flexcoders] New to Flex and deciding...

2006-04-30 Thread Nasir Khan
Manuel/David/JesterXL Thanks a lot for the clarifications and insights. Are all the licensing details you mentioned already finalized at Macromedia or are they still deciding? The reason I ask this again is because I could not find this information on any official macromedia site, there are

RE: [flexcoders] New to Flex and deciding...

2006-04-30 Thread David Mendels
Hi, The final license agreements are being worked on by our teams. But the basic outlines are final and my earlier email explains them. The information on non-commercial licenses on our site is based on the Flex 1.5 timeframe, it has not been updated for 2.0. Hope this helps, David Adobe

Re: [flexcoders] Re: Mutiline LinkButton? (Flex 2)

2006-04-30 Thread Muzak
You have to listen for the TextEvent.LINK event on the Text instance. Try the following and debug the movie to see the trace output: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml xmlns=* layout=absolute creationComplete=initApp() mx:Script ![CDATA[

[flexcoders] Re: namespaces and sub-classes

2006-04-30 Thread nz_mehere
Thanks Matt :-) --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: http://livedocs.macromedia.com/labs/1/flex20beta2/2788.html http://livedocs.macromedia.com/labs/1/flex20beta2/2775.html Matt -Original Message- From: flexcoders@yahoogroups.com

[flexcoders] Re: Problem with Firefox and Flex 2 apps?

2006-04-30 Thread billlane1962
Right click in Firefox shows : "About Adobe Flashplay 8.5".Based on this thread :http://groups.yahoo.com/group/flexcoders/message/35141 I uninstalled Flash player and then re-installed using the latest player from labs (file : Player8.5_B2_PI_03-20.exe ). I still get exactly the same symptoms.

[flexcoders] Re: data service in craingorm

2006-04-30 Thread deepu_verma
I tried to modify the existing contact data service app , and the data is neither getting refreshed in the same session nor across multiple sessions, I am using Cf adapter . (The data is getting inserted into the database correctly) After adding a record the flex dump shows correctly the

[flexcoders] Re: Help! ( Dynamic URLs for HTTPServices )

2006-04-30 Thread oca_gw
Hi All. I'm working with Flex 2.0 beta 2 This response interested me, as I have been experiencing some issues with HTTP Services, and the usage of dynamic destinations. One example that claims to be able to do this is GuniX technology's administrator's RSS2.0 Reader version 0.2. (

[flexcoders] Re: Help! ( Dynamic URLs for HTTPServices )

2006-04-30 Thread oca_gw
Hi Again all. To further demonstrate this problem, I have developed the following sample application: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml xmlns=* layout=absolute width=763 height=371 mx:HTTPService id=myService url="">

[flexcoders] NestingTabNavigators will cause an exception. (Flex 2 bug?)

2006-04-30 Thread rigidcode
I'm trying to make nested TabNavigators in Actionscript (NOT in mxml). Just two- an outer TabNavigator and, on one of it's tab's canvas's, an inner one. Sounds simple right? I reduced it to a smaller reproducable version of the error, here is what I'm doing in my Application: var

RE: [flexcoders] how to read gutter size of chart?

2006-04-30 Thread Ely Greenfield
Unfortunately there's no way to access this value in flex 1.5. In flex, 2, The charts support a property called 'computedGutters' which gives you access to the computed values. Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Setting up named webservices in F2B2

2006-04-30 Thread Jeremy Rottman
I am using F2B2 and I am having a hard time trying to figure out how to setup named webservices. I am not using FDS. Anyone know how I can do this? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] New to Flex, couple of questions

2006-04-30 Thread Sascha Balkau
I just had the chance to read the replies to my questions now! Thanks a lot Dirk and Tracy! Though this is overdue since about a week! Sascha -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Eismann Sent: Monday, 24. April, 2006

[flexcoders] Re: NestingTabNavigators will cause an exception. (Flex 2 bug?)

2006-04-30 Thread oca_gw
Hi rigidcode, Here is an ActionScript class that you can use. It will need to be changed to meet your needs, but it is based off the code you posted, and should be reasonably self-explainatory. The NestedTabs class is extending Canvas, so that you can assign a size for the whole lot, and they

[flexcoders] Re: NestingTabNavigators will cause an exception. (Flex 2 bug?)

2006-04-30 Thread oca_gw
Hi rigidcode, Here is an ActionScript class that you can use. It will need to be changed to meet your needs, but it is based off the code you posted, and should be reasonably self-explainatory. The NestedTabs class is extending Canvas, so that you can assign a size for the whole lot, and