[flexcoders] Re: Variable width ListItems

2007-03-28 Thread Shaun
I see. I think then that in this case the repeater will be fine. Thanks Alex and Mark. ~Shaun --- In flexcoders@yahoogroups.com, Mark Doberenz [EMAIL PROTECTED] wrote: You put a repeater inside a hbox and set dataprovider of the repeater to what you're using on the list box. It's not

RE: [flexcoders] Accessing Item Renderer in a List.

2007-03-28 Thread Tracy Spratt
Are you updating the ProgressBar in the set data() override function? (or updateDisplayList, I am not sure when to use which.) Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roman Protsiuk Sent: Wednesday, March 28, 2007 9:21 AM

Re: [flexcoders] Is anybody else getting duplicate messages?

2007-03-28 Thread Ben Marchbanks
Yes Yes Yes Doug McCune wrote: I've been getting 2 sometimes 3 copies of many messages. It's quite annoying and this is on top of an already high volume list. On 3/28/07, Cutter (Flex Related) [EMAIL PROTECTED] wrote: Yes, quite a few times today Steve Cutter Blades Adobe Certified

Re: [flexcoders] Global access in AS3

2007-03-28 Thread André Rodrigues Pena
Shaun, Troy saved me though. I was thinking how could I do that without private constructors :) On 3/27/07, shaun etherton [EMAIL PROTECTED] wrote: Troy Gilbert wrote: [snip] That works for me. There's also a technique where you use an internal class (visible only within the AS source

RE: [flexcoders] HTTPService/ArrayCollection/DataGrid/Tree/

2007-03-28 Thread Tracy Spratt
So given that xml, what do you want your tree to look like? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alain Thibodeau Sent: Wednesday, March 28, 2007 8:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] Populating mx:List from xml file

2007-03-28 Thread Thomas Newcomen
I have an xml file with nodes like this: templates label=Short Subject Report data=ShortSubjectReport / I have this as the dataprovider of the mx:List: dataProvider={report_listXML.templates} The list appears to be populating, as I can see the coloring as I hover over the items of the list,

RE: [flexcoders] Populating mx:List from xml file

2007-03-28 Thread Alex Harui
labelField=@label From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Thomas Newcomen Sent: Tuesday, March 27, 2007 7:44 PM To: flex@houseoffusion.com; flexcoders@yahoogroups.com Subject: [flexcoders] Populating mx:List from xml file I have

RE: [flexcoders] Accessing Item Renderer in a List.

2007-03-28 Thread Tim Hoff
For something like this you would want to update the progressBar in the set data override function. But remember to call super.invalidateDisplayList(); in that function to re-render. -TH CYNERGY From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] Setting selectedIndex in Grid not working

2007-03-28 Thread greenfishinwater
I have a grid in which I want to move rows down when a specific button 'Move Down' is clicked. I have this logic working and the row selected does move down for every click on the button. The problem I am having is that I want the row that has been selected and that is moving down to be always

[flexcoders] Re: Accessing Item Renderer in a List.

2007-03-28 Thread Tim Hoff
For something like this you would want to update the ProgressBar in the set data override function. But, remember to call super.invalidateDisplayList(), in that function, to render the changes. -TH CYNERGY Sorry if this comes acros twice. --- In flexcoders@yahoogroups.com, Tracy Spratt

Re: [flexcoders] Is anybody else getting duplicate messages?

2007-03-28 Thread Michael Schmalle
seems like gmail just swallows and gulps... none here. On 3/28/07, Ben Marchbanks [EMAIL PROTECTED] wrote: Yes Yes Yes Doug McCune wrote: I've been getting 2 sometimes 3 copies of many messages. It's quite annoying and this is on top of an already high volume list. On 3/28/07, Cutter

RE: [flexcoders] Is anybody else getting duplicate messages?

2007-03-28 Thread Geoffrey Williams
Yup, yup. This doesn't seem to be the only yahoo group affected either. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul DeCoursey Sent: Wednesday, March 28, 2007 4:40 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Is anybody else getting duplicate

[flexcoders] Re: Is anybody else getting duplicate messages?

2007-03-28 Thread realeyes_jun
I get the digest so the duplication only appears to occur when you get your flexcoders per message, in case that helps with opening a ticket with groups. -Jun --- In flexcoders@yahoogroups.com, Paul DeCoursey [EMAIL PROTECTED] wrote: I've been getting 2 sometimes 3 copies of many messages.

[flexcoders] Re: TextArea htmltext parsing

2007-03-28 Thread jmfillman
Ultimately I'm wanting to find each word to check the spelling, while maintaining the HTML formatting of the TextArea. Using the text would be far easier, but I loose the formatting.

RE: [flexcoders] newbie question: Timer across components..

2007-03-28 Thread Tracy Spratt
If an event bubbles you can listen for it in any ancestor, like Application.application. Look at the docs for the timer event, to se if if bubbles. If it does not, in the timer component, re-dispatch an event, setting the second argument to true, to make it bubble. Tracy

[flexcoders] Re: Is anybody else getting duplicate messages?

2007-03-28 Thread Maury Sword
I believe people are posting messages multiple times. There can be quite a delay between the time a message is posted and it finally appears here on the list. I know I did this at first. Do messages from new members have to be approved by a moderator before they are posted ? After I made

[flexcoders] Re: newbie question: Timer across components..

2007-03-28 Thread iilsley
Thanks for the response .. This is the code that I have ( it works ) but is it the right way to do it :) .. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init() width=100%

Re: [flexcoders] Are Events OK in the MVC (S) pattern

2007-03-28 Thread shaun etherton
Troy Gilbert wrote: On 3/27/07, shaun etherton [EMAIL PROTECTED] wrote: Troy Gilbert wrote: Brett, Events are actually an a pretty fundamental component of an MVC implementation. Events are most often used by the model to notify the view and/or controller of changes (Observer

Re: [flexcoders] Re: newbie question: Timer across components..

2007-03-28 Thread Bjorn Schultheiss
How about this ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute xmlns:ns1=* creationComplete=init() mx:Script ![CDATA[ import flash.utils.Timer; import

[flexcoders] Re: Bad Results referencing local variables in nested loops

2007-03-28 Thread Rod Perkins
Thanks for looking at the problem and suggesting a workaround. - rod --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: I forwarded this to a compiler engineer. He says that it looks like a compiler bug, but he thinks he found a workaround: Don't name the three

[flexcoders] Re: newbie question: Timer across components..

2007-03-28 Thread iilsley
Thank you for responding , interesting but not really what I'm looking for. Your example makes it 'tightly coupled' ( if thats the correct terminology :) ) .. ie. Application relies on comp1 being a child and also having a 'fired' method. The ultimate goal is to have a bunch of 'panels' that

[flexcoders] Re: Creating overlay controls for UIComponents

2007-03-28 Thread Nate Pearson
http://dougmccune.com/blog/2007/02/01/building-a-gantt-chart-component-in-flex/ That might help. I think it is sort of what you're talking about. You will have to dig into the code though. Sorry I can't help you more e than that. --- In flexcoders@yahoogroups.com, pavanpodila [EMAIL

RE: [flexcoders] Connecting two tree views

2007-03-28 Thread Tracy Spratt
Does this work for you if the node node in the rightTree is visible? It does in the sample I just tried. However, if the node you are attempting to expand is not visible (its parent is closed) then the expand does not work. This can be coded around several ways, depending on what you want to

RE: [flexcoders] Setting selectedIndex in Grid not working

2007-03-28 Thread Tracy Spratt
Yes, I just ran into this myself. After you update the dataProvider, you must give Flex/FP time to get the control ready for visual interactions like setting the selectedIndex highlight. Use callLater() to invoke a function that sets the selectedIndex. Pass the index in in the arguments

Re: [flexcoders] Re: newbie question: Timer across components..

2007-03-28 Thread Bjorn Schultheiss
I guess the idea would then be to apply a Front Controller Pattern. On 29/03/2007, at 1:50 PM, iilsley wrote: Thank you for responding , interesting but not really what I'm looking for. Your example makes it 'tightly coupled' ( if thats the correct terminology :) ) .. ie. Application relies

<    1   2