<?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>Julian Kussman, Interactive Art Director &#187; Work</title>
	<atom:link href="http://juliankussman.com/blog/category/work/feed/" rel="self" type="application/rss+xml" />
	<link>http://juliankussman.com</link>
	<description></description>
	<lastBuildDate>Mon, 14 May 2012 23:05:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Brighton Agency Blog: Community Building from the Ground Up</title>
		<link>http://juliankussman.com/blog/2011/12/27/brighton-agency-blog-community-building-from-the-ground-up/</link>
		<comments>http://juliankussman.com/blog/2011/12/27/brighton-agency-blog-community-building-from-the-ground-up/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 17:32:38 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[bbbs]]></category>
		<category><![CDATA[big brothers big sisters]]></category>
		<category><![CDATA[brighton]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=189</guid>
		<description><![CDATA[Read my latest blog entry on the Brighton Blog here: http://blog.brightonagency.com/2011/12/27/community-building-from-the-ground-up/ It&#8217;s all about my new experience being a Big Brother]]></description>
			<content:encoded><![CDATA[<p>Read my latest blog entry on the Brighton Blog here: <a href="http://blog.brightonagency.com/2011/12/27/community-building-from-the-ground-up/">http://blog.brightonagency.com/2011/12/27/community-building-from-the-ground-up/</a></p>
<p>It&#8217;s all about my new experience being a Big Brother through <a href="http://bbbsemo.org">Big Brothers Big Sisters</a></p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2011/12/27/brighton-agency-blog-community-building-from-the-ground-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brighton Agency Blog: Five well-designed sites</title>
		<link>http://juliankussman.com/blog/2011/08/16/brighton-agency-blog-five-well-designed-sites/</link>
		<comments>http://juliankussman.com/blog/2011/08/16/brighton-agency-blog-five-well-designed-sites/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 14:51:50 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[brighton]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=167</guid>
		<description><![CDATA[Read my latest blog entry on the Brighton Agency site: http://blog.brightonagency.com/2011/08/16/five-well-designed-sites/]]></description>
			<content:encoded><![CDATA[<p>Read my latest blog entry on the Brighton Agency site: <a href="http://blog.brightonagency.com/2011/08/16/five-well-designed-sites/">http://blog.brightonagency.com/2011/08/16/five-well-designed-sites/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2011/08/16/brighton-agency-blog-five-well-designed-sites/feed/</wfw:commentRss>
		<slash:comments>0</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]]></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/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>13</slash:comments>
		</item>
		<item>
		<title>Adobe Flash Player 10 beta</title>
		<link>http://juliankussman.com/blog/2008/05/15/adobe-flash-player-10-beta/</link>
		<comments>http://juliankussman.com/blog/2008/05/15/adobe-flash-player-10-beta/#comments</comments>
		<pubDate>Thu, 15 May 2008 16:23:11 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[flash player 10]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=27</guid>
		<description><![CDATA[http://labs.adobe.com/technologies/flashplayer10/demos/ What does this mean for papervision 3d? I know a lot of the tools that team has built will]]></description>
			<content:encoded><![CDATA[<p><a title="Flash Player 10 demos" href="http://labs.adobe.com/technologies/flashplayer10/demos/">http://labs.adobe.com/technologies/flashplayer10/demos/</a></p>
<p>What does this mean for papervision 3d? I know a lot of the tools that team has built will soon become redundant but what of their work can they keep? Texture mapping perhaps, camera movement (I don&#8217;t think adobe&#8217;s version of 3d accounts for a camera in space)</p>
<p>Also, with Adobe&#8217;s tools, can you create a cube in 3d (say by rotating and aligning 6 sides) and then rotate that cube as a whole in 3d space?</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/05/15/adobe-flash-player-10-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My TextFormat won&#8217;t stick to my TextField</title>
		<link>http://juliankussman.com/blog/2008/04/01/my-textformat-wont-stick-to-my-textfield/</link>
		<comments>http://juliankussman.com/blog/2008/04/01/my-textformat-wont-stick-to-my-textfield/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 14:42:05 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Bug]]></category>
		<category><![CDATA[Flash CS3]]></category>
		<category><![CDATA[TextField]]></category>
		<category><![CDATA[TextFormat]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/2008/04/01/my-textformat-wont-stick-to-my-textfield/</guid>
		<description><![CDATA[Run this SWF and click the button, the text stays pink. Then run this and click on the text, then]]></description>
			<content:encoded><![CDATA[<p>Run this SWF and click the button, the text stays pink.<br />
Then run this and click on the text, then click the button.<br />
The text defaults size and color. Why??????<a href="http://juliankussman.com/blog/2008/04/01/my-textformat-wont-stick-to-my-textfield/textformatbug/" rel="attachment wp-att-23" title="textFormatBug">textFormatBug</a></p>
<p>var titleTF:TextFormat = new TextFormat();<br />
titleTF.color = 0xFF00FF;<br />
titleTF.size = 22;<br />
//titleTF.font = avantBold.fontName;<br />
var titleText:TextField = createTF(10, 10, 200, 26, true, titleTF, &#8220;This is a test&#8221;);<br />
addChild(titleText);</p>
<p>function createTF(_x:Number, _y:Number, _width:Number, _height:Number, _autoSize:Boolean, _defaultTF:TextFormat, _text:String):TextField {<br />
var tf:TextField = new TextField();<br />
tf.x = _x;<br />
tf.y = _y;<br />
tf.width = _width;<br />
tf.height = _height;<br />
tf.autoSize = (_autoSize) ? TextFieldAutoSize.LEFT : TextFieldAutoSize.NONE;<br />
tf.wordWrap = true;<br />
tf.multiline = true;<br />
tf.defaultTextFormat = _defaultTF;<br />
tf.htmlText = _text;<br />
//tf.setTextFormat(_defaultTF);<br />
return tf;<br />
}</p>
<p>clicker.addEventListener(MouseEvent.CLICK, swapText);</p>
<p>function swapText(e:*):void{<br />
titleText.htmlText = &#8220;This is now a changed test&#8221; + String(Math.random());;<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/04/01/my-textformat-wont-stick-to-my-textfield/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web Services in AIR (Flash CS3)</title>
		<link>http://juliankussman.com/blog/2008/03/19/web-services-in-air-flash-cs3/</link>
		<comments>http://juliankussman.com/blog/2008/03/19/web-services-in-air-flash-cs3/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 21:38:56 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash CS3]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/2008/03/19/web-services-in-air-flash-cs3/</guid>
		<description><![CDATA[I have been banging my head against a wall for days. I am trying to get web services to work]]></description>
			<content:encoded><![CDATA[<p>I have been banging my head against a wall for days. I am trying to get web services to work in an AIR app built with Flash CS3.  My co-workers use a solution that works for Flash only <a href="http://labs.qi-ideas.com/2007/12/25/using-flex-compiled-code-within-flash" target="_blank">http://labs.qi-ideas.com/2007/12/25/using-flex-compiled-code-within-flash</a></p>
<p>But every time I tried to use it with an AIR app it would crash.</p>
<p>I then found  <a href="http://manmachine-tech.blogspot.com/" target="_blank">http://manmachine-tech.blogspot.com/</a></p>
<p>but after days of frustration I found a critical bug:</p>
<p>In the WSProxy class there is a variable  _busyOnCall = true; that gets set within callMethod()</p>
<p>and it gets set to false in onComplete()</p>
<p>but it NEVER GETS SET IN onFault</p>
<p>After that it&#8217;s all good. I hope this helps anyone in the same boat as myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/03/19/web-services-in-air-flash-cs3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How do I use Yahoo! Maps API in Flash CS3?</title>
		<link>http://juliankussman.com/blog/2008/02/14/how-do-i-use-yahoo-maps-api-in-flash-cs3/</link>
		<comments>http://juliankussman.com/blog/2008/02/14/how-do-i-use-yahoo-maps-api-in-flash-cs3/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 19:39:02 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/2008/02/14/how-do-i-use-yahoo-maps-api-in-flash-cs3/</guid>
		<description><![CDATA[I was really excited about the new Yahoo! Maps API coming out for AS3 and I happily applied for a]]></description>
			<content:encoded><![CDATA[<p>I was really excited about the new Yahoo! Maps API coming out for AS3 and I happily applied for a developer key and downloaded it. However, it&#8217;s compiled for Flex! How the heck am I supposed to use this? Is there some source repository I can get a hold of so I can use the classes in Flash CS3? There&#8217;s no apparent reason for it to be limited to Flex as far as I can tell. Anyone have any thoughts?</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/02/14/how-do-i-use-yahoo-maps-api-in-flash-cs3/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Adobe AIR 1.0 soon</title>
		<link>http://juliankussman.com/blog/2008/02/13/adobe-air-10-soon/</link>
		<comments>http://juliankussman.com/blog/2008/02/13/adobe-air-10-soon/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 17:07:43 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[AIR]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/2008/02/13/adobe-air-10-soon/</guid>
		<description><![CDATA[I can feel it in my bones. And I can&#8217;t wait because I&#8217;ve wanted to deploy an AIR app for]]></description>
			<content:encoded><![CDATA[<p>I can feel it in my bones. And I can&#8217;t wait because I&#8217;ve wanted to deploy an AIR app for so long but it&#8217;s a hard sell to a client to say &#8220;Users will have to download a framework, then the app, and then in 2 months update both when it goes 1.0&#8243;</p>
<p>This will be a defining moment for Adobe and the web.</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/02/13/adobe-air-10-soon/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SWF Capture AIR app</title>
		<link>http://juliankussman.com/blog/2007/12/07/swf-capture-air-app/</link>
		<comments>http://juliankussman.com/blog/2007/12/07/swf-capture-air-app/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 21:31:24 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[flapture]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[SWF Capture]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/2007/12/07/swf-capture-air-app/</guid>
		<description><![CDATA[I&#8217;m currently working on an AIR app that will load a SWF, take screen grabs at a selected interval and]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently working on an AIR app that will load a SWF, take screen grabs at a selected interval and then load the screen grabs back in and allow you to scrub back and forth through them.<br />
The main purpose for this is that many things my coworkers and I do at RT is entirely dynamic and code based with very little on the timeline. This app allows for selecting a specific frame in any SWF, code or timeline based, and for playing back the animation many times repeatedly.<br />
A side benefit to the app is that when creating backup GIFs for banner ads, if you run your banner through this app, will spit out cropped captures of your banner ad and may speed up the most boring part of banner ad creation.<br />
If you&#8217;re feeling daring you can install this <a href="http://juliankussman.com/work/SWFcapture.air">alpha version of SWF Capture</a> and see how it works<br />
I&#8217;ve got a lot of features left to build in but this does the basics.</p>
<p>Also, if you&#8217;re interested I&#8217;ve got my <a href="http://juliankussman.com/work/flapture.air">Flapture FLV Capture tool</a>available too. It automates one screen grab per FLV for a folder full of FLVs and was how I learned the basics of AIR.</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2007/12/07/swf-capture-air-app/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Latest project: save-my-relationship.com</title>
		<link>http://juliankussman.com/blog/2007/11/08/latest-project-save-my-relationshipcom/</link>
		<comments>http://juliankussman.com/blog/2007/11/08/latest-project-save-my-relationshipcom/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 16:58:20 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[AS3]]></category>
		<category><![CDATA[Energizer]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Tween]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/2007/11/08/latest-project-save-my-relationshipcom/</guid>
		<description><![CDATA[See my latest at: http://save-my-relationship.com/ It is a landing page for a banner campaign for Energizer&#8217;s Energi To Go iPod]]></description>
			<content:encoded><![CDATA[<p>See my latest at:</p>
<p><a href="http://save-my-relationship.com/">http://save-my-relationship.com/</a></p>
<p>It is a landing page for a banner campaign for Energizer&#8217;s Energi To Go iPod charger. The concept was mocking &#8216;relationship aide&#8217; products such as Viagra or even dating sites. One huge bug though is that something with the Tween class in ActionScript 3 makes some tweens just decide to up and stop when running in Firefox, which means that if you&#8217;re visiting with FF you&#8217;ll only see the HTML page <img src='http://juliankussman.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  If you would like to give me your feedback on the Flash version it&#8217;s directly linked <a href="http://www.juliankussman.com/work/e2go/">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2007/11/08/latest-project-save-my-relationshipcom/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

