Ciao gens!
Sto studiando uno dei tutorial presenti in Flash-MX.HTML.it;

http://flash-mx.html.it/guide/lista_....asp?idguida=6

Molto utile (per me) non solo per imparare l'AS, ma anche per imparare ad organizzare le idee prima di realizzare un sito minimamente decente. Il problema è che il tutorial è basato su Flash 5!

Qualcuno mi traduce il significato di && e di !
Compaiono ad esempio nello script sottostante e per quanto io con AS sia proprio alle prime armi, non mi sembra siano ancora in uso da Flash MX 2004.

Grazie



onClipEvent (mouseMove) {if (this.hitTest(_root._xmouse, _root._ymouse, false) && !aperto) {if (_currentframe>(_totalframes/2)) {gotoAndPlay (_totalframes-_currentframe);} else {play ();}aperto = true;} else if (!this.hitTest(_root._xmouse, _root._ymouse, false) && aperto) {if (_currentFrame<(_totalFrames/2)) {gotoAndPlay (_totalframes-_currentframe);} else {play ();}aperto = false;}