Graffiti Hall of Fame

This past weekend I visited the Graffiti Hall of Fame in Harlem (106th and Park Avenue) with a friend who shall remain nameless. Overall, pretty cool, but the wall has sadly been tagged with some lower quality stuff. It’s worth a visit, but I think the 5 Pointz in Queens is still a better stop since it’s got a lot more diversity and is a lot bigger.

The Burger Joint

Thanks to the cool folks at FlashCodersNY, I discovered this tucked-away hamburger haven in the ritzy Le Parker Meridien. Its graffiti-decorated walls are a complete contrast to the high-style hotel lobby, and it’s burgers are easily the best in Midtown.
Chimay Cheese

Yup, my favorite beer comes in cheese form. Just like the Belgian monks ale, it’s not cheap, but really good.
WTC Picture Exhibit

A client meeting had me down in the financial district where I took a stroll through Ground Zero to discover an interesting photography exhibit of the twin towers and 9/11. Check it out if you can. Can’t? Then check out the online exhibit.
405 Jazz on Walnut

My trip home this weekend for a wedding gave me the opportunity to check out the newest Jazz club to arrive in Harrisburg, 405 Jazz on Walnut (yes, I’m tempted to offer Web site services).
I was a bit skeptical at first, given that this joint’s run by the same crew behind Sophia’s Seafood (whose service was extremely slow and food subpar on my only visit–the sauce was broken on my entree). However, the vibe of this place was great, the bartender’s martinis were dead-on, and the location was bravely off Harrisburg’s main route of nightlife.
The acoustics aren’t for purists, and that’s fine, since it makes for a nice casual lounge, but my one complaint is that is that the “stage” is too cramped for a bigger act (say, one with a drum set) to perform, and there’s no curtain or subtle entrance; you’re liable to take the attention from the performers if you walk in at the wrong time.
All-in-all, though, at least it’s a nice addition to help diversify the town’s offerings.
Target Menu Items in ActionScript
I don’t often post Actionscript code because it often falls under the “wise men don’t need it, fools won’t heed it†principle (I might be the fool, who knows), but this little bit of code is something that I happen to use fairly often in projects where I want to highlight particular menu items.
Part of the inspiration in posting this is that I’ve recently been going through a previous developer’s code where they tell all of their menu items to do one thing, then single out the selected item to do the opposite afterwards. Instead of explicitly targeting menu items to do things, it’s much cleaner to create an array of the items, make a temporary array of that list, and then target them.
// set up an array of menu items
private var menuArray:Array = new Array(mc1, mc2, mc3);
private function rollOut(id:Number):Void{
// create a temporary array based on menuArray so that we don’t damage the original
var tempArray:Array = menuArray.slice();
// now, pull the menu item we don’t want to affect
tempArray.splice(id, 1);
var len:Number = tempArray.length;
// loop through remaining menu items
for(var i:Number = 0; i
// perform menu item(s) transition here
tempArray[i].doSomething();
}
}
Hopefully this helps someone out there, and if anyone has a recommendation to make it cleaner, I’d love to hear from you.
NetFlix Challenge
In case you missed it, Netflix is offering a $1 million prize to whomever can improve their referral system. With the likes of Dan Shiffman working on a solution, I think I’ll sit this one out.
I never pay much attention to user ratings on rental sites (I usually don’t have to with IMDB and Rotten Tomatoes around), but I wonder if Netflix ever considered taking into account the value of a good director or actor. For instance, I’d probably see any film Tom Hanks or Jared Leto is in, or any film David Fincher or Sam Mendes directs. It reminds me of when I lived in Baltimore and a nearby video store categorized not by genre, but by Director. How cool was that?!
Seriously, though, I wonder if they’d considered users tagging categories. I’d love to see what the top Sci-Fi or Gangster film would be . . .
getURL() locally on CD-ROM with Flash Projector
I recently ran into a quite a bugger while transferring a Flash projector to a CD-ROM. Just like authoring an SWF, I used getURL() to call some local HTML files and a PowerPoint–with no problem running off my hard drive. When I transferred all of these files to a CD-ROM, though, all of the local links got lost. They all started dropping the parent path directory (in this case, the name of the CD and/or drive name). For instance:
file:///Volumes/resources/image_gallery/index.htm
Came out as this:
file:///resources/image_gallery/index.htm
I looked into using an fscommand, but that’s a dead end because it’ll only launch a program and not open a particular file. The real problem? It appears that if you have overrided the default browser on your computer, Flash drops the path. In my case, I have Firefox set on both my Mac and PC. The solution? After searching all over the Web, I came across this script (which I’ve strictly-typed for class use):
/**
* Corrects issue where projector wants default system browser to open local URL.
* @param path String to local file
*/
function buildLink(path:String):Void{
var poslastslash:Number = timeline._url.lastIndexOf(“\\”);
if (poslastslash == -1) {
poslastslash = timeline._url.lastIndexOf(“/”);
}
var folderurl:String = timeline._url.substr(0, poslastslash+1);
var poscolon:Number = folderurl.indexOf(“|”);
if (poscolon<>-1) {
var folderurlstart:String = folderurl.substr(0, poscolon);
var folderurlend:String = folderurl.substr(poscolon+1);
folderurl = folderurlstart+”:”+folderurlend;
}
var targeturl:String = folderurl + path;
getURL(targeturl, “_blank”);
}
Thank you OttoM, whomever you are.
I’m posting this because of how remote the documentation was for me when searching for the problem. Hopefully, it’ll help someone else out.
Beyond Second Photo Exhibit at Midtown Scholar
Just to beat a dead horse, the Midtown Scholar Bookstore in Harrisburg is hosting an exhibit of Beyond Second photography from November 21 to December 30 to benefit Friends of Midtown. We’ve already got quite a few contributors, and I’m looking forward to hopefully meet everyone that’s involved with the site, not to mention try and get more people in the community involved. More info on Beyond Second.
ALDS, Ya’ll!

1 Huge Flag
2 F-18 Hornets
5 hits from Jeter
20+ ejected fans
It was an entertaining night.
About Me
I'm a designer, developer, and teacher based in Harrisburg, Pa. I run Hauck Interactive, Inc.
Categories
Archives
- January 2012
- December 2011
- October 2011
- August 2011
- July 2011
- June 2011
- May 2011
- March 2011
- February 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
