[REBOL] ANN: Rebol/flash dialect updated
From: oliva:david:seznam:cz at: 29-May-2002 1:50
Hello rebol-list, I've fixed bug in the setting words in the Action parser. Now is possible to do multiple value settings at once as we know it from Rebol: info: movie.sprite1._x: movie._sprite2._y: random 500 what is same as this code in the ActionScript: info = random 500; movie.sprite1._x = info; movie.sprite2._y = info; ....and some other fixes....