Archive for June, 2006
Flash 9
Wednesday, June 28th, 2006 by LuisAdobe Flash 9 Public Alpha provides access to the new ActionScript 3.0 language and the ability to publish to the newly-released Flash Player 9.
London Event: Ramones musical
Friday, June 23rd, 2006 by Luis“Gabba Gabba Hey!, the world’s first punk rock musical, takes 18 mini-masterpieces of bliss, longing and despair by seminal New York rockers the RAMONES - including the classics I Wanna Be Sedated, Beat On The Brat, Blitzkrieg Bop, 53rd & 3rd and Sheena Is A Punk Rocker - and weaves them into a postmodern fairy tale about the redeeming power of love. “
The musical is to be performed at KOKO form July 31st to August 5th.
Exhibition: Bill Viola
Wednesday, June 21st, 2006 by LuisYesterday we went to the private view of a major new exhibition from Bill Viola, LOVE/DEATH: The Tristan Project, at Haunch of Venison in London.
I’ve been always a big fan of Viola’s work, and once again, yesterday “I felt in Love” with two of the works exhibited in St. Olave’s College venue, Lover’s Path (2005) and The Fall into Paradise (2005).
The exhibition is showing at Haunch of Venison, London and the former St. Olave’s College, Tooley Street, by Tower Bridge Road, London, SE1 2JR.
From the press release:
Tristan und Isolde is the story of a love so intense and profound that it cannot be contained in the material bodies of the lovers. In order to fully realise their love, Tristan and Isolde must ultimately transcend life itself
Related Links:
Mac Book accelerator as gaming interface
Tuesday, June 20th, 2006 by Carsten Schneider(from lifehacker.com)
+Teamgeist, -Design
Monday, June 19th, 2006 by Carsten SchneiderLooking so much better: the “Tango”. A history of the official World Cup balls here.
Organize your desktop
Sunday, June 18th, 2006 by LuisTwo different ways of organize objects on your desktop:
BumpTop Prototype:
BumpTop Prototype by Anand Agarawala and Ravin Balakrishnan. Keepin’ it Real: Pushing the Desktop Metaphor with Physics, Piles and the Pen. (See video demonstration here)
Update, this link seems to be down. Here’s the video on YouTube.
SphereXP:
The SphereXP is a 3D desktop replacement for Microsoft Windows. Taking the known concept of three-dimensional desktops to its own level.(See video demonstration here)
Saturday Links
Saturday, June 17th, 2006 by LuisPixelsumo Blog:
Pixelsumo is a site devoted to sonic art, audiovisual fusion, physical interaction, open source technologies, hacking video game culture, responsive environments & installations.
Modern Mechanix Blog:
Modern Mechanix, Yesterday’s tomorrow, today. A site filled with an odd selection of vintage B-list advertisements and articles.
EnBW Image Movie
Friday, June 16th, 2006 by Carsten SchneiderA co-production between Less Rain, As:If Film Matters, Bionic Systems, and E-Motion (Stuttgart), for Energie Baden-Württemberg, one of Germany’s largest electric utilities companies.
Flash: Full Screen Video
Thursday, June 15th, 2006 by Luis[UPDATE:]
Flash: Full-Screen Mode
Flash full-screen mode and Flash Player Update 3 Beta 1 (build 9.0.60.120)
This is just an attempt to create a full screen Flash Video piece (original video size 360 x 204), trying to keep a decent quality by using Video.smoothing property
You can see the result here: Full Screen FLV.
- Stage.align = "TL";
- Stage.scaleMode = "noScale";
- Stage.showMenu = false;
- var timeline:MovieClip = this;
- var _minW:Number = 360;
- var _minH:Number = 204;
- var video_container:MovieClip = timeline.attachMovie ('video_container', 'video_container', timeline.getNextHighestDepth ());
- function onResize ()
- {
- var scaleY:Number = Math.round (100 * (Stage.height) / _minH);
- var scaleX:Number = Math.round (100 * (Stage.width) / _minW);
- var scaleFactor:Number = Math.min (scaleY, scaleX);
- if (scaleFactor> 100) video_container._xscale = video_container._yscale = scaleFactor;
- video_container._x = Math.round ((Stage.width / 2) - (video_container._width / 2));
- video_container._y = Math.round ((Stage.height / 2) - (video_container._height / 2));
- }
- var connection_nc:NetConnection = new NetConnection ();
- connection_nc.connect (null);
- var stream_ns:NetStream = new NetStream (connection_nc);
- video_container.my_video.attachVideo (stream_ns);
- video_container.my_video.smoothing = true;
- stream_ns.play ("riding_giants_m480[1].flv");
- Stage.addListener (this);
- onResize ();
You can download the source files here. (The video is not included)
Related Links:
- Full Screen Flash Video - ah yeah, by Stefan (FlashComGuru).
Flash and Ajax History Support in Safari?
Wednesday, June 14th, 2006 by LuisDavid Bloom has figured out a way to have fragment identifier history in Safari.
Just a Safari fragment identifier history demo
Related Posts:
Flash: tabIndex and IE workaround
Tuesday, June 13th, 2006 by LuisProblem:
In Internet Explorer after the last tabIndex, focus goes to the browser address bar.
Solution:
An easy workaround is to create an empty MovieClip which receives keyboard focus and automatically gives focus to the first selectable (editable) text field, button, or movie clip.
Example:
[flash]http://www.blog.lessrain.com/wp-content/upload/test_01.swf,250,100[/flash]
- import mx.utils.Delegate;
- var timeline:MovieClip = this;
- var myformat:TextFormat = new TextFormat ();
- myformat.font = "Verdana";
- myformat.size = 10;
- var tf1:TextField = timeline.createTextField ("tf1", this.getNextHighestDepth (), 10, 10, 200, 18);
- tf1.type = "input";
- tf1.selectable = true;
- tf1.border = true;
- tf1.setTextFormat (myformat);
- var tf2:TextField = timeline.createTextField ("tf2", this.getNextHighestDepth (), 10, 40, 200, 18);
- tf2.type = "input";
- tf2.selectable = true;
- tf2.border = true;
- tf2.setTextFormat (myformat);
- tf1.tabIndex = 0;
- tf2.tabIndex = 1;
- var tabHackMC:MovieClip = timeline.createEmptyMovieClip ("tabHackMC", timeline.getNextHighestDepth ());
- tabHackMC.tabIndex = 2;
- tabHackMC.onSetFocus = Delegate.create (this, focusLast);
- function focusLast ():Void
- {
- Selection.setFocus ("timeline.tf1");
- }






