[Flashcoders] Disable all buttons

2006-05-26 Thread Éric Thibault

Hi all

Is there a rapid way to disable all the buttons present in my movie at 
once or do I have to iterate through them all?


like Button.enabled = false;

A+

:-)

--
===

É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] Disable all buttons

2006-05-26 Thread Lewis, Chuck
for (var o in this) {
if (typeof (this[o]) == button){
this[o].enabled=false
}
}

-- Chuck

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Éric Thibault
Sent: Friday, May 26, 2006 10:38 AM
To: Flashcoders mailing list
Subject: [Flashcoders] Disable all buttons

Hi all

Is there a rapid way to disable all the buttons present in my movie at 
once or do I have to iterate through them all?

like Button.enabled = false;

A+

:-)

-- 
===

É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


Re: [Flashcoders] Disable all buttons

2006-05-26 Thread Mick G

One dirty way is to place a one blank button over all your other buttons -
set the btn to usehandCursor to false. This may or may not suit your needs.

On 5/27/06, Éric Thibault [EMAIL PROTECTED] wrote:


Hi all

Is there a rapid way to disable all the buttons present in my movie at
once or do I have to iterate through them all?

like Button.enabled = false;

A+

:-)

--
===

É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


Re: [Flashcoders] Disable all buttons

2006-05-26 Thread eka

Hello ;)

Si tu peux parler français (vu ta signature) cela sera + simple pour moi
pour t'aider :)

Tu peux stocker tous tes boutons avec une référence de chacun d'eux dans un
tableau :

var buttonList = new Array() ;

Ensuite tu ajoutes tes boutons dedans à chaque fois que tu as un bouton sur
ta scène
Le mieux est d'utiliser un attachMovie pour générer ton interface graphique
pour tous les boutons de façon dynamique et du coup tu les places tous dans
cette liste au fur et à mesure (dans le tableau tu as juste des raccourcis
vers les clips... ou bouton)

Ensuite pour activer ou désactiver tes boutons il te reste plus qu'à
parcourir le tableau avec une boucle for par exemple :)

Il est possible de cibler un clip et de parcourir son contenu avec un
for..in également, mais la technique est un peu plus bordellique :)

EKA+ :)



2006/5/26, Éric Thibault [EMAIL PROTECTED]:


Hi all

Is there a rapid way to disable all the buttons present in my movie at
once or do I have to iterate through them all?

like Button.enabled = false;

A+

:-)

--
===

É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

Re: [Flashcoders] Disable all buttons

2006-05-26 Thread Zárate

One of the problems with the big button approach is that the user
could still set the focus to any button with the TAB key. Just keep it
in mind :)

Cheers

On 5/26/06, Mick G [EMAIL PROTECTED] wrote:

One dirty way is to place a one blank button over all your other buttons -
set the btn to usehandCursor to false. This may or may not suit your needs.

On 5/27/06, Éric Thibault [EMAIL PROTECTED] wrote:

 Hi all

 Is there a rapid way to disable all the buttons present in my movie at
 once or do I have to iterate through them all?

 like Button.enabled = false;

 A+

 :-)

 --
 ===

 É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





--
Zárate
___
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] Disable all buttons

2006-05-26 Thread Sönke Rohde
Hi,

Did you try
Button.prototype.enabled = false; 
MovieClip.prototype.enabled = false; 

Cheers,
Sönke

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf 
 Of Éric Thibault
 Sent: Friday, May 26, 2006 4:38 PM
 To: Flashcoders mailing list
 Subject: [Flashcoders] Disable all buttons
 
 Hi all
 
 Is there a rapid way to disable all the buttons present in my 
 movie at 
 once or do I have to iterate through them all?
 
 like Button.enabled = false;
 
 A+
 
 :-)
 
 -- 
 ===
 
 É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


Re: [Flashcoders] Disable all buttons

2006-05-26 Thread Éric Thibault

I'll look at all your answers for what is best for that particular project!

Thanks all!

Have a great weekend

A+ 8-)

Sönke Rohde a écrit :

Hi,

Did you try
Button.prototype.enabled = false; 
MovieClip.prototype.enabled = false; 


Cheers,
Sönke

  

-Original Message-
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] On Behalf 
Of Éric Thibault

Sent: Friday, May 26, 2006 4:38 PM
To: Flashcoders mailing list
Subject: [Flashcoders] Disable all buttons

Hi all

Is there a rapid way to disable all the buttons present in my 
movie at 
once or do I have to iterate through them all?


like Button.enabled = false;

A+

:-)

--
===

É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

  



--
===

É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