<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for devBlog</title>
	<atom:link href="http://devblog.projector.se/index.php?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://devblog.projector.se</link>
	<description>Projector development blog. A place to document your experiences.</description>
	<pubDate>Tue, 07 Sep 2010 13:48:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>Comment on Basic Flash-tips #2: Runtime-errors with row-numbers by devBlog</title>
		<link>http://devblog.projector.se/?p=31#comment-372</link>
		<dc:creator>devBlog</dc:creator>
		<pubDate>Sun, 18 May 2008 12:58:53 +0000</pubDate>
		<guid isPermaLink="false">http://devblog.projector.se/?p=31#comment-372</guid>
		<description>

Just be aware that this pops the dreaded ” Where is the debugger or host application running?” on some systems with the authoring environment installed (have yet to figure out what set up is causing it).

To be on the safe side my recommendation is to uncheck permit debugging before final compile.
</description>
		<content:encoded><![CDATA[<p>Just be aware that this pops the dreaded ” Where is the debugger or host application running?” on some systems with the authoring environment installed (have yet to figure out what set up is causing it).</p>
<p>To be on the safe side my recommendation is to uncheck permit debugging before final compile.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Resolution of textures by Inear</title>
		<link>http://devblog.projector.se/?p=28#comment-75</link>
		<dc:creator>Inear</dc:creator>
		<pubDate>Thu, 10 Apr 2008 20:24:55 +0000</pubDate>
		<guid isPermaLink="false">http://devblog.projector.se/?p=28#comment-75</guid>
		<description>There is no limit, just Activate "Bitmap Proxies" in Render Scene/Common-tab.</description>
		<content:encoded><![CDATA[<p>There is no limit, just Activate &#8220;Bitmap Proxies&#8221; in Render Scene/Common-tab.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why do you never learn by inEar</title>
		<link>http://devblog.projector.se/?p=20#comment-73</link>
		<dc:creator>inEar</dc:creator>
		<pubDate>Thu, 27 Mar 2008 13:27:33 +0000</pubDate>
		<guid isPermaLink="false">http://devblog.projector.se/?p=20#comment-73</guid>
		<description>And I found that by enable "runtime bitmap caching" on both the mask and the maskee the textfields in components such as combobox is also visible.</description>
		<content:encoded><![CDATA[<p>And I found that by enable &#8220;runtime bitmap caching&#8221; on both the mask and the maskee the textfields in components such as combobox is also visible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stopped by the pop-up blocker in your browser? by Jörgen</title>
		<link>http://devblog.projector.se/?p=24#comment-11</link>
		<dc:creator>Jörgen</dc:creator>
		<pubDate>Mon, 10 Mar 2008 13:32:12 +0000</pubDate>
		<guid isPermaLink="false">http://devblog.projector.se/?p=24#comment-11</guid>
		<description>You are so right inEar! :-)
here is a list of supporting browsers:

Internet Explorer 5.0 and later, Netscape 8.0 and later, Mozilla 1.7.5 and later, Firefox 1.0 and later and Safari 1.3 and later.</description>
		<content:encoded><![CDATA[<p>You are so right inEar! <img src='http://devblog.projector.se/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
here is a list of supporting browsers:</p>
<p>Internet Explorer 5.0 and later, Netscape 8.0 and later, Mozilla 1.7.5 and later, Firefox 1.0 and later and Safari 1.3 and later.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Stopped by the pop-up blocker in your browser? by inEar</title>
		<link>http://devblog.projector.se/?p=24#comment-10</link>
		<dc:creator>inEar</dc:creator>
		<pubDate>Mon, 10 Mar 2008 08:39:15 +0000</pubDate>
		<guid isPermaLink="false">http://devblog.projector.se/?p=24#comment-10</guid>
		<description>One thing to have in mind is that the ExternalInterface is not available to all browsers, so check the property "ExternalInterface.available" and use the "navigateToURL" if false.

if (ExternalInterface.available) {
	ExternalInterface.call("window.open", url);
}
else {
	navigateToURL(new URLRequest(url),"_blank");
}

I wonder if this gonna be delaying the migration to flash 9 in banners?</description>
		<content:encoded><![CDATA[<p>One thing to have in mind is that the ExternalInterface is not available to all browsers, so check the property &#8220;ExternalInterface.available&#8221; and use the &#8220;navigateToURL&#8221; if false.</p>
<p>if (ExternalInterface.available) {<br />
	ExternalInterface.call(&#8221;window.open&#8221;, url);<br />
}<br />
else {<br />
	navigateToURL(new URLRequest(url),&#8221;_blank&#8221;);<br />
}</p>
<p>I wonder if this gonna be delaying the migration to flash 9 in banners?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why do you never learn by inEar</title>
		<link>http://devblog.projector.se/?p=20#comment-5</link>
		<dc:creator>inEar</dc:creator>
		<pubDate>Tue, 19 Feb 2008 13:54:19 +0000</pubDate>
		<guid isPermaLink="false">http://devblog.projector.se/?p=20#comment-5</guid>
		<description>Another of those "never learning's" is to forgot using Delegate when writing event functions in a class.

button.onRelease = function(){  }

instead of

button.onRelease=Delegate.create(this,onButtonPressed);  

No errors, just silence...</description>
		<content:encoded><![CDATA[<p>Another of those &#8220;never learning&#8217;s&#8221; is to forgot using Delegate when writing event functions in a class.</p>
<p>button.onRelease = function(){  }</p>
<p>instead of</p>
<p>button.onRelease=Delegate.create(this,onButtonPressed);  </p>
<p>No errors, just silence&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Coded or handmade tweens? by Dave</title>
		<link>http://devblog.projector.se/?p=6#comment-3</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 31 Jan 2008 13:46:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.projector.se/devblog/?p=6#comment-3</guid>
		<description>Totally agree. The web is overflowed with an overuse of easeOutBounce and easeOutElastic.
And Timeline rules for longer linear animations where control over timing is crucial.</description>
		<content:encoded><![CDATA[<p>Totally agree. The web is overflowed with an overuse of easeOutBounce and easeOutElastic.<br />
And Timeline rules for longer linear animations where control over timing is crucial.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
