Bonjour, je cherche a savoir ce que signifie cette fonction en action script :
Code :
- onClipEvent (enterFrame)
- {
- ball1locy = this._y + speedy1;
- if (ball1locy > 380 - radiusball1)
- {
- this._y = 380 - radiusball1;
- speedy1 = -speedy1;
- }
- else if (ball1locy < 20 + radiusball1)
- {
- this._y = 20 + radiusball1;
- speedy1 = -speedy1;
- }
- else
- {
- this._y = this._y + speedy1;
- } // end if
- }
- onClipEvent (load)
- {
- speedy1 = 2;
- radiusball1 = this._height / 2;
- }
|
l'aide de flash ne connait ni speedy, ni radiusball ni ball1ocy, sur google j'ai trouvé mais c etait en grec
Si quelqu un pouvait m'aider
Message édité par Dolby le 17-01-2005 à 13:42:17