r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[Rebol/Flash dialect] content related to Rebol/Flash dialect

Oldes
17-Mar-2006
[164x2]
I've just updated the dialect to be able override the default settings 
for maximum recursion depth and ActionScript time-out: http://box.lebeda.ws/~hmm/rswf/index.php?example=162
james: the elasticboy is not my flash file! it's just a test if it's 
possible to download movie from other domain.
james_nak
20-Mar-2006
[166]
Yes, but it's still funny. Keep up th egood work.
Oldes
21-Mar-2006
[167x5]
I'm just looking what's new with Flash 8.5 (beta) http://labs.macromedia.com
ech, for the first look I don't like it. For example this card game 
(Klondike) http://www.darronschall.com/playground/klondike3.swfhas 
229663
(bytes) And don't see any reason, why it requires Flash 8.5  - it 
can be done in Flash 4
And you must have a Flex Builder which has 112MB = must be all the 
industrial standards so huge?
Hm, ActionScript 3.0 has new datatype - unsigned integer
Oldes
22-Mar-2006
[172]
New site made in Rebol/Flash dialect:   http://bonboniere.miss3.cz/
Maxim
22-Mar-2006
[173]
very nice!
[unknown: 5]
22-Mar-2006
[174]
Ditto!
james_nak
22-Mar-2006
[175x2]
Very cool.
Now, Oldes, when are we going to see how you do all that magic for 
the websites? :^ )
Thør
2-Apr-2006
[177]
initial sync...
Oldes
8-Jun-2007
[178]
New site made in Rebol/Flash dialect http://www.miss3.cz/(still 
requires some improvements)
Pekr
8-Jun-2007
[179]
Nice one ...
Chris
8-Jun-2007
[180]
I like the way the pictures rearrange when you resize the window...
[unknown: 9]
8-Jun-2007
[181x2]
Interesting........................there is a look to photos taken 
in Europe (mostly East Europe) which is really noticeable in these 
photos.


Like someone set up one very big light, and had 10 minutes to shoot 
everything…very odd.  They did this in America about 30 years ago.
Oops, sory, I guess we should be admiring the code, not the photos 
LOL
james_nak
8-Jun-2007
[183]
Excellent.
Cyphre
16-Jun-2007
[184]
On photos: It is always amazing to see how all the  'mode trends' 
& 'art' are recycling. :)
Oldes
13-Sep-2007
[185x2]
New version (2.0.0) of Rebol/Flash dialect (RSWF) is available here: 
http://box.lebeda.ws/~hmm/rswf/(the page was down, but now running 
again)
uncompressed version of the dialect is here: http://box.lebeda.ws/~hmm/rswf/rswf_2.0.0.r
Graham
13-Sep-2007
[187]
What about silverlight ?  :)
Oldes
13-Sep-2007
[188x2]
there is still a lot of things to do (for example usage of Func2 
action tag is not finished yet, but this is the version of the dialect 
I used to compile the flash site above and I was also able to compile 
all the old examples (except one) Some of them with a little code 
changes.
what's with silverlight?
Graham
13-Sep-2007
[190]
Isn't that the MS version flash ?
Oldes
13-Sep-2007
[191x4]
I still have a lot of things to imrove on my Flash compiler.. I don't 
want to play with some XML toy which can need ages to be available 
on so many computers as Flash is now
(ok, you can use c# to create silverlight apps, but anyway... I don't 
believe, it will took off soon)
Anyway.. the main reason to rewrite the actions parser was, that 
everything was hardcoded, now it first translates actions into instructions, 
which are compiled on second pass... so it's now possible to better 
dubug the compilers results... for example:

do http://box.lebeda.ws/~hmm/rswf/rswf_latest.r
>> acompiler/translate [a: 1 + 2 + b]
== [["a" 1 2 aAdd "b" aGetVariable aAdd aSetVariable]]
>> compile-actions [a: 1 + 2 + b]
== #{960D0000610007010000000702000000479603000062001C471D}
>> rswf/parse-ActionRecord compile-actions [a: 1 + 2 + b]
     aPush ["a" 1 2]
     aAdd2 #{47}
     aPush ["b"]
     aGetVariable #{1C}
     aAdd2 #{47}
     aSetVariable #{1D}
Pekr
13-Sep-2007
[195]
Oldes - what is the real purpose of your dialect? Is it just for 
you, who likes REBOL coding? I mean - do you think that eventual 
Flash "programmer" could find such way of creating Flash stuff useful?
Oldes
13-Sep-2007
[196]
I find it useful and that's enough.
Pekr
13-Sep-2007
[197]
I did not want to offend you. I never worked with Flash, so my question 
was just curiousity, if creating Flash stuff that way could be usefull 
outside REBOL community, or would 99% ppl prefer visual IDE for such 
purpose?
Oldes
13-Sep-2007
[198x2]
I would like to create something like a rebol/flash vid in a future. 
and what I can say is, that I don't like the visual IDE too much 
for coding. All the actions on different frames and in different 
sprites.
And it's always good to know, how something internally works. That's 
what I'm doing - learning.
Will
13-Sep-2007
[200]
Thank you Oldes! I really would like to learn using your dialect! 
I hate Adobe IDE as well ;-)
Oldes
13-Sep-2007
[201]
for example now.. I've found, that there is one tag I was not aware 
of - 35 ( DefineBitsJPEG3 ) which is JPG compressed image with additional 
alpha channel.
DanielSz
13-Sep-2007
[202x2]
Oldes' dialect  is something I always wanted to study, but never 
managed. Adobe's products are very interesting as well to study, 
so I delved more time in learning actionscript directly. Next on 
my list is Flex. But Oldes' dialect is a feat on itself.
Oldes: many developers don't like to code in the Flash visual IDE, 
like you, that's why Adobe came up with Flex. The good news is that 
the SDK is open source.
Oldes
13-Sep-2007
[204]
I know... and I can for example include compiled actionscript using 
the compiler with SDK. Anyway.. maybe I should check more carefully. 
Some scripts seems not to be working, so there is probably still 
something wrong with my compiler.
DanielSz
13-Sep-2007
[205]
You can code and compile on all platforms. If you want the official 
Builder (based on Eclipse, or a an Eclipse plug-in),  then you're 
tied to Windows or the Mac.
Oldes
13-Sep-2007
[206x3]
hm, they are working here but not on the web.. will have to check 
it
it will be just problem with automatic upload because the source 
files are missing as well:/
- missing files uploaded -
james_nak
13-Sep-2007
[209]
Thanks Oldes. It is exciting to know you are still working on this.
Chris
13-Sep-2007
[210]
Petr: It's been a goal of mine to find a place for Rebol/Flash within 
QM.
ReViewer
13-Sep-2007
[211]
I'm glad Oldes still works on this Flash project, I'm sure I'll use 
it in a near future to create cool photo templates :-)
Oldes
16-Sep-2007
[212x2]
Yesterday I started rewriting swf-parser, because the current one 
is from year 2002 and is full of nasty hacks and bad approaches. 
I already have the main part of the new one so I will soon upload 
new version of my dialect which will include it:-)
The main reason I started with this rewriting is to better support 
foreign SWF file importing. So you will be for example able to join 
to SWF files into one.