<?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: Dynamic background color</title>
	<atom:link href="http://brajeshwar.com/2003/dynamic-background-color/feed/" rel="self" type="application/rss+xml" />
	<link>http://brajeshwar.com/2003/dynamic-background-color/</link>
	<description>Brajeshwar believes in simplicity; pushes the envelop and envisions the betterment of usable and practical solutions.</description>
	<lastBuildDate>Tue, 15 May 2012 16:44:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: le boudouil</title>
		<link>http://brajeshwar.com/2003/dynamic-background-color/#comment-23888</link>
		<dc:creator>le boudouil</dc:creator>
		<pubDate>Fri, 10 Oct 2008 18:13:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.brajeshwar.com/wp/2003/dynamic-background-color/#comment-23888</guid>
		<description>&lt;pre name=&quot;code&quot; class=&quot;ActionScript&quot;&gt;
//define a var for sh and sw   
//let us add 2 px each as flash eats them   
//in the Stage Object from the actual flash dimension   
var sh = Stage.height + 4;   
var sw = Stage.width + 4;   
var rp = 0;//let us have a start point   
trace(&quot;stage height = &quot; + sh + &quot; &amp; stage width = &quot; + sw + &quot; in pixels&quot;);   
setBG = function (col) {   
 with (_level0) {   
  clear();   
  if (col != undefined) {   
   beginFill(col);   
   moveTo(rp, rp);   
   lineTo(sw, rp);   
   lineTo(sw, sh);   
   lineTo(rp, sh);   
   endFill();   
  }   
 }   
 this.__bg__ = col;   
};   
//   
getBG = function () {   
 return this.__bg__;   
};   
//   
Stage.addProperty(&quot;bgColor&quot;, getBG, setBG);   
delete setBG;   
delete getBG;   
//Usage   
Stage.bgColor = 0x0000ff;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<pre name="code" class="ActionScript">
//define a var for sh and sw
//let us add 2 px each as flash eats them
//in the Stage Object from the actual flash dimension
var sh = Stage.height + 4;
var sw = Stage.width + 4;
var rp = 0;//let us have a start point
trace("stage height = " + sh + " &amp; stage width = " + sw + " in pixels");
setBG = function (col) {
 with (_level0) {
  clear();
  if (col != undefined) {
   beginFill(col);
   moveTo(rp, rp);
   lineTo(sw, rp);
   lineTo(sw, sh);
   lineTo(rp, sh);
   endFill();
  }
 }
 this.__bg__ = col;
};
//
getBG = function () {
 return this.__bg__;
};
//
Stage.addProperty("bgColor", getBG, setBG);
delete setBG;
delete getBG;
//Usage
Stage.bgColor = 0x0000ff;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: le boudouil</title>
		<link>http://brajeshwar.com/2003/dynamic-background-color/#comment-26958</link>
		<dc:creator>le boudouil</dc:creator>
		<pubDate>Fri, 10 Oct 2008 18:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.brajeshwar.com/wp/2003/dynamic-background-color/#comment-26958</guid>
		<description>
//define a var for sh and sw   
//let us add 2 px each as flash eats them   
//in the Stage Object from the actual flash dimension   
var sh = Stage.height + 4;   
var sw = Stage.width + 4;   
var rp = 0;//let us have a start point   
trace(&quot;stage height = &quot; + sh + &quot; &amp; stage width = &quot; + sw + &quot; in pixels&quot;);   
setBG = function (col) {   
 with (_level0) {   
  clear();   
  if (col != undefined) {   
   beginFill(col);   
   moveTo(rp, rp);   
   lineTo(sw, rp);   
   lineTo(sw, sh);   
   lineTo(rp, sh);   
   endFill();   
  }   
 }   
 this.__bg__ = col;   
};   
//   
getBG = function () {   
 return this.__bg__;   
};   
//   
Stage.addProperty(&quot;bgColor&quot;, getBG, setBG);   
delete setBG;   
delete getBG;   
//Usage   
Stage.bgColor = 0x0000ff;
</description>
		<content:encoded><![CDATA[<p>//define a var for sh and sw<br />
//let us add 2 px each as flash eats them<br />
//in the Stage Object from the actual flash dimension<br />
var sh = Stage.height + 4;<br />
var sw = Stage.width + 4;<br />
var rp = 0;//let us have a start point<br />
trace("stage height = " + sh + " &amp; stage width = " + sw + " in pixels");<br />
setBG = function (col) {<br />
 with (_level0) {<br />
  clear();<br />
  if (col != undefined) {<br />
   beginFill(col);<br />
   moveTo(rp, rp);<br />
   lineTo(sw, rp);<br />
   lineTo(sw, sh);<br />
   lineTo(rp, sh);<br />
   endFill();<br />
  }<br />
 }<br />
 this.__bg__ = col;<br />
};<br />
//<br />
getBG = function () {<br />
 return this.__bg__;<br />
};<br />
//<br />
Stage.addProperty("bgColor", getBG, setBG);<br />
delete setBG;<br />
delete getBG;<br />
//Usage<br />
Stage.bgColor = 0x0000ff;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Per Jensen</title>
		<link>http://brajeshwar.com/2003/dynamic-background-color/#comment-2778</link>
		<dc:creator>Per Jensen</dc:creator>
		<pubDate>Fri, 20 Apr 2007 20:27:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.brajeshwar.com/wp/2003/dynamic-background-color/#comment-2778</guid>
		<description>Could this dynamic background color, script by any chance be put into flash 8 scripting. I have tryed but cant seem to figure it out. Thank you.</description>
		<content:encoded><![CDATA[<p>Could this dynamic background color, script by any chance be put into flash 8 scripting. I have tryed but cant seem to figure it out. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Per Jensen</title>
		<link>http://brajeshwar.com/2003/dynamic-background-color/#comment-26957</link>
		<dc:creator>Per Jensen</dc:creator>
		<pubDate>Fri, 20 Apr 2007 20:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.brajeshwar.com/wp/2003/dynamic-background-color/#comment-26957</guid>
		<description>Could this dynamic background color, script by any chance be put into flash 8 scripting. I have tryed but cant seem to figure it out. Thank you.</description>
		<content:encoded><![CDATA[<p>Could this dynamic background color, script by any chance be put into flash 8 scripting. I have tryed but cant seem to figure it out. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lewis</title>
		<link>http://brajeshwar.com/2003/dynamic-background-color/#comment-89</link>
		<dc:creator>Lewis</dc:creator>
		<pubDate>Wed, 29 Sep 2004 08:16:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.brajeshwar.com/wp/2003/dynamic-background-color/#comment-89</guid>
		<description>I like this BUT just wondering what the &#039;this.__bg__ = col;&#039; and &#039;return this.__bg__&#039; are for??
</description>
		<content:encoded><![CDATA[<p>I like this BUT just wondering what the 'this.__bg__ = col;' and 'return this.__bg__' are for??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lewis</title>
		<link>http://brajeshwar.com/2003/dynamic-background-color/#comment-26956</link>
		<dc:creator>Lewis</dc:creator>
		<pubDate>Wed, 29 Sep 2004 08:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.brajeshwar.com/wp/2003/dynamic-background-color/#comment-26956</guid>
		<description>I like this BUT just wondering what the &#039;this.__bg__ = col;&#039; and &#039;return this.__bg__&#039; are for??</description>
		<content:encoded><![CDATA[<p>I like this BUT just wondering what the 'this.__bg__ = col;' and 'return this.__bg__' are for??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johny Hobson</title>
		<link>http://brajeshwar.com/2003/dynamic-background-color/#comment-88</link>
		<dc:creator>Johny Hobson</dc:creator>
		<pubDate>Thu, 01 Jul 2004 05:16:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.brajeshwar.com/wp/2003/dynamic-background-color/#comment-88</guid>
		<description>You are very welcome to visit my website.

Johny Hobson o</description>
		<content:encoded><![CDATA[<p>You are very welcome to visit my website.</p>
<p>Johny Hobson o</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johny Hobson</title>
		<link>http://brajeshwar.com/2003/dynamic-background-color/#comment-26955</link>
		<dc:creator>Johny Hobson</dc:creator>
		<pubDate>Wed, 30 Jun 2004 23:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.brajeshwar.com/wp/2003/dynamic-background-color/#comment-26955</guid>
		<description>You are very welcome to visit my website.

Johny Hobson o</description>
		<content:encoded><![CDATA[<p>You are very welcome to visit my website.</p>
<p>Johny Hobson o</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carey Richardosn</title>
		<link>http://brajeshwar.com/2003/dynamic-background-color/#comment-87</link>
		<dc:creator>Carey Richardosn</dc:creator>
		<pubDate>Thu, 27 May 2004 16:00:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.brajeshwar.com/wp/2003/dynamic-background-color/#comment-87</guid>
		<description>I keep getting a static script error on this code? i&#039;m using Mx pro 2004? Please help...</description>
		<content:encoded><![CDATA[<p>I keep getting a static script error on this code? i'm using Mx pro 2004? Please help...</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carey Richardosn</title>
		<link>http://brajeshwar.com/2003/dynamic-background-color/#comment-26954</link>
		<dc:creator>Carey Richardosn</dc:creator>
		<pubDate>Thu, 27 May 2004 16:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.brajeshwar.com/wp/2003/dynamic-background-color/#comment-26954</guid>
		<description>I keep getting a static script error on this code? i&#039;m using Mx pro 2004? Please help...</description>
		<content:encoded><![CDATA[<p>I keep getting a static script error on this code? i'm using Mx pro 2004? Please help...</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached

Served from: brajeshwar.com @ 2012-05-17 05:29:27 -->
