RE: [flexcoders] Re: How to chage BarChart to Stacked BarChart dynamically?

2006-12-26 Thread Ely Greenfield
Huh. Yeah, vigen, if you could send a sample...a nice small one that doesn't require a server or lots of files ;) ... that would be great. Thanks. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vigen2000 Sent: Monday,

Re: [flexcoders] Flex Marketing

2006-12-26 Thread Rogerio Gonzalez
But as Tariq said, if no one knows about it they do not feel safe adopting it. The only way I've got my Flex app in the door is because I knew the project manager. He had never heard of Flex. If Flex was mentioned in Java Developers journal magazines he would know about it. Everyone was

[flexcoders] Bug in List Scrollbar with popupbutton

2006-12-26 Thread vigen2000
it seems that there is a bug with the List scroll bar when using itemrenderer or label function. the calculation of the width is without the scroll bar causing the text to be cut. if turning the scrollpolicy to on, the scrollbar does not show up immediately when the list is populated but only

[flexcoders] Re: Radio items in PopUpMenuButton menus

2006-12-26 Thread graysonpierce
Sean, I don't have an answer just wanted to let you know that I experienced the same problem and see if anyone has a simple workaround. I suppose you can do your own popup with a list that has a custom renderer (made up of a radio button and a label) but that seems a lot of work. GP --- In

[flexcoders] truncateToFit() for Text, not Label

2006-12-26 Thread Sergey Kovalyov
Hi All! How to make text truncation with ... in Text, not Label possible? Sergey.

Re: [flexcoders] truncateToFit() for Text, not Label

2006-12-26 Thread Daniel Freiman
I believe in API docs the description at the top of the Text Class page says you can't. However, you could also simply get the pixel location of the last character and if it is not viewable put the dots in yourself. - Dan On 12/26/06, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! How

[flexcoders] Does anybody have method that converts relative URL to absolute one?

2006-12-26 Thread Sergey Kovalyov
Hi All! Does anybody have method that converts relative URL to absolute one? Sergey.

Re: [flexcoders] How heavyweight is data binding?

2006-12-26 Thread Collin Peters
Yes, I have considered and ruled out Flex 2's localization features. I find it a ludicrous idea to have to compile resource strings directly into a SWF or SWC. Maybe I am still missing something about how Flex implements it and please tell me if I am. I find two serious issues with this method

Re: [flexcoders] How heavyweight is data binding?

2006-12-26 Thread Ralf Bokelberg
Have you tested 1000 bindings? What results do you see? If you see performance problems, i would try to trade e4x for a dictionary. Cheers, Ralf. On 12/26/06, Collin Peters [EMAIL PROTECTED] wrote: Yes, I have considered and ruled out Flex 2's localization features. I find it a ludicrous

[flexcoders] Re: Bug using FDS to persist managed association as Set

2006-12-26 Thread parkerwhirlow
Hi Jeff, I tracked it down. The bug is line 662 in this loop (note i vs. k): int k; for (k = i; k toList.size(); k++) { if (assocType.getIdentityFromItem(toList.get(i)).equals(fromId)) break; } I'm fixing locally, and also probably going to write a separate routine for non-ordered sets. I

[flexcoders] Re: Flex Post with Special Characters

2006-12-26 Thread hugocorept
--- In flexcoders@yahoogroups.com, hugocorept [EMAIL PROTECTED] wrote: Here is the thing, i have a Flex Application that POST into a PHP Script. Real Simple, the script send a Email with the data from the Flex. My Problem is: What i have to do , in Flex our in PHP Script, so that

[flexcoders] Re: DataService commit() doesn't finish.

2006-12-26 Thread parkerwhirlow
Hi Jeff, No, the fault handler isn't called. This is part of what confuses me. Will be anxiously awaiting the 2.0.1 release for further troubleshooting of this. thanks, PW --- In flexcoders@yahoogroups.com, Jeff Vroom [EMAIL PROTECTED] wrote: It looks like an exception is occurring and the

[flexcoders] Populating a combobox with XML

2006-12-26 Thread Collin Peters
I have a problem populating a combobox from XML using data binding. The XML is as follows: types type event_type_id=1 label=General / type event_type_id=2 label=Tanning / type event_type_id=3 label=Tennis labelbar/label /type /types The third type

