Sheets les 1 en 2 Visualizing information in Flash

11 months ago | in Actionscript 3, School | No Comments »

[Dutch] Ik geef momenteel 3 lessen Flash voor de minor Visualizing information hierin laat ik de studenten ervaren hoe je dynamische infographics kan maken met behulp van Flash. Dit zijn de sheets die ik gister gebruikt heb en de sheets van vorige week.

Screen shot 2009-10-08 at 14.36.59

Screen shot 2009-10-08 at 14.37.07

Slice images with a Matrix

1 year, 4 months ago | Tags: , , , , in Actionscript 3, Code, Flex, Gadgets, My work, School, Web | No Comments »

For my current project I needed something to slice an image easily, first I tried to slice the image with a mask, but I soon found out that this much heavier than my current solution.

Below is the end result I needed to have (the triangle is a big mask).Lukx Image Slice Example

// image = a MovieClip with an image
 
// upper part
var upperBitmapData:BitmapData = new BitmapData(image.width,image.height / 2);
upperBitmapData.draw(image);
 
mUpperBitmap = new Bitmap(upperBitmapData);
addChild(mUpperBitmap);
 
//lowerpart
var lowerMatrix:Matrix = new Matrix();
lowerMatrix.ty = -(image.height / 2); 
 
var lowerBitmapData:BitmapData = new BitmapData(image.width,image.height / 2);
lowerBitmapData.draw(image,lowerMatrix);
 
mLowerBitmap = new Bitmap(lowerBitmapData);
mLowerBitmap.y = ContentClip.MASK_HEIGHT / 2;
addChild(mLowerBitmap);
 
image = null;

Multitouch project klaar!

2 years, 2 months ago | in Actionscript 3, Flash, My work, School | 6 Comments »

Afgelopen woensdag was de presentatie van het multitouch project dat ik als afstudeer project heb gemaakt samen met Ico Davids.

Hierbij de film die we gebruikt hebben in de presentatie.

Brainstorm applicatie work in progress…

2 years, 3 months ago | Tags: , , in Actionscript 3, Flash, School | No Comments »

Even een korte update van de brainstorm applicatie…

De applicatie haalt nu al externe data op van Google, Wikipedia en Google Sets. Deze data is te zien in de wolkjes die verschijnen achter de tekstblokjes. Als je klikt op een woord in een wolk wordt dit een nieuw woord in de brainstorm.

De data komt uit een mijzelf gemaakt php script, het script is nog niet helemaal klaar maar hier kan een voorbeeld van de XML output bekeken worden. (download hier)

Project update, het ontwerp van de tafel

2 years, 3 months ago | Tags: in My work, School | No Comments »

Hierbij de eerste schets van de multi-touch tafel die ik ga bouwen met Ico Davids.

Schets Tafel 1

« Older Entries