<?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"
	>

<channel>
	<title>Being the adventures of a young man whose principal interests are Flash, usability and Beastie Boys.</title>
	<atom:link href="http://juliankussman.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://juliankussman.com/blog</link>
	<description>Industry thoughts</description>
	<pubDate>Thu, 15 May 2008 16:23:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<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 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)
Also, with Adobe&#8217;s tools, can you create a [...]]]></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>
		</item>
		<item>
		<title>Fox affiliate sites redesign</title>
		<link>http://juliankussman.com/blog/2008/05/05/fox-affiliate-sites-redesign/</link>
		<comments>http://juliankussman.com/blog/2008/05/05/fox-affiliate-sites-redesign/#comments</comments>
		<pubDate>Mon, 05 May 2008 20:02:27 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
		
		<category><![CDATA[Personal Projects]]></category>

		<category><![CDATA[ui]]></category>

		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/?p=25</guid>
		<description><![CDATA[I&#8217;m disgusted by myfoxstl.com
It isn&#8217;t their fault though. Here is 30 minutes of thinking applied to a site that seems to have had 10 minutes of thinking behind it.

]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m disgusted by <a href="http://myfoxstl.com" target="_blank">myfoxstl.com</a></p>
<p>It isn&#8217;t their fault though. Here is 30 minutes of thinking applied to a site that seems to have had 10 minutes of thinking behind it.</p>
<p><a href="http://juliankussman.com/work/fox.jpg"><img style="border: 1px solid black;" src="http://juliankussman.com/work/fox.jpg" alt="Fox Redesign" width="500" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/05/05/fox-affiliate-sites-redesign/feed/</wfw:commentRss>
		</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 click the button.
The text defaults size and color. Why??????textFormatBug
var titleTF:TextFormat = new TextFormat();
titleTF.color = 0xFF00FF;
titleTF.size = 22;
//titleTF.font = avantBold.fontName;
var titleText:TextField = createTF(10, 10, 200, 26, true, titleTF, &#8220;This is a test&#8221;);
addChild(titleText);
function createTF(_x:Number, _y:Number, _width:Number, _height:Number, _autoSize:Boolean, [...]]]></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>
		</item>
		<item>
		<title>Now accepting freelance work</title>
		<link>http://juliankussman.com/blog/2008/03/30/now-accepting-freelance-work/</link>
		<comments>http://juliankussman.com/blog/2008/03/30/now-accepting-freelance-work/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 03:33:33 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
		
		<category><![CDATA[Personal Projects]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[freelance]]></category>

		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/2008/03/30/now-accepting-freelance-work/</guid>
		<description><![CDATA[I&#8217;ve put my freelance lifestyle on hold for a while since I&#8217;ve had a full time job but I am now looking for freelance projects I can do in the off hours (6pm - 8am and weekends)
If you&#8217;re looking for a Flash developer, UI designer or general web genius™ please feel free to contact me [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve put my freelance lifestyle on hold for a while since I&#8217;ve had a full time job but I am now looking for freelance projects I can do in the off hours (6pm - 8am and weekends)<br />
If you&#8217;re looking for a Flash developer, UI designer or general web genius™ please feel free to contact me at julian(at this domain).</p>
<p>I&#8217;m located in St. Louis, MO if that makes any difference but I&#8217;m available worldwide. that may actually be a benefit to a company located in the UK since the time difference would allow me to be at available during their daytime office hours.</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/03/30/now-accepting-freelance-work/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Chugging along on Fless, the WordPress Flash front-end</title>
		<link>http://juliankussman.com/blog/2008/03/28/chugging-along-on-fless-the-wordpress-flash-front-end/</link>
		<comments>http://juliankussman.com/blog/2008/03/28/chugging-along-on-fless-the-wordpress-flash-front-end/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 21:49:56 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
		
		<category><![CDATA[Personal Projects]]></category>

		<category><![CDATA[AS3]]></category>

		<category><![CDATA[fless]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/2008/03/28/chugging-along-on-fless-the-wordpress-flash-front-end/</guid>
		<description><![CDATA[I&#8217;ve spent a day or two reformatting and tightening up the code I left lingering on the Fless project I started.
 Here is the example 
It doesn&#8217;t look like much but it shows the ease of use of the framework.
Here is the code to create the basics:
public class Main extends MovieClip{
public function Main(){
var blog:Fless = [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent a day or two reformatting and tightening up the code I left lingering on the <a href="http://juliankussman.com/blog/2007/11/21/fless-v-000001-alpha/" target="_blank">Fless project</a> I started.</p>
<p><a href="http://www.juliankussman.com/blog/fless/" title="Here is the example" target="_blank"> Here is the example </a></p>
<p>It doesn&#8217;t look like much but it shows the ease of use of the framework.</p>
<p>Here is the code to create the basics:</p>
<p>public class Main extends MovieClip{</p>
<p>public function Main(){</p>
<p>var blog:Fless = new Fless();</p>
<p>blog.phpURL = &#8220;http://yourwebsite/getPost.php&#8221;;</p>
<p>blog.addEventListener(PostEvent.UPDATE, postsReady);<br />
blog.getPosts(0, 20);</p>
<p>}</p>
<p>private function postsReady(e:PostEvent):void{<br />
trace(&#8221;posts ready&#8221;);<br />
trace(e.posts);</p>
<p>var curPost:CurrentPostView = new CurrentPostView(e.posts[0]);<br />
curPost.x = 50;<br />
curPost.y = 50;<br />
curPost.width = (stage.stageWidth / 2) - 50;<br />
curPost.height = stage.stageHeight - 100;<br />
addChild(curPost);<br />
}</p>
<p>}</p>
<p>I&#8217;m definitely looking for input from Flash devs that use WordPress to see what kind of features they would like.</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/03/28/chugging-along-on-fless-the-wordpress-flash-front-end/feed/</wfw:commentRss>
		</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 in an AIR app built with Flash CS3.  My co-workers use a solution that works for Flash only http://labs.qi-ideas.com/2007/12/25/using-flex-compiled-code-within-flash
But every time I tried to use it with an AIR app it would crash.
I then [...]]]></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>
		</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 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 [...]]]></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>
		</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 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;
This will be [...]]]></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>
		</item>
		<item>
		<title>AIR is not for opening docs in their native apps</title>
		<link>http://juliankussman.com/blog/2008/01/02/air-is-not-for-opening-docs-in-their-native-apps/</link>
		<comments>http://juliankussman.com/blog/2008/01/02/air-is-not-for-opening-docs-in-their-native-apps/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 22:55:58 +0000</pubDate>
		<dc:creator>Julian</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[AIR]]></category>

		<category><![CDATA[RIA]]></category>

		<guid isPermaLink="false">http://juliankussman.com/blog/2008/01/02/air-is-not-for-opening-docs-in-their-native-apps/</guid>
		<description><![CDATA[When will it become common knowledge that AIR will not open a document in its default application?! I see this same question asked about 2 times a day. If the design of your app requires opening other docs in their default app (ie Word) then you shouldn&#8217;t be using AIR or you should be reconsidering [...]]]></description>
			<content:encoded><![CDATA[<p>When will it become common knowledge that AIR will not open a document in its default application?! I see this same question asked about 2 times a day. If the design of your app requires opening other docs in their default app (ie Word) then you shouldn&#8217;t be using AIR or you should be reconsidering the design of your app.</p>
<p>AIR can read the bytes of any file and if you know which bytes are which and what to do with them, then you can effectively recreate any app in AIR but you will never be able to make an AIR app that launches Word. I don&#8217;t even understand why someone would want this. Stop thinking about AIR like a jump-off platform for beginner programmers like VB is and start thinking about its unique capabilities: Network connectivity, built-in DB, powerful animation, Flex components, and HTML rendering.</p>
]]></content:encoded>
			<wfw:commentRss>http://juliankussman.com/blog/2008/01/02/air-is-not-for-opening-docs-in-their-native-apps/feed/</wfw:commentRss>
		</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 then load the screen grabs back in and allow you to scrub back and forth through them.
The main purpose for this is that many things my coworkers and I do at RT is entirely dynamic [...]]]></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>
		</item>
	</channel>
</rss>
