Archive for December, 2005
Readymech Papercraft
Tuesday, December 20th, 2005 by Carsten SchneiderThe Wonder Years
Friday, December 16th, 2005 by LuisA few months ago I found some pictures of my early wonder years as skateboarder then I decide to start a collection of classic decks, just to look at the skull in the Powell’s logo brings me amazing memories…
So far this is what I found:
Buttons
Thursday, December 15th, 2005 by Carsten SchneiderWe Love T-Shirts
Thursday, December 15th, 2005 by Carsten SchneiderFlash: SharedObject strange behavior
Wednesday, December 14th, 2005 by LuisIt seems that if you add or change an element of an array which has been stored in a SharedObject, this changes are saved automatically if you don't destroy the shared object before this changes are done.
Assuming that the shared object is locally persistent it makes some sort of sense, but only happens with arrays.
Must be a simple and logical explanation for this (I couln't find any documentation about it and I have my doubts considering this as a bug):
- var items_array:Array = new Array(1, 2, 3);
- var currentUserIsAdmin:Boolean = true;
- var currentUserName:String = "Ramona";
- var my_so:SharedObject = SharedObject.getLocal("superfoo");
- my_so.data.itemNumbers = items_array;
- my_so.data.adminPrivileges = currentUserIsAdmin;
- my_so.data.userName = currentUserName;
- my_so.flush();
- items_array.push(9);
- items_array[0] = 100;
- currentUserName = "Ramones";
- currentUserIsAdmin = false;
- for (var prop in my_so.data) {
- trace(prop+": "+my_so.data[prop]);
- }
- //-------- trace----------
- //userName: Ramona
- //adminPrivileges: true
- //itemNumbers: 100,2,3,9
Exhibition: On the 7th Day
Tuesday, December 13th, 2005 by Carsten SchneiderAnimation: The Supamonks
Tuesday, December 13th, 2005 by Carsten SchneiderThe Supamonks, CGI animation, Quicktime.
Design: Hydro Seventy Four
Tuesday, December 6th, 2005 by Carsten SchneiderGreat portfolio from Joshua Michael Smith: Hydro Seventy Four
Gig: Blame it on Berlin
Tuesday, December 6th, 2005 by Carsten SchneiderWith Bua at the decks:

Friday 9th, Catch 22.
Last Christmas
Friday, December 2nd, 2005 by Carsten SchneiderTo be seen to be believed. Not safe for work.
Firefox 1.5 + JavaScript: onload and the new onpageshow event
Friday, December 2nd, 2005 by ThomasThe new "Back-Forward Cache" feature shipping with Firefox 1.5 might cause problems for pages dependant on the onload event.
Luckily this is well documented: Using Firefox 1.5 caching.
Basically you have to use the new event onpageshow on top of onload, as IE and earlier Firefox releases don't fire onpageshow events. When loading a page "normally" (not-cached), both events are fired, onload first, onpageshow second.
A usefull feature, but I do think it will cause problems on some pages or at least parts of them, especially when HTML, Javascript and Flash are tied in together closely. In my case a Flash movie needed to be notified of the page-load, which it wasn't anymore...







