Archive for October, 2006

The Invasion of Thunderbolt Pagoda

Tuesday, October 31st, 2006 by Vassilios

Ira Cohen’s landmark 1968 film, “The Invasion of Thunderbolt Pagoda,” is out now on DVD via Arthur Magazine. Includes rare appearances by Angus MacLise, the first drummer of the Velvet Underground, and minimalist drone pioneer Tony Conrad. They were both members of the “Theater of Eternal Music” or the “Dream Syndicate”, Fluxus’ house band in NY in the mid sixties, along La Monte Young, Marian Zazeela & John Cale. The Music is by Angus MacLise.

Castle Magazine 8: Robots

Thursday, October 26th, 2006 by Carsten Schneider

www.castlemagazine.de

Flash: Cast to Array with MTASC

Friday, October 20th, 2006 by Thomas

Just had some new insight on the Cast to Array problem I had posted a while ago.

For the Flash IDE compiler the following 3 lines are synonymous, i.e. creating an Array with one object in it (resulting in the problem I had in my earlier post):

Actionscript:
  1. var a:Array = Array({x:1});
  2. var b:Array = [{x:1}];
  3. var c:Array = new Array( {x:1});


Not for MTASC though. MTASC seems to interpret Array() as a cast operator instead of a global conversion function. Can be tricky to debug, because for FDT and MTASC Array({x:1}) is legal syntax, namely a cast operation. They don't throw an error, but they don't create an Array either. If you have more than one element they do complain. Array(1,2,3) is illegal syntax for FDT and MTASC.

The following example class would behave differently in swf's compiled with MTASC or the Flash IDE. Which strengthens my belief that the Array() operator should better not be used at all.....

Actionscript:
  1. class ArrayTest
  2. {
  3.  
  4.     public function ArrayTest()
  5.     {
  6.         testArray(Array({x:1}));
  7.         // Flash: Array.length:  1
  8.         // MTASC: Array.length:  undefined
  9.    
  10.         testArray([ {x:1} ]);
  11.         // Both: Array.length:  1
  12.    
  13.         testArray(new Array( {x:1} ));
  14.         // Both: Array.length:  1
  15.     }
  16.  
  17.     private function testArray(ar:Array):Void
  18.     {
  19.         trace("Array.length: "+ar.length);
  20.     }
  21. }


Stuck On Me

Friday, October 20th, 2006 by Luis

Less Rain created some buttons for the Stuck On Me exhibition - now in Berlin, last year in London.

Stuck On Me

Tomorrow is the last day! Hurry up and see them at Galerie Walden Kunstausstellungen, Kastanienallee 86, 10435 Berlin, Prenzlauer Berg 12.10.06 – 21.10.06, open daily 2 - 8 PM.

Read the rest of this entry »

More on Interaction…

Saturday, October 7th, 2006 by Luis

Multi-touch sensing enables a user to interact with a system with more than one finger at a time, as in chording and bi-manual operations.

Multi-Touch Interaction Research



An experiment aimed at providing the experience of the Minority Report interface. But without gloves.

Naturalinteraction



See more examples in Pixelsumo.

Mit Sketching

Friday, October 6th, 2006 by Vassilios

This is amazing interface stuff from the MIT Media Lab, which has always been at the forefront of interaction design. I would certainly go back to school if they had one of this, plus a variation of the brilliant Messa Di Voce installation / performance that Golan Levin and Zach Lieberman did in 2003.

Flash: Full-Screen Mode

Thursday, October 5th, 2006 by Luis

Full-screen mode is now supported in both the stand-alone player and the browser players.

The full-screen mode in Flash Player is initiated through ActionScript and can be terminated through ActionScript, keyboard shortcuts, or by the user switching focus to another window.

Read more in Adobe Labs: Flash Player:9:Update:Full-Screen Mode

Click here to see an example (right click to enable and disable full-screen mode).

You must have version 9,0,18,60 or greater of Flash Player.

Related Posts:

Mr. CityMen

Sunday, October 1st, 2006 by Torsten

Mr. Dreamer by Eric Lerner, 2006

Click on Mr. Dreamer for some beautiful compositing of video and animation.

Vote for him on aniboom.