RE: [Flashcoders] Close all brances in tree component

2006-09-14 Thread Mark Mulhollam
As suggested, resetting your dataProvider to whatever you started with is fast.
I use this  :

myTree.dataProvider = myTreeDP.firstChild;

Mark Mulhollam

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Lieven
Cardoen
Sent: Tuesday, September 12, 2006 8:55 AM
To: flashcoders@chattyfig.figleaf.com
Subject: [Flashcoders] Close all brances in tree component


Does anybody have a function to close all branches in tree
component???(V2 component Flash)



Thx, Lieven Cardoen

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Close all brances in tree component

2006-09-12 Thread Johannes Nel

this is a cheat. reset your dataprovider.

On 9/12/06, Lieven Cardoen [EMAIL PROTECTED] wrote:


Does anybody have a function to close all branches in tree
component???(V2 component Flash)



Thx, Lieven Cardoen

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





--
j:pn
http://www.lennel.org
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Close all brances in tree component

2006-09-12 Thread Éric Thibault

Here is my old code

Good luck!


function CloseAll() {
   var i:Number;
   var j:Number;
   j = this.length;
  
   for(i = 0; i  j; i++) {

   var oNode:XMLNode = this.getTreeNodeAt(i);
   if(oNode != undefined  this.getIsBranch(oNode)) {
   this.CloseNode(oNode);
   i=0;
   j = this.length;
   }   
   }   
}


function CloseNode(oNode:XMLNode) : Void {
  
   if(this.getIsBranch(oNode) and this.getIsOpen(oNode)) {


   if(oNode != this.getTreeNodeAt(0)) { 
   this.setIsOpen(oNode, false);

   }
   if(oNode.childNodes.length  0) {
   var j:Number;
   for(j = 0; j  oNode.childNodes.length; j++) {
   var oSubNode:XMLNode = oNode.childNodes[j];
   this.CloseNode(oSubNode);
   }
   }
   }   
}



Lieven Cardoen a écrit :

Does anybody have a function to close all branches in tree
component???(V2 component Flash)

 


Thx, Lieven Cardoen

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

  



--
===

Éric Thibault
Programmeur analyste
Réseau de valorisation de l'enseignement
Université Laval, pavillon Félix-Antoine Savard
Québec, Canada
Tel.: 656-2131 poste 18015
Courriel : [EMAIL PROTECTED]

===

Avis relatif à la confidentialité / Notice of Confidentiality / Advertencia de 
confidencialidad http://www.rec.ulaval.ca/lce/securite/confidentialite.htm

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Close all brances in tree component

2006-09-12 Thread Éric Thibault

OUPS!

This code is attached to the tree instance!

;-)

A+

Éric Thibault a écrit :

Here is my old code

Good luck!


function CloseAll() {
   var i:Number;
   var j:Number;
   j = this.length;
 for(i = 0; i  j; i++) {
   var oNode:XMLNode = this.getTreeNodeAt(i);
   if(oNode != undefined  this.getIsBranch(oNode)) {
   this.CloseNode(oNode);
   i=0;
   j = this.length;
   }  }   }

function CloseNode(oNode:XMLNode) : Void {
 if(this.getIsBranch(oNode) and this.getIsOpen(oNode)) {

   if(oNode != this.getTreeNodeAt(0)) {
this.setIsOpen(oNode, false);

   }
   if(oNode.childNodes.length  0) {
   var j:Number;
   for(j = 0; j  oNode.childNodes.length; j++) {
   var oSubNode:XMLNode = oNode.childNodes[j];
   this.CloseNode(oSubNode);
   }
   }
   }   }


Lieven Cardoen a écrit :

Does anybody have a function to close all branches in tree
component???(V2 component Flash)

 


Thx, Lieven Cardoen

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

  






--
===

Éric Thibault
Programmeur analyste
Réseau de valorisation de l'enseignement
Université Laval, pavillon Félix-Antoine Savard
Québec, Canada
Tel.: 656-2131 poste 18015
Courriel : [EMAIL PROTECTED]

===

Avis relatif à la confidentialité / Notice of Confidentiality / Advertencia de 
confidencialidad http://www.rec.ulaval.ca/lce/securite/confidentialite.htm

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] Close all brances in tree component

2006-09-12 Thread Lieven Cardoen
Thx.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Éric Thibault
Sent: dinsdag 12 september 2006 16:10
To: Flashcoders mailing list
Subject: Re: [Flashcoders] Close all brances in tree component

OUPS!

This code is attached to the tree instance!

;-)

A+

Éric Thibault a écrit :
 Here is my old code

 Good luck!


 function CloseAll() {
var i:Number;
var j:Number;
j = this.length;
  for(i = 0; i  j; i++) {
var oNode:XMLNode = this.getTreeNodeAt(i);
if(oNode != undefined  this.getIsBranch(oNode)) {
this.CloseNode(oNode);
i=0;
j = this.length;
}  }   }

 function CloseNode(oNode:XMLNode) : Void {
  if(this.getIsBranch(oNode) and this.getIsOpen(oNode)) {

if(oNode != this.getTreeNodeAt(0)) {
 this.setIsOpen(oNode, false);
}
if(oNode.childNodes.length  0) {
var j:Number;
for(j = 0; j  oNode.childNodes.length; j++) {
var oSubNode:XMLNode = oNode.childNodes[j];
this.CloseNode(oSubNode);
}
}
}   }


 Lieven Cardoen a écrit :
 Does anybody have a function to close all branches in tree
 component???(V2 component Flash)

  

 Thx, Lieven Cardoen

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

   




-- 
===

Éric Thibault
Programmeur analyste
Réseau de valorisation de l'enseignement
Université Laval, pavillon Félix-Antoine Savard
Québec, Canada
Tel.: 656-2131 poste 18015
Courriel : [EMAIL PROTECTED]

===

Avis relatif à la confidentialité / Notice of Confidentiality / Advertencia de 
confidencialidad http://www.rec.ulaval.ca/lce/securite/confidentialite.htm

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com