Re: [flexcoders] Re: Flex Post with Special Characters

2006-12-26 Thread Yiðit Boyar
i dont know any idea how you can solve this problem in client side but you may try php preg_replace to replace § with ç etc... exm: $patterns[0] = '/§/'; $patterns[1] = '/á/'; $replacements[0] = 'ç'; $replacements[1] = 'A'; $text=preg_replace($patterns, $replacements, $text); see

[flexcoders] Re: Flex 2 Beta Mac Performance

2006-12-26 Thread fuad_kamal
I'm running flexbuilder 2 on an Intel Mac and it's been crashing a lot today, usually when I type '//' in the code editor for a comment. It's pretty inconsistent. Anyway I didn't find either eclipse.ini or FlexBuilder.ini on my machine anywhere. Is there another file that can be touched to

[flexcoders] Re: Populating a combobox with XML

2006-12-26 Thread Tim Hoff
Hi Collin, Your problem may be that you have an attribute and a node both named label. Not sure if this will help, but I don't see the labelField property set for your comboBox. mx:ComboBox id=types width=200 dataProvider={config_xml.types.type} labelField=label/ If that doesn't work,

[flexcoders] Why Do You Use Flex 2?

2006-12-26 Thread greg h
This post is somewhat related to the recently revived thread regarding Flex Marketing http://tech.groups.yahoo.com/group/flexcoders/message/52413. I recently wrote up a piece stating the case for why we are using Flex 2 (following below). And it got me wondering: What makes Flex 2 compelling

[flexcoders] Re: strange security sanbox error

2006-12-26 Thread fuad_kamal
My socket handler class uses public variables for the host and port, set from the outside. hence, public var port : Number; Remember this was a 1.5 - 2.0 port; I hadn't changed the type declaration to int, but probably since port in the socket class is an int it defaulted to that anyway

Re: [flexcoders] Why Do You Use Flex 2?

2006-12-26 Thread Scott Barnes
My reason for using FLEX was simple. It offered more functionality and control then I normally would with JavaScript and HTML. It provided a path forward where there was none at the time. On 12/27/06, greg h [EMAIL PROTECTED] wrote: This post is somewhat related to the recently revived

Re: [flexcoders] Flex Marketing

2006-12-26 Thread Scott Barnes
I was similiar. I ended up selling a large mining company on the idea back when FLEX was $15k per cpu by simply building a prototype with some gorgeous skins inside. I showed them a smoke and mirror version of what the end result should look like and what not. The head PM then turns and goes

[flexcoders] Re: Drag/Drop - Datagrid. Target is off?

2006-12-26 Thread chuvakgu
There's a bug in Flex where the application uses an ApplicationControlBar (possibly other controls, I'm not sure) which causes the hitarea to be inaccurate. Can you point me to more info about this? I think I am hitting this one too... If so, I'll look for a workaround, getting rid of this

[flexcoders] Item Renderer/Item Editor confusion

2006-12-26 Thread Lachlan Cotter
Hi All, I wonder if someone might be able to shed some light on an issue I'm having with item renderers. The trouble stems from the whole recycling thing that the list components do. Basically, my custom renderers have two states: one for viewing and one for editing the data object. I

Re: [flexcoders] Item Renderer/Item Editor confusion

2006-12-26 Thread Yiðit Boyar
i have never used an item editor bu i have some suggestion for you. add a new variable to your object to keep the edit state...(e.g : _state) then; set your objects currentState to what your _state variable says: i used this logic to keep checkBoxes' situation. (another function controls data's

[flexcoders] Line numbers in stacktraces

2006-12-26 Thread Collin Peters
According to http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=1500.html -verbose-stacktraces=true in the compiler options should show line numbers in stacktraces yet when I add that to my additional compiler arguments in the project

[flexcoders] Re: Bug in List Scrollbar with popupbutton

2006-12-26 Thread vigen2000
if anyone know how to solve this, and change the look of the button please tell me how. maybe overriding the updateDisplayList function? --- In flexcoders@yahoogroups.com, vigen2000 [EMAIL PROTECTED] wrote: it seems that there is a bug with the List scroll bar when using itemrenderer or label