Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[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....