[flexcoders] add/remove element for spark list

2010-07-27 Thread breizo
HI All, I am trying to add an effect when an element of a spark List is added or deleted. It was quite a breeze with Flex 3, but I am pulling my hair with Flex 4... See example below of what I am trying to do: http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7fa8.html

[flexcoders] Re: Value Object --- Object Proxy --- huh???

2010-07-27 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: ObjectProxy dispatched change events when properties change. Object does not. If you write your VO's to have only get functions, they are effectively immutable. Thanks, Alex, for this comment. I had already planned to blog

[flexcoders] truncatedToFit on Text/TextArea

2010-07-27 Thread yael.yohai
Hello all, I'd like to be able to use truncateToFit on TextArea or Text. unfortunately the truncateToFit on Text does not seem to work well (it cuts words in the middle), what more - I would like to be able to edit the truncation string myself. I'd like to be able to do this with htmlText,

[flexcoders] Re: Flex Builder 3 Installation?

2010-07-27 Thread flexcodemonkey
Yes, I have done that and it works just fine. --- In flexcoders@yahoogroups.com, markflex2007 markflex2...@... wrote: Do you think if we can install standalone version and plug in version Flex Builder 3 in same computer? Thanks Mark

[flexcoders] Re: Multiline Textfield Trunctation

2010-07-27 Thread yael.yohai
Hello, I used UITextField component in an attempt to create a multiline text field which can truncate according to its limited size. The good news is that it did manage to truncate the text and add ... without breaking words in the middle. The bad news is in some of the cases the text truncated

[flexcoders] Re: PopUpButton with TileList and custom renderer works, but 2 annoyances

2010-07-27 Thread Alexander
Thanks, I don't have warning anymore after I've changed the code. The horizontal scrolling issue seems to be a Flex 3 bug: when I change the width and height, so that there is only a vertical scrollbar - then everything starts to work ok. = MyRenderer.mxml: ?xml version=1.0 encoding=utf-8?

RE: [flexcoders] Re: Embedded Fonts and Flash Builder 4.01

2010-07-27 Thread Battershall, Jeff
Alex, I'm definitely NOT specifying MXFTEText.css for MX components but I DO have to specify embedAsCFF = true to make the warnings go away. Jeff From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: Saturday,

[flexcoders] Re: multiline truncating text field

2010-07-27 Thread valdhor
I haven't used any of these but a Google search yields... http://deepanjandas.wordpress.com/2010/06/13/truncte-text-in-textareatextfield/ http://www.thanksmister.com/index.php/archive/flex-truncating-html-text/

Re: [flexcoders] Editable DataGrid - Save All Rows - with Weblogic Webservice

2010-07-27 Thread kannan Mugundan
Hi Instead of having the Data grid editable, On select of an item in Datagrid, set the selected row values in a form and update the values and update the data grid data provider with the new values. Then pass the List of items in row to your webservice On Tue, Jul 20, 2010 at 11:00 PM,

Re: [flexcoders] Re: Embedded Fonts and Flash Builder 4.01

2010-07-27 Thread Alex Harui
Odd. Well if you want to dig further you can see if the components that complain are actually using FTE somehow. Or if you have time to conjure up a simple test case we can take a look. Now that you have per-module styles, maybe the other components can’t see the style declaration defined in

[flexcoders] Building both with and without -use-network

2010-07-27 Thread whatabrain
I need to build two versions of a Flex app, one for the local filesystem and one to be used in a web site. I recently learned that the only way to do that is to enable and disable the -use-network compiler argument. I'm using Flex Builder 3. Is there any way to automate the building of both

Re: [flexcoders] Building both with and without -use-network

2010-07-27 Thread Evan Klein
Yeah, you could use a build tool like ANT or Maven and have two different profiles. On Tue, Jul 27, 2010 at 12:38 PM, whatabrain ju...@zioth.com wrote: I need to build two versions of a Flex app, one for the local filesystem and one to be used in a web site. I recently learned that the only

[flexcoders] Remote Object Request Timeout Error

2010-07-27 Thread Battershall, Jeff
Hi, I'm still seeing Remote Objects timing out in AIR 2.0 and although there's a lot of postings about on the Adobe forums and in JIRA, there's still doesn't seem to be a definitive solution and/or workaround. Just polling the list to see if anyone has any late-breaking data on the issue?

[flexcoders] How to detect the decimal point character?

2010-07-27 Thread Nick Middleweek
Hi, I'm doing some custom bits on the Flex 3 NumericStepper and I need to prevent more than decimal point being entered into it's textField. Is there a way to detect the character used? e.g. Germany uses a comma... Or should I do something like this... How future proof, multi-lingo is that? var

[flexcoders] Know of any Link Analysis Data Visualization Flash/Flex libraries?

