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 »