Categories
Design Urban papercraft

Book Launch and Paper Toy Art Show – Cafe Pause – Tokyo

Urban Paper book has generated another art show, this time in Tokyo!

Urban Paper Poster/Papertoy
Urban Paper Poster/Papertoy

It will be at Café Pause in Ikebukuro and will run from Sept. 7th to the 20th.

Since not everyone who was in the book will be in the show, this is final list of who will be showing:

Jack Hankins
Maarten Janssens
Kenn Munk
Sjors Trimbach
Ringo Krumbiegel
Ben O’Brien
LouLou
Christopher Bonnettte
Nick Knite
Matthew Hawkins
Matthijs Kamstra (me 🙂 )
Dolly Oblong
Josh McKible

This show is setup by Josh McKible that most people will know as Nanibird.

He create a poster that also is a papertoy, and you can download it
here (save link as)

Urban Paper book Poster-papertoy front
Urban Paper book Poster-papertoy front

Read more here

Categories
AS3 Flash

My first AIR app: SWF2GIF-banner – part 1

Sometimes, and I’m not very fond of them, I need to make banners…..
The animation part is not so bad, but making the different sizes…. that can be a drag.
And after you made the SWF banners, you also need to make the animation in GIF.

This is how I use to do it:

  1. make the SWF banner
  2. embed it in a html page with a background color that is not in the banner itself (a border around the SWF banner helps)
  3. make snapshots of the animation
  4. open photoshop >> (I used a action for this part….)
  5. place all the images in one document
  6. cut the browser from the screenshot
  7. select the background-color reverse the selection and cut
  8. make a animation from all the layers (end photoshop action)
  9. save

I have never made an AIR application but I think that it should be possible to make a SWF2GIF converter in AIR.

Stuff what I need to find out:

  • browse for a file
  • load that file into air
  • take snapshots of the animation
  • controle the frame rate of the animation
  • make a animated gif
  • save everything
  • etc.

Lets start with some basic:
I’m still working on CS3, and it seems that AIR default is installed with CS4
Installing the Adobe AIR update for Flash CS3

English: http://help.adobe.com/en_US/AIR/1.5/devappsflash/WS5b3ccc516d4fbf351e63e3d118666ade46-7fc3.html
Dutch: http://help.adobe.com/nl_NL/AIR/1.5/devappsflash/WS5b3ccc516d4fbf351e63e3d118666ade46-7fc3.html

You can also use FlashDevelop 3.0.1, AIR is also installed with that program and in combination with Flex sdk you don’t even need Flash.

Because I’m not finished with it (I will only work on it when I have to build banners) I will post now and then some parts of the code.

For some reason I couldn’t find the code to load SWF into AIR using “browse”.

[as light=”false” wraplines=”true”]
private function openSwfFile(e:MouseEvent = null):void
{
var imagesFilter:FileFilter = new FileFilter("Flash SWF", "*.swf");
myFile = new File();
myFile.addEventListener(Event.SELECT, selectHandler);
myFile.browseForOpen("Open", [imagesFilter]);
}

private function selectHandler(event:Event):void
{
myFile.removeEventListener(Event.SELECT, selectHandler);
loadSWF(myFile.url);
}

private function loadSWF(inName:String):void
{
trace( "Main.loadSWF > inName : " + inName );
mLoader = new Loader();
mLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoaderComplete);
mLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onErrorComplete);
mLoader.load(new URLRequest(inName));
}
private function onLoaderComplete(e:Event):void { startOnEnterFrameHandler(); }
private function onErrorComplete(e:IOErrorEvent):void { trace( "Main.onErrorComplete > e : " + e ); }

private function startOnEnterFrameHandler():void
{
_movie.addChild(mLoader);
// _movie.addEventListener(Event.ENTER_FRAME , onEnterFrameHandler);
}
[/as]
just use a button to activate.

I know the code is not complete… and that some classes have strange names… it’s work in progress.

Categories
Design Urban papercraft

Urban paper show – Lo Slungg

Saturday August 1st the gallery SUBWALK in Arnhem, the Netherlands opened ‘URBAN PAPER’: book launch + paper toys art show.
And it was awesome!!
If you missed it, you missed something special. (Read more about the show)

I liked it because I got to meet : LOULOU / MARSHALL ALEXANDER / MAARTEN JANSSENS / MATTHIJS KAMSTRA / RINGO KRUMBIEGEL / DOLLY OBLONG en SJORS TRIMBACH.
and a special appearance NICK KNITE.

Nice to meet them all, it was very educational (need to have better business cards and a papertoy which I can sell) and very inspiring. That was what I hoped for: get good energy to create even better stuff.

I had two new paper toys to show:Lo Slungg and NOISSGrumm.

Today I present Lo Slungg

Lo Slungg papertoy
Lo Slungg papertoy

I don’t have a logo for the little fellow yet, no instruction, it’s not finished for the public. So you can’t download it here yet 🙁 .
But that will happen soon enough, and if you can’t wait: drop a line in the comments and I will send you the file as-it-is. 😀

My photo’s (flickr-set) about the exhibit in Subwalk can be found here:
http://www.flickr.com/photos/matthijskamstra/sets/72157621946708500/
But there are more set to be found:
http://www.flickr.com/photos/funkfood/sets/72157621795665281/
http://www.flickr.com/photos/marshallalexander/sets/72157621830735865/
http://www.flickr.com/photos/3eyedbear/sets/72157621827191065/
http://www.flickr.com/photos/sjorstrimbach/sets/72157621946038528/