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

ANN: Rebol/flash dialect updated

 [1/7] from: oliva:david:seznam:cz at: 8-Apr-2002 20:48


Hello all.. I've uploaded some of the updated dialect files and new examples... check out the new addres: http://oldes.multimedia.cz/swf/ cheers Oldes...

 [2/7] from: brett:codeconscious at: 9-Apr-2002 20:42


I always enjoy having a look at your latest rebol compiled swf. Great work Oldes! Brett.

 [3/7] from: oliva:david:seznam:cz at: 29-Apr-2002 23:49


Hello rebol-list, I've done some imoprtant changes in my Rebol/Flash dialect again - fixed Sprite building recursion bug - add small support to be able compile FlashMX files as well (the Flash MX is mainly improved in the ActionScript so it was not such a problem) There are also some new examples... http://oldes.multimedia.cz/swf/ PS: If someone know specification of the compressed FlashMX files, I would love to know it... Cheers Oldes

 [4/7] from: greggirwin:mindspring at: 30-Apr-2002 8:59


Hi Oldes, << PS: If someone know specification of the compressed FlashMX files, I would love to know it...>> OpenSWF.org spec page says: "Note that although the individual components of a SWF file are compressed, there is no overall compression applied to the .swf file. This makes it possible for a player to process the file structure directly out of RAM without decompressing it. Various elements of the file such as bitmaps, shapes and sounds can be decompressed as they are needed." --Gregg

 [5/7] from: chris:langreiter at: 1-May-2002 0:50


> PS: If someone know specification of the compressed FlashMX files, I > would love to know it...
http://chattyfig.figleaf.com/cgi-bin/ezmlm-cgi?1:mmp:33106 HTHAB, -- Chris

 [6/7] 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....

 [7/7] from: oliva:david:seznam:cz at: 26-Jun-2002 23:43


Hello rebol-list, thanks to Jose and his discovery of the similarity of the Rebol's compress and zlib compression.... I've updated script http://oldes.multimedia.cz/swf/img-to-bll.r (for converting images to Flash bitmaps-loss-less format) so now it's not dependent on other code than Rebol's. BUT...it's not perfect, because I was not using it so much (it's not working with the new Rebol/view yet) Oldes