Hier wird nach dem Satz des Pythagoras der Abstand zweier Movieclips errechnet. Die beiden Parameter der Funktion abstand() erfordern 2 Movieclips. Zurückgegeben wird der Abstand der beiden Movieclips. In der Funktion wird bei a der horizontale Abstand der Movieclips errechnet b ist vertikale Abstand c ist der Abstand, welcher von der Funktion zurückgegeben wird.
function abstand(mc1, mc2) { var a = mc1.x - mc2.x; var b = mc1.y - mc2.y; var c = Math.sqrt(a * a, b * b); return c; } this.anzeige.text = abstand(this.p1, this.p2);