[flexcoders] Re: Flex 4 RichText clickable hyperlinks + maxDisplayedLines

2010-06-07 Thread astronaute75
Can someone please suggest a solution for this problem ? Thank you :) --- In flexcoders@yahoogroups.com, astronaute75 astrona...@... wrote: Hello, RichText support maxDisplayedLines attribute, but doesn't support clickable hyperlinks. RichEditableText support clickable hyperlinks, but

[flexcoders] Flash Builder: CSS design view?

2010-06-07 Thread grimmwerks
In Flex 3 while working on a CSS file we could see the design view and get a preview of the component we were setting properties on; in Flash Builder that view seems to be gone? Garry Schafer grimmwerks gr...@grimmwerks.com portfolio: www.grimmwerks.com/

Re: [flexcoders] Flash Builder: CSS design view?

2010-06-07 Thread grimmwerks
Ah - just realized; if you have the CSS already set as style, all changes happen automatically... On Jun 7, 2010, at 11:08 AM, grimmwerks wrote: In Flex 3 while working on a CSS file we could see the design view and get a preview of the component we were setting properties on; in Flash

[flexcoders] Problem with SuperTabNavigator

2010-06-07 Thread mailtoraghuv
Hi All, i am using SuperTabNavigator in my application. here i have one problem with tab name. i have specified editableTabLaebls is true for SueprTabNavigator. if i change the name and if it is too long then it is dispalying toolTip like this. actually for the last tab i have

[flexcoders] Using Flex with server that does authentication

2010-06-07 Thread alwayslearningnewstuff
Hi all, I'm building a Flex client for a fully-authenticated server with a REST-like API. All communication with the server will be over SSL/TLS. All requests must be authenticated. What I've discovered, by Googling around and by trying my own code, is that Flex makes things very, very

[flexcoders] Adjusting spark Animation values in mid-animation

2010-06-07 Thread armantic101
Hello, I don't do a lot of animation code, so I was hoping some of the experts here could help get me started with this problem. I need to animate a value in a custom component. The Animation code is hard coded into the component, but an easer may be applied in the component skin. I have

Re: [flexcoders] Flash Builder: CSS design view?

2010-06-07 Thread grimmwerks
Actually - seems odd to me; seems like I have to set properties on a component itself to see it 'live' then I hit 'save to CSS' -- and it's only *then* that it's getting written to a CSS file? CSS files have no code hinting so of course I've got NO clue what is CSS-able in a component in that

[flexcoders] html-template\ index.template.html

2010-06-07 Thread flexnewbie06
Hi group, Can anyone tell help me how to find where the index.template.html resolves the macros ${swf}.swf ?? I have a project that I'm building with ant. The project started out as ABC project, with an abc.mxml as the default app. Then I added an alternate default main.app..xyz.mxml and

Re: [flexcoders] html-template\ index.template.html

2010-06-07 Thread Oleg Sivokon
If you build that with Ant you may just ignore that and use your own variable - that's how I did that anyway. Used mxmlc task output attribute. I don't know about a way to set that thing from Flash Builder, it seems like that's one more thing that Flash Builder knows better than you ;)

[flexcoders] no autocomplete for CSS in external file?

2010-06-07 Thread grimmwerks
Ok, maybe it's me. I'm used to working in the CSS Design View in FB3 and being able to create CSS on a class and see it right there... Now it seems that if I'm working with an external CSS file, I can't autocomplete ANYTHING... so my choice is to go into the regular design view, futz with

[flexcoders] Problem with data displayed in Drop Down, versus actual underlying data

2010-06-07 Thread Mike Anderson
Hello All, I am banging my head on the wall with this issue - I have 1 dropdown control's dataProvider, tied to the remoting results of another dropdown's database query. You can keep selecting a different value from the primary dropdown, and the secondary dropdown updates the underlying

[flexcoders] Easiest Way To Decrease Font Size in Flex App

2010-06-07 Thread Angelo Anolin
I have a flex app compiled from MXML containing a lot of different controls (datagrids, label, textarea, textinputs, etc) and I want to decrease the font size as rendered on the swf. How do I achieve this? Take note that I did not used any css styling on the application and simply compiled the

[flexcoders] Re: Combobox in ItemEditor

2010-06-07 Thread Goutham
Hi I am accessing the combobox with the id through object.data = event.currentTarget.itemEditorInstance.foo.SelectedItem it works fine, but the problem I have is, when I click on the combobox in the gird, it defaults to the first item in the dataprovider for the combobox combobox id=foo

Re: [flexcoders] Using Flex with server that does authentication

2010-06-07 Thread Peter Coppens
Hello I feel your pain. Just recently we struggled through the same issues. One needs to get very creative to get some real HTTP support out of Flex and/or the browser plugins. There is no way to talk to some generic http/rest server with Flex (perhaps 4 is better, have not tried) The nice

Re: [flexcoders] Problem with data displayed in Drop Down, versus actual underlying data

2010-06-07 Thread Hans Wichman
Hi Mike, I think I had the same issue and it looked like a bug to me. I worked around it by not setting the returned set as a dataprovider for the dropdown but by having an intermediate dp which I cleared (removeAll) and added the new results to. So not really an answer to your question, but

Re: [flexcoders] Re: Combobox in ItemEditor

2010-06-07 Thread Alex Harui
The default behavior of a ComboBox in a DataGrid is to match the field specified by the column to an item in the dataProvider. If the dataProvider for the DataGrid contains: { firstName: “Alex”, lastName: “Harui”} And the ComboBox dataProvider contains: [ “Smith”, “Harui”, “Jones”] And the

Re: [flexcoders] DataGrid error when scrolling to last row and starting item edit

2010-06-07 Thread Technusiast
Hi Alex, It turned out, the error below is caused by setting the DataGrid.editedItemPosition property with an object that has invalid rowIndex attribute value. For example, having a rowIndex greater than the number of rows in the datagrid. In retrospect it would have been more helpful to get

Re: [flexcoders] DataGrid error when scrolling to last row and starting item edit

2010-06-07 Thread Alex Harui
We have a garbage-in/garbage-out policy. If the inputs are not valid we don’t support any outcomes, so if your code was supplying the invalid rowIndex the issue would be ruled “Not a bug”, but if our code is supplying an invalid value, then yes, please file it. On 6/7/10 2:48 PM, Technusiast

[flexcoders] Re: Easiest Way To Decrease Font Size in Flex App

2010-06-07 Thread armantic101
You can set the global font size. More info here: http://livedocs.adobe.com/flex/3/html/help.html?content=styles_02.html --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: I have a flex app compiled from MXML containing a lot of different controls (datagrids, label,

Re: [flexcoders] no autocomplete for CSS in external file?

2010-06-07 Thread grimmwerks
Unbelievable that no one used the CSS Design view... On Jun 7, 2010, at 2:26 PM, grimmwerks wrote: Ok, maybe it's me. I'm used to working in the CSS Design View in FB3 and being able to create CSS on a class and see it right there... Now it seems that if I'm working with an