This year I got invited to give a talk at FFK09. I´ll speak about developing Filters- and Effects with Flash and of course Pixel Bender. So guess what, it´s all about blobs, slimeballs, metaballs, shaders and the like. Well, I´m very curious to show lot´s of my unpresented stuff!
See you.
Posted in:
Pixel Bender, Astro, Flash, Actionscript2, Actionscript3
by
frank reitberger /
2 Comments
Anymotion just released a jump´n´run game wich was mainly developed by Anymotion´s trainees. As far as I can see it´s a solid piece of work, entertains a few minutes and additionally, you can apply yourself for an apprenticeship place at Anymotion.
Come on - let´s play!

Posted in:
Actionscript2
by
frank reitberger /
No Comments
Because i always wanted to have an api that easily puts dynamically generated text into a burning environment i created this little snippet called flaming text-thrower.

Type in your text, press enter, and see it shimmer away. Have a look…
Posted in:
Actionscript2
by
frank reitberger /
No Comments
Just a quick scripted 3D spinning cube with some filters i made a view month ago…
>> Launch.
Posted in:
Actionscript2
by
frank reitberger /
2 Comments
Things look so much better with math:
>> Motion Rings
Behind the scenes:
onEnterFrame = function() {
var p:Number = 51;
while(p>0) {
p–;
obj_array[p].x = 250 + 90 * Math.sin(zIndex + 0.1257 * p);
obj_array[p].y = 100 + 90 * Math.cos(zIndex + 0.1257 * p);
bmp.setPixel32( obj_array[p].x , obj_array[p].y , 0xffffffff );
}
var p:Number = 101;
while(p>51) {
p–;
obj_array[p].y = 100 + 90*Math.cos(0.1257*p)*Math.sin(zIndex);
bmp.setPixel32( obj_array[p].x , obj_array[p].y , 0xffffffff );
}
var p:Number = 151;
while(p>101) {
p–;
obj_array[p].x = 250 + 90*Math.sin(0.1257*p)*Math.sin(zIndex);
bmp.setPixel32( obj_array[p].x , obj_array[p].y , 0xffffffff );
}
zIndex = zIndex - 0.02;
}
Posted in:
Actionscript2
by
frank reitberger /
No Comments