Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Variable Problem.....

Status
Not open for further replies.

SHARKY99

Programmer
Oct 25, 2001
473
CA
Hi all.

Ok i have a dynamic txt zone named flTue0
and a mc named flTue0mc(i interact with ASP and i'm using 196 of them in my movie)


Code:
if (_root:flTue0 eq "") {
    setProperty ("_root.flTue0mc", _visible, false);
} else {
    setProperty ("_root.flTue0mc", _visible, true);
}

The problem is the first time it works great but then it won't???....

Thanks in advance

Have Fun...Sharky99 >:):O>
 
You do like Flash 4 syntax, don't you!

Not that the following would make this work (oldnewbie + asp = 0!), but you could try:

if (_root.flTue0 == "") {
root.flTue0mc._visible = false;
} else {
root.flTue0mc_visible = true;
}

Maybe the steak made you sleepy! LOL

PS: Je vais moi-même manger à Montréal (je n'y habites pas!) ce soir, mais pas un steak!
Regards,
wink4.gif
ldnewbie
 
Merci OldNewbie...LOL c'est pas le rib de St-Hubert BBQ
c'est tout simplement parce que j'avais essayé les autres manières avant, mais, sans succès....

Je suis en stage à l'université de Montréal (je fini vendredi but i'll keep hanging around Tek-Tips)


Try it yourself...it's weird???


a+

Have Fun...Sharky99 >:):O>
 
Veux-tu dire que ça fonctionne maintenant?
Si oui, et si c'est grâce à moi, ça mériterait une étoile non?

Bon week-end!
wink4.gif
ldnewbie
 
LOL non ça ne fonctionne pas....:-(

C'est pour que tu vois ce que je veus dire...;o)

Have Fun...Sharky99 >:):O>


Bon week-end à toi aussi A+
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top