<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Front and Center!	</title>
	<atom:link href="https://jessewarden.com/2003/05/front-and-center.html/feed" rel="self" type="application/rss+xml" />
	<link>https://jessewarden.com/2003/05/front-and-center.html</link>
	<description>Software &#124; Fitness &#124; Gaming</description>
	<lastBuildDate>Tue, 20 May 2003 06:45:28 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: JesterXL		</title>
		<link>https://jessewarden.com/2003/05/front-and-center.html/comment-page-1#comment-386</link>

		<dc:creator><![CDATA[JesterXL]]></dc:creator>
		<pubDate>Tue, 20 May 2003 06:45:28 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=141#comment-386</guid>

					<description><![CDATA[A lot phatter.  That was the interval trick I was talking about to make her a lot more processor friendly.  Thanks a lot, yo, this is great!
]]></description>
			<content:encoded><![CDATA[<p>A lot phatter.  That was the interval trick I was talking about to make her a lot more processor friendly.  Thanks a lot, yo, this is great!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Greg Burch		</title>
		<link>https://jessewarden.com/2003/05/front-and-center.html/comment-page-1#comment-385</link>

		<dc:creator><![CDATA[Greg Burch]]></dc:creator>
		<pubDate>Tue, 20 May 2003 00:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=141#comment-385</guid>

					<description><![CDATA[Here is some code I just tossed together:

Stage.align = &quot;TL&quot;;
Stage.scaleMode = &quot;noScale&quot;;

Stage.addListener(Stage);

Stage.onResize = function(){
	if(this.intervalId == null){
		this.intervalId = setInterval(this, &quot;fireOnResize&quot;, this.interval);
	}
}

Stage.fireOnResize = function(){
	this.broadcastMessage(&quot;onResizeInterval&quot;);
	clearInterval(this.intervalId);
	delete this.intervalId;
}

Stage.setIntervalTime = function(interval){
	this.interval = interval;
}

Stage.setIntervalTime(300);


Stage.addListener(this);

function onResizeInterval(args){
	trace(&quot;Resized&quot;);
}]]></description>
			<content:encoded><![CDATA[<p>Here is some code I just tossed together:</p>
<p>Stage.align = &#8220;TL&#8221;;<br />
Stage.scaleMode = &#8220;noScale&#8221;;</p>
<p>Stage.addListener(Stage);</p>
<p>Stage.onResize = function(){<br />
	if(this.intervalId == null){<br />
		this.intervalId = setInterval(this, &#8220;fireOnResize&#8221;, this.interval);<br />
	}<br />
}</p>
<p>Stage.fireOnResize = function(){<br />
	this.broadcastMessage(&#8220;onResizeInterval&#8221;);<br />
	clearInterval(this.intervalId);<br />
	delete this.intervalId;<br />
}</p>
<p>Stage.setIntervalTime = function(interval){<br />
	this.interval = interval;<br />
}</p>
<p>Stage.setIntervalTime(300);</p>
<p>Stage.addListener(this);</p>
<p>function onResizeInterval(args){<br />
	trace(&#8220;Resized&#8221;);<br />
}</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
