[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
thanks, thanks and thanks.

[flexcoders] Re: Caching issue in HTTPService

2007-06-07 Thread nhp_ny
--- In flexcoders@yahoogroups.com, Christopher Olsen <[EMAIL PROTECTED]> wrote: > > Anyone ever have an issue where an HTTPService result gets cached? > > I'm use an httpservice to call a script which generates html however > after the time run it's always returning the same results the *data*

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
and also ... another thig that i just saw.. ... selectOnly("someLabel"); can't do that because i don't know the name of the linkbutton label. the linkbuttons get their labels from a xml file. thats why i was passing all those objects to the onClickCanali function.

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Thursday 07 Jun 2007, nhp_ny wrote: > > this is my OnClick function: > > This has an xmlFile argument that isn't set in the inital code you posted, > I'll assume it'

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
the xml file is there. event.currentTarget.getRepeaterItem().xmlfile its the second parameter of the onclickCanali function thanks

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
this is my OnClick function: private function onClickCanali(obj:Object, xmlFile:String):void { var lb:LinkButton; for each (lb in lbCanali) { lb.enabled = true } obj.enabled = false; LoadXmlFile(xmlFile); } as you can see, i

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Thursday 07 Jun 2007, nhp_ny wrote: > > yes ok,... thats what i'm working on too... but when i put the : > > > > > > > > line inside a function, i doesn't wor

[flexcoders] Re: repeater child click event

2007-06-07 Thread nhp_ny
ext="Use the Repeater class to create 9 Button controls in a 3 > by 3 Tile container."/> > > horizontalGap="10" verticalGap="15" > paddingLeft="10" paddingTop="10" paddingBottom="10" > paddingRight=&qu

[flexcoders] Re: repeater child click event

2007-06-06 Thread nhp_ny
--- In flexcoders@yahoogroups.com, "nhp_ny" <[EMAIL PROTECTED]> wrote: > > > > > > > how can i fire the click event of repeater child component myLB[0]? > just to simulate a mouse click on that component. > is it possibile that nobody here kno

[flexcoders] Re: repeater child click event

2007-06-06 Thread nhp_ny
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Tuesday 05 Jun 2007, nhp_ny wrote: > > way... for example... is there a way to let the repeaters first > > child , myLB[0], to be disabled? i tried myLB[0].enabled = false, but > >

[flexcoders] Re: repeater child click event

2007-06-05 Thread nhp_ny
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Tuesday 05 Jun 2007, nhp_ny wrote: > > i need to pass to the onclick function, a linkbutton from the > > repeater list. there are n linkbuttons and i just need to pass the > > first

[flexcoders] Re: repeater child click event

2007-06-05 Thread nhp_ny
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Tuesday 05 Jun 2007, nhp_ny wrote: > > > Err, just call onClick() yourself ? > > but that gives me error > > Firstly, always give the error message, when you just say 'g

[flexcoders] Re: repeater child click event

2007-06-05 Thread nhp_ny
--- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Monday 04 Jun 2007, nhp_ny wrote: > > > > > > > > > > > > how can i fire the click event of repeater child component myLB [0]? > > just to simulate a mous

[flexcoders] repeater child click event

2007-06-04 Thread nhp_ny
how can i fire the click event of repeater child component myLB[0]? just to simulate a mouse click on that component.

[flexcoders] Re: Tree and Array

2007-04-06 Thread nhp_ny
Thanks. i made i little changes to your sample, because having a children arraycollection in class gets the tree control to always display a folder icon. so this is the changed code. Thanks for the kickstart. -- Class Node.as -- package

[flexcoders] Re: Tree and Array

2007-04-05 Thread nhp_ny
___ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of nhp_ny > Sent: Thursday, April 05, 2007 5:17 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Tree and Array > > > > great!! thanks!!! ah!.. 1 more thing... before

[flexcoders] Re: Tree and Array

2007-04-05 Thread nhp_ny
be using is appendChild(). See the docs: > > http://livedocs.adobe.com/flex/201/langref/XML.html > <http://livedocs.adobe.com/flex/201/langref/XML.html> > > Tracy > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMA

[flexcoders] Re: Tree and Array

2007-04-05 Thread nhp_ny
is appendChild(). See the docs: > > http://livedocs.adobe.com/flex/201/langref/XML.html > <http://livedocs.adobe.com/flex/201/langref/XML.html> > > Tracy > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

[flexcoders] Re: Tree and Array

2007-04-04 Thread nhp_ny
r example, > are you assured that a parent will be defined before any of its children > are? > > > > Tracy > > > > ____ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of nhp_ny > Sent: Wednesda

[flexcoders] Re: Tree and Array

2007-04-04 Thread nhp_ny
is there a sample somewhere? can i start from and empty XML? can i add elements and child elements simply putting a parent id ? thanks --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > I would loop over the array and build XML. The Tree likes XML. > > > > Eith

[flexcoders] Re: Tree and Array

2007-04-04 Thread nhp_ny
thanks, but i have already seen all these pages. they all talk about xml lists and collections. nothing about working with arrays. i Know that a tree can also read from an array dataprovider.. so i need to know how to add nodes, branches, elemets , parents or whatever is needed to build a tree