2010-07-27 Thread eb
Does anyone know of any Actionscript libraries that do link analysis charts like this one: http://freeali.files.wordpress.com/2008/09/hyper_links_anon.png?w=338h=283 Prefuse and Birdeye used to, but they havent been supported/maintained in over a year and have some scaling issues. Thanks in

Re: [flexcoders] Re: Could not resolve * to a component implementation.

2010-07-27 Thread Brian J. Ackermann
So, its a class, even thought it doesn't declare a class inside the text? -- Brian J. Ackermann brian.ackerm...@gmail.com 952.373.1626 -- On Thu, Jul 1, 2010 at 10:21 PM, turbo_vb timh...@aol.com wrote: Glad that you were able to

[flexcoders] Generic HTTP Service Object - Help Please!

2010-07-27 Thread sarahnd89
This is a general question - I am trying to create a generic HTTP Service Object that can pull from any file and instantiate actions without creating many different service objects. I haven't been able to find any references online, so if someone could point me in the right direction/has any

[flexcoders] Re: PopUpButton with TileList and custom renderer works, but 2 annoyances

2010-07-27 Thread Amy
--- In flexcoders@yahoogroups.com, Alexander alexander.far...@... wrote: Thanks, I don't have warning anymore after I've changed the code. The horizontal scrolling issue seems to be a Flex 3 bug: when I change the width and height, so that there is only a vertical scrollbar - then

[flexcoders] Refresh list with itemRenderer/ComboBox

2010-07-27 Thread Richard Rodseth
I have two scenarios where I have to refresh rows of a list or datagrid because the contents are computed, and one of the inputs to the computation (some meta-information) has changed. In the first (a DataGrid) I just have a labelFunction for one of the columns, and calling refresh() on the

[flexcoders] Re: Could not resolve * to a component implementation.

2010-07-27 Thread turbo_vb
The point is that creating 2 files in the same folder, with the same case-sensitive name, is ambiguous. When you import one of the files into a component, how do you suppose that the compiler would know which one to use? It doesn't matter if its a file or class or interface or whatever. The

Re: [flexcoders] Could not resolve * to a component implementation.

2010-07-27 Thread Amanda Machutta
Hi Brian, How are you refreshing the ArrayCollection? If you are doing something like this: oldArr = newArry; then its not going to work because of the way binding works. If you haven't done it already, try this: oldArr.removeAll(); for(var i:int=0; inewArr.length; i++){

Re: [flexcoders] Could not resolve * to a component implementation.

2010-07-27 Thread Amanda Machutta
ha ignore my reply...went to the wrong post! Not sure how, but noticed it when it came through my mail. Amanda On Wed, Jun 30, 2010 at 9:17 AM, Brian J. Ackermann brian.ackerm...@gmail.com wrote: Hi, I'm a wee bit stuck on this, and was hoping you might have some input to help me. I'm

Re: [flexcoders] Refresh list with itemRenderer/ComboBox

2010-07-27 Thread Amanda Machutta
Hi Richard, How are you refreshing the ArrayCollection? If you are doing something like this: oldArr = newArry; then its not going to work because of the way binding works. If you haven't done it already, try this: oldArr.removeAll(); for(var i:int=0; inewArr.length; i++){

[flexcoders] dynamically create xml issue

2010-07-27 Thread j2me_soul
I want to create a XMLList using e4x grammar like this: var list:XMLList = Region city LA. /city city SF. /city ... /Region; function createList(nodeName:String, city:String):void{ ... ... list += nodeName city / nodeName ; } but the list finally is look like this:

[flexcoders] Re: Grouping Data for AdvancedDataGrid Tree View

2010-07-27 Thread Amy
You can use a custom grouping function, which may give you what you want. Look at the calendar example on flexdiary.blogspot.com for an example of a groupingFunction in action. --- In flexcoders@yahoogroups.com, Cub235 ja...@... wrote: I have an ArrayCollection filled with flat data from a

Re: [flexcoders] Refresh list with itemRenderer/ComboBox

2010-07-27 Thread Richard Rodseth
I'm not re-populating the array. Imagine it's a list of employees, and one of the properties is a job id. When displaying the list, the job title is looked up (eg. by a labelFunction on a DataGridColumn). Now, imagine the job title is edited elsewhere in the application. When we detect this (eg.

Re: [flexcoders] How to detect the decimal point character?

2010-07-27 Thread Alex Harui
Put the character in resource bundles? On 7/27/10 12:21 PM, Nick Middleweek n...@middleweek.co.uk wrote: Hi, I'm doing some custom bits on the Flex 3 NumericStepper and I need to prevent more than decimal point being entered into it's textField. Is there a way to detect the character

Re: [flexcoders] Refresh list with itemRenderer/ComboBox

2010-07-27 Thread Alex Harui
Flex 3.5 has some issues with ComboBox updating. On 7/27/10 4:22 PM, Richard Rodseth rrods...@gmail.com wrote: I have two scenarios where I have to refresh rows of a list or datagrid because the contents are computed, and one of the inputs to the computation (some meta-information) has