Street Moffett Vs. Ramp Moffett (Round Two)

November 2nd, 2009

Matt Moffett is one of those all terrain skateboarders that can take you out in a game of skate. I decided the only fair competitor to Matt is himself. So lets how Street Moffett does against Ramp Moffett.


Round One went to ramp Moffett. Lets see if street Moffett can make a come back for round two.


Here is round one, vote in the comments below and pass the link on to a friend.

Street Moffett




Ramp Moffett

Watch Matt Moffett Skateboarding in Sports  |  View More Free Videos Online at Veoh.com

Street Moffett Vs. Ramp Moffett (Round One)

October 27th, 2009

Matt Moffett is one of those all terrain skateboarders that can take you out in a game of skate. I decided the only fair competitor to Matt is himself. So lets how Street Moffett does against Ramp Moffett.


Here is round one, vote in the comments below and pass the link on to a friend.

On the left Ramp Moffett

On the right Street Moffett




That was round one, leave your vote in the comments and pass the link on to a friend.

Rune Glifburg Video

October 26th, 2009

No fault to Rune but this footage was never used. I guess I should've wiped my lens clean before shooting into the sun.


Watch Rune Glifberg Skateboarding in Sports  |  View More Free Videos Online at Veoh.com


Watch Rune Glifberg Skateboarding 2 in Sports  |  View More Free Videos Online at Veoh.com

Neil Heddings at the Clinton Keith Pool

October 24th, 2009

I probably shot this video of Neil Heddings in the Clinton Keith pool around 2002. Since then this video was nothing but a bunch of ones and zeros taking up space on my LaCie hard drive. I though it was about time to share these bytes with Veoh and the rest of the world. Enjoy!




Watch Neil Heddings skateboarding in Sports  |  View More Free Videos Online at Veoh.com


Watch Neil Heddings in Sports  |  View More Free Videos Online at Veoh.com

How to add a click tag to flash banner ads

August 3rd, 2009

DoubleClick and other ad servers often embed Flash movies with the click through url as a flashvar named "clickTag". Here is the code in ActionScript 2.0 and 3.0 to use the clickTag flashVar.

ActionScript 2.0

 
on (release) {
    var url:String = "";
    url = _level0.clickTag || _level0.ClickTag || "";
    getURL(url, "_blank");
}
 

ActionScript 3.0

 
var _clickTag:String = "";
if(stage.root.loaderInfo.parameters.clickTag) {
     _clickTag = stage.root.loaderInfo.parameters.clickTag;
}
private function handle_btnClick(e:MouseEvent):void {
     ExternalInterface.call("window.parent.open", _clickTag);
} 
 
myButton.addEventListener(MouseEvent.CLICK, handle_btnClick);
 

Test your swf by adding the clickTag flashVar to your embed code.

 
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="300" height="250" id="300x250_standard" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="allowFullScreen" value="false" /><param name="flashVars" value="clickTag=http://shrelp.com" /><param name="movie" value="300x250_standard.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><embed src="300x250_standard.swf" quality="high" bgcolor="#000000" width="300" height="250" name="300x250_standard" align="middle" allowScriptAccess="sameDomain"
	 allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" flashVars="clickTag=http://ss.jonathanspooner.com" />
	</object>