<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Being the adventures of a young man whose principal interests are... &#187; Julian</title>
	<atom:link href="http://juliankussman.com/blog/author/Julian/feed/" rel="self" type="application/rss+xml" />
	<link>http://juliankussman.com/blog</link>
	<description>Advertising, Interactive Art Direction, and usability.</description>
	<lastBuildDate>Mon, 26 Jul 2010 18:08:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>TweetBar &#8211; Safari 5 Extension</title>
		<link>http://juliankussman.com/blog/2010/06/08/tweetbar-safari-5-extension/</link>
		<comments>http://juliankussman.com/blog/2010/06/08/tweetbar-safari-5-extension/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 00:00:10 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Safari 5]]></category>
		<category><![CDATA[Safari Extension]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=107</guid>
		<description><![CDATA[This Extension will place your Twitter feed in a bar in Safari. The first time you run it, Twitter will want your credentials. The extension doesn&#8217;t process these, it goes straight to Twitter. FEATURES Click links in tweets Click @replies &#8230; <a href="http://juliankussman.com/blog/2010/06/08/tweetbar-safari-5-extension/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This Extension will place your Twitter feed in a bar in Safari.<br />
The first time you run it, Twitter will want your credentials. The extension doesn&#8217;t process these, it goes straight to Twitter.<br />
<a href="http://juliankussman.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-14-at-3.42.46-PM.png"><img class="alignnone size-medium wp-image-115" title="Screen-shot-2010-06-14-at-3.42.46-PM" src="http://juliankussman.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-14-at-3.42.46-PM-300x38.png" alt="" width="300" height="38" /></a></p>
<p>FEATURES<br />
Click links in tweets<br />
Click @replies and click author usernames<br />
Auto-updating<br />
Toolbar button to hide/show bar<br />
Only one bar shows in one window, click toolbar button to make that window the active TweetBar window</p>
<p>PLANNED<br />
Preview of twitpic images<br />
Eventually, OAuth with posting/replying/DMs etc.</p>
<p><a href="http://juliankussman.com/TweetBar.safariextz">Download it here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2010/06/08/tweetbar-safari-5-extension/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>AS3 liquid layout class</title>
		<link>http://juliankussman.com/blog/2009/04/08/as3-liquid-layout-class/</link>
		<comments>http://juliankussman.com/blog/2009/04/08/as3-liquid-layout-class/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 01:16:20 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Liquid Layout]]></category>
		<category><![CDATA[Stage]]></category>
		<category><![CDATA[StageAlign]]></category>
		<category><![CDATA[StageALignTool]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=97</guid>
		<description><![CDATA[I&#8217;m sure everyone has needed one of these at one time or another. I just decided to finally get one together for myself. To use, you first call StageAlignTool.init() and pass in the stage, and optionally a minimum width and &#8230; <a href="http://juliankussman.com/blog/2009/04/08/as3-liquid-layout-class/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure everyone has needed one of these at one time or another. I just decided to finally get one together for myself.</p>
<p>To use, you first call StageAlignTool.init() and pass in the stage, and optionally a minimum width and a minimum height (defaults to 1024&#215;768).<br />
Next, you call StageAlignTool.registerLocation() and pass in the displayObject you wish to register, which position you wish it to lock to (StageAlignTool .TL means Top Left, StageAlignTool.MC means Middle Center), and optionally if you want it to stay relative to where it is now (true) or snap to the edge of the stage (false).<br />
The class automatically sets your stage scale mode to NO_SCALE and the stage align to TOP_LEFT. It also expects the display objects you pass it to have their registration points in the top left corner. </p>
<p> <a href='http://juliankussman.com/blog/wp-content/uploads/2009/04/stagealigntool.as'> Download </a></p>
<p>Usage:</p>
<p><code><br />
//StageAlignTool.init(Stage reference[, min width = 1024, min height = 768]);<br />
StageAlignTool.init(stage, 1024, 768);</p>
<p>//StageAlignTool.registerLocation(a DisplayObject, position to lock to[, stay relative to current = false]);<br />
//possible locations are [StageAlignTool.]TL, TC, TR, ML, MC, MR, BL, BC, BR</p>
<p>StageAlignTool.registerLocation(bg, StageAlignTool.MC);<br />
</code></p>
<p>Give it a try and tell me what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2009/04/08/as3-liquid-layout-class/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Barack Obama Rally in St. Louis &#8211; Wallpaper</title>
		<link>http://juliankussman.com/blog/2008/10/20/barack-obama-rally-in-st-louis-wallpaper/</link>
		<comments>http://juliankussman.com/blog/2008/10/20/barack-obama-rally-in-st-louis-wallpaper/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 20:46:50 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Personal Projects]]></category>
		<category><![CDATA[barack]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[rally]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=85</guid>
		<description><![CDATA[Here&#8217;s a little something I whipped up based on a photo I took at the Obama rally on Oct. 18th, 2008]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a little something I whipped up based on a photo I took at the Obama rally on Oct. 18th, 2008</p>
<p><a href="http://juliankussman.com/blog/wp-content/uploads/2008/10/barack2.jpg"><img class="alignnone size-medium wp-image-86" title="barack2" src="http://juliankussman.com/blog/wp-content/uploads/2008/10/barack2-300x187.jpg" alt="" width="300" height="187" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/10/20/barack-obama-rally-in-st-louis-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS3 bitmap mosaic class</title>
		<link>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/</link>
		<comments>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 22:06:39 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Personal Projects]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[bitmap]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[mosaic]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=82</guid>
		<description><![CDATA[This class will allow you to create a pixellated copy of any display object. It allows for varying pixel sizes and caching of rendered pixels so you don&#8217;t have to redraw them every time. mosaic Usage is as follows: var &#8230; <a href="http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This class will allow you to create a pixellated copy of any display object.</p>
<p>It allows for varying pixel sizes and caching of rendered pixels so you don&#8217;t have to redraw them every time.</p>
<p><a href="http://juliankussman.com/blog/wp-content/uploads/2008/10/mosaic.zip">mosaic</a></p>
<p>Usage is as follows:</p>
<p>var myMoz:Mosaic = new Mosaic(yourDisplayObj:DisplayObject, pixelSize:uint, useCache:Boolean);<br />
addChild(myMoz);</p>
<p>or</p>
<p>var myMoz:Mosaic = new Mosaic(yourDisplayObj);<br />
myMoz.pixelSize = 10;<br />
myMoz.render();</p>
<p>Give it a try and let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/10/01/as3-bitmap-mosaic-class/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Whitewave &#8211; Sun Cha website</title>
		<link>http://juliankussman.com/blog/2008/09/08/whitewave-sun-cha-website/</link>
		<comments>http://juliankussman.com/blog/2008/09/08/whitewave-sun-cha-website/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 18:54:33 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[sun cha]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[whitewave]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=57</guid>
		<description><![CDATA[These comps were created for Whitewave&#8217;s Sun Cha brand energy drink. It&#8217;s a natural tea drink that&#8217;s caffeine free so you don&#8217;t get the rush/crash with most other energy drinks. The campaign is titled &#8216;Take back the afternoon&#8217; and the &#8230; <a href="http://juliankussman.com/blog/2008/09/08/whitewave-sun-cha-website/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>These comps were created for Whitewave&#8217;s Sun Cha brand energy drink. It&#8217;s a natural tea drink that&#8217;s caffeine free so you don&#8217;t get the rush/crash with most other energy drinks.<br />
The campaign is titled &#8216;Take back the afternoon&#8217; and the site was built to look like a public rally for those who wish to take back their afternoon.</p>
<p>Interactive Art Director &#8211; Julian Kussman, Copywriter &#8211; Kay Cochran</p>
<p><a href="http://juliankussman.com/blog/wp-content/uploads/2008/08/rally1.jpg"><img class="alignnone size-medium wp-image-58" title="rally1" src="http://juliankussman.com/blog/wp-content/uploads/2008/08/rally1-300x190.jpg" alt="" width="300" height="190" /></a></p>
<p><a href="http://juliankussman.com/blog/wp-content/uploads/2008/08/rally2.jpg"><img class="alignnone size-medium wp-image-59" title="rally2" src="http://juliankussman.com/blog/wp-content/uploads/2008/08/rally2-300x190.jpg" alt="" width="300" height="190" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/09/08/whitewave-sun-cha-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Energizer &#8211; Plan Prepare Protect Weather Widget</title>
		<link>http://juliankussman.com/blog/2008/08/22/energizer-plan-prepare-protect-weather-widget/</link>
		<comments>http://juliankussman.com/blog/2008/08/22/energizer-plan-prepare-protect-weather-widget/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 19:08:59 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Energizer]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=61</guid>
		<description><![CDATA[This is a Desktop Weather Widget that connects to a custom web service and displays weather warnings and information for your area. It find your location automatically and will keep you up to date on the weather. It was created &#8230; <a href="http://juliankussman.com/blog/2008/08/22/energizer-plan-prepare-protect-weather-widget/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is a Desktop Weather Widget that connects to a custom web service and displays weather warnings and information for your area. It find your location automatically and will keep you up to date on the weather. It was created using Adobe AIR and Flash CS3 (AS3).</p>
<p><a href="http://juliankussman.com/blog/wp-content/uploads/2008/08/enrwidget.jpg"><img src="http://juliankussman.com/blog/wp-content/uploads/2008/08/enrwidget-270x300.jpg" alt="" title="enrwidget" width="270" height="300" class="alignnone size-medium wp-image-62" /></a></p>
<p><a href="http://energizer.com/preparedness/Download.aspx">Visit widget download site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/08/22/energizer-plan-prepare-protect-weather-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whitewave &#8211; MiA Control / Mama banner</title>
		<link>http://juliankussman.com/blog/2008/08/22/whitewave-mia-control-mama-banner/</link>
		<comments>http://juliankussman.com/blog/2008/08/22/whitewave-mia-control-mama-banner/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 18:44:13 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[banner]]></category>
		<category><![CDATA[mia]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=55</guid>
		<description><![CDATA[This banner campaign was for MiA Control and MiA Mama, 2 products under the MiA brand name which is a line of dairy drinks aimed at women. Interactive Art director &#8211; Julian Kussman Hello to Schiff Hardin! Who are you? &#8230; <a href="http://juliankussman.com/blog/2008/08/22/whitewave-mia-control-mama-banner/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This banner campaign was for MiA Control and MiA Mama, 2 products under the MiA brand name which is a line of dairy drinks aimed at women.</p>
<p>Interactive Art director &#8211; Julian Kussman</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="250" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="free_300x250" /><param name="bgcolor" value="#ffffff" /><param name="align" value="middle" /><param name="src" value="http://juliankussman.com/blog/wp-content/uploads/2008/08/control-mama_300x250_x1.swf" /><embed type="application/x-shockwave-flash" width="300" height="250" src="http://juliankussman.com/blog/wp-content/uploads/2008/08/control-mama_300x250_x1.swf" align="middle" bgcolor="#ffffff" name="free_300x250"></embed></object></p>
<p>Hello to Schiff Hardin! Who are you? Why is this so interesting to you?</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/08/22/whitewave-mia-control-mama-banner/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Hartford Racing &#8211; Website comp</title>
		<link>http://juliankussman.com/blog/2008/07/24/the-hartfaord-racing-website-comp/</link>
		<comments>http://juliankussman.com/blog/2008/07/24/the-hartfaord-racing-website-comp/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 20:25:42 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Dario Franchitti]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[micro-site]]></category>
		<category><![CDATA[NASCAR]]></category>
		<category><![CDATA[The Hartford]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=41</guid>
		<description><![CDATA[This design was for a micro-site to showcase The Hartford&#8217;s sponsorship of NASCAR driver Dario Franchitti. I used strong brand colors combined with mechanical elements to evoke the exciting nature of NASCAR. Interactive Art Director &#8211; Julian Kussman]]></description>
			<content:encoded><![CDATA[<p>This design was for a micro-site to showcase The Hartford&#8217;s sponsorship of NASCAR driver Dario Franchitti.</p>
<p>I used strong brand colors combined with mechanical elements to evoke the exciting nature of NASCAR.</p>
<p>Interactive Art Director &#8211; Julian Kussman</p>
<p><a href="http://juliankussman.com/blog/wp-content/uploads/2008/07/nascarv1_home.jpg"><img class="size-medium wp-image-42 alignnone" title="nascarv1_home" src="http://juliankussman.com/blog/wp-content/uploads/2008/07/nascarv1_home-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://juliankussman.com/blog/wp-content/uploads/2008/07/nascarv1_dario.jpg"><img class="size-medium wp-image-43 alignnone" title="nascarv1_dario" src="http://juliankussman.com/blog/wp-content/uploads/2008/07/nascarv1_dario-300x225.jpg" alt="" width="300" height="225" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/07/24/the-hartfaord-racing-website-comp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BudTV &#8211; Holiday banner ads</title>
		<link>http://juliankussman.com/blog/2008/07/24/budtv-holiday-banner-ads/</link>
		<comments>http://juliankussman.com/blog/2008/07/24/budtv-holiday-banner-ads/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 19:24:57 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Anheuser Busch]]></category>
		<category><![CDATA[banner ad]]></category>
		<category><![CDATA[BudTV]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=31</guid>
		<description><![CDATA[These ads were made to promote a free beer giveaway on Anheuser Busch&#8217;s BudTV. Who doesn&#8217;t like free beer? Art director &#8211; Adnan Sabic, Copy Writer &#8211; Greg Vogler, Interactive &#8211; Julian Kussman]]></description>
			<content:encoded><![CDATA[<p>These ads were made to promote a free beer giveaway on Anheuser Busch&#8217;s BudTV.<br />
<br />Who doesn&#8217;t like free beer?<br />
<br />Art director &#8211; Adnan Sabic, Copy Writer &#8211; Greg Vogler, Interactive &#8211; Julian Kussman<br />
<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="250" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="free_300x250" /><param name="bgcolor" value="#ffffff" /><param name="align" value="middle" /><param name="src" value="http://juliankussman.com/blog/wp-content/uploads/2008/07/free_300x250.swf" /><embed type="application/x-shockwave-flash" width="300" height="250" src="http://juliankussman.com/blog/wp-content/uploads/2008/07/free_300x250.swf" align="middle" bgcolor="#ffffff" name="free_300x250"></embed></object><br />
<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="300" height="250" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="free_300x2501" /><param name="bgcolor" value="#ffffff" /><param name="align" value="middle" /><param name="src" value="http://juliankussman.com/blog/wp-content/uploads/2008/07/free_300x2501.swf" /><embed type="application/x-shockwave-flash" width="300" height="250" src="http://juliankussman.com/blog/wp-content/uploads/2008/07/free_300x2501.swf" align="middle" bgcolor="#ffffff" name="free_300x2501"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/07/24/budtv-holiday-banner-ads/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Testing the wordpress iphone app</title>
		<link>http://juliankussman.com/blog/2008/07/22/testing-the-wordpress-iphone-app/</link>
		<comments>http://juliankussman.com/blog/2008/07/22/testing-the-wordpress-iphone-app/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 15:03:23 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/2008/07/22/testing-the-wordpress-iphone-app/</guid>
		<description><![CDATA[Well let&#8217;s we how it goes.]]></description>
			<content:encoded><![CDATA[<p>Well let&#8217;s we how it goes.</p>
<p><a href="http://juliankussman.com/blog/wp-content/uploads/2008/07/l-640-480-6ab13503-844f-4fd6-85e5-eb1ce60568e5.jpeg"><img src="http://juliankussman.com/blog/wp-content/uploads/2008/07/l-640-480-6ab13503-844f-4fd6-85e5-eb1ce60568e5.jpeg" alt="photo" width="300" height="225" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/07/22/testing-the-wordpress-iphone-app/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
