<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Web Standard</title>
	<atom:link href="http://webstandard.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://webstandard.wordpress.com</link>
	<description>Web Standard Code Management</description>
	<lastBuildDate>Thu, 19 Aug 2010 12:08:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='webstandard.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Web Standard</title>
		<link>http://webstandard.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://webstandard.wordpress.com/osd.xml" title="Web Standard" />
	<atom:link rel='hub' href='http://webstandard.wordpress.com/?pushpress=hub'/>
		<item>
		<title>XML Data into Data Grid in AS3</title>
		<link>http://webstandard.wordpress.com/2010/08/19/xml-data-into-data-grid-in-as3/</link>
		<comments>http://webstandard.wordpress.com/2010/08/19/xml-data-into-data-grid-in-as3/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 12:03:06 +0000</pubDate>
		<dc:creator>htmlslicing</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[Data]]></category>
		<category><![CDATA[Grid]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://webstandard.wordpress.com/?p=598</guid>
		<description><![CDATA[Step 1 : drag DataGrid Component into stage and delete it. Step1. Paste below code import fl.data.DataProvider; import fl.controls.DataGrid; import fl.controls.dataGridClasses.DataGridColumn; var xmlLoader:URLLoader = new URLLoader(); var xmlData:XML = new XML(); xmlLoader.addEventListener(Event.COMPLETE, LoadXML); xmlLoader.load(new URLRequest(&#8220;sampleXML.xml&#8221;)); function LoadXML(e:Event):void { xmlData = new XML(e.target.data); ParseBooks(xmlData); } function ParseBooks(bookInput:XML):void { trace(&#8220;XML Output&#8221;); trace(&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8221;); var titleList:XMLList=bookInput.Book.title; var authorList:XMLList=bookInput.Book.author; var [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=598&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Step 1 : drag DataGrid Component into stage and delete it.</strong></p>
<p><strong>Step1. Paste below code</strong></p>
<p>import fl.data.DataProvider;<br />
import fl.controls.DataGrid;<br />
import fl.controls.dataGridClasses.DataGridColumn;</p>
<p>var xmlLoader:URLLoader = new URLLoader();<br />
var xmlData:XML = new XML();</p>
<p>xmlLoader.addEventListener(Event.COMPLETE, LoadXML);</p>
<p>xmlLoader.load(new URLRequest(&#8220;sampleXML.xml&#8221;));</p>
<p>function LoadXML(e:Event):void {<br />
xmlData = new XML(e.target.data);<br />
ParseBooks(xmlData);<br />
}</p>
<p>function ParseBooks(bookInput:XML):void {<br />
trace(&#8220;XML Output&#8221;);<br />
trace(&#8220;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8221;);</p>
<p>var titleList:XMLList=bookInput.Book.title;<br />
var authorList:XMLList=bookInput.Book.author;</p>
<p>var dp:DataProvider=new DataProvider(xmlData);</p>
<p>var dg:DataGrid = new DataGrid();<br />
dg.setSize(400, 300);<br />
dg.editable=false;</p>
<p>var col:DataGridColumn;<br />
col = dg.addColumn(&#8220;Author&#8221;);<br />
col.dataField =&#8221;author&#8221;;<br />
col = dg.addColumn(&#8220;Title&#8221;);<br />
col.dataField =&#8221;title&#8221;;<br />
dg.dataProvider=dp;</p>
<p>addChild(dg);<br />
}</p>
<p><strong>3. Make xml file (sampleXML.xml)</strong></p>
<p>&lt;?xml ver=&#8221;1.0&#8243; ?&gt;<br />
&lt;Books&gt;<br />
&lt;Book ISBN=&#8221;0553212419&#8243;&gt;<br />
&lt;title id=&#8221;1&#8243;&gt;Sherlock Holmes :Complete Novels &#8230;&lt;/title&gt;<br />
&lt;author&gt;Sir Arthur Conan Doyle&lt;/author&gt;<br />
&lt;date&gt;2010/10/12&lt;/date&gt;<br />
&lt;/Book&gt;<br />
&lt;Book ISBN=&#8221;0743273567&#8243;&gt;<br />
&lt;title id=&#8221;1&#8243;&gt;The Great Gatsby&lt;/title&gt;<br />
&lt;author&gt;F. Scott Fitzgerald&lt;/author&gt;<br />
&lt;date&gt;2010/10/14&lt;/date&gt;<br />
&lt;/Book&gt;<br />
&lt;Book ISBN=&#8221;0684826976&#8243;&gt;<br />
&lt;title id=&#8221;1&#8243;&gt;Undaunted Courage&lt;/title&gt;<br />
&lt;author&gt;Stephen E. Ambrose&lt;/author&gt;<br />
&lt;date&gt;2010/10/20&lt;/date&gt;<br />
&lt;/Book&gt;<br />
&lt;Book ISBN=&#8221;0743203178&#8243;&gt;<br />
&lt;title id=&#8221;3&#8243;&gt;Nothing Like It In the World&lt;/title&gt;<br />
&lt;author&gt;Sir Arthur Conan Doyle&lt;/author&gt;<br />
&lt;date&gt;2010/10/30&lt;/date&gt;<br />
&lt;/Book&gt;<br />
&lt;/Books&gt;</p>
<p><strong>4.Run Program</strong></p>
<p><strong><a href="http://webstandard.files.wordpress.com/2010/08/datagrid.jpg"><img class="alignnone size-full wp-image-602" title="dataGrid" src="http://webstandard.files.wordpress.com/2010/08/datagrid.jpg?w=420&#038;h=114" alt="" width="420" height="114" /></a><br />
</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webstandard.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webstandard.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webstandard.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webstandard.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webstandard.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webstandard.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webstandard.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webstandard.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webstandard.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webstandard.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webstandard.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webstandard.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webstandard.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webstandard.wordpress.com/598/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=598&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webstandard.wordpress.com/2010/08/19/xml-data-into-data-grid-in-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebf19e0b238a2d5da56be55f0cfecaf1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htmlslicing</media:title>
		</media:content>

		<media:content url="http://webstandard.files.wordpress.com/2010/08/datagrid.jpg" medium="image">
			<media:title type="html">dataGrid</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating Object in looping in AS3</title>
		<link>http://webstandard.wordpress.com/2010/06/07/creating-object-in-looping-in-as3/</link>
		<comments>http://webstandard.wordpress.com/2010/06/07/creating-object-in-looping-in-as3/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 12:55:08 +0000</pubDate>
		<dc:creator>htmlslicing</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[Creating]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[looping]]></category>
		<category><![CDATA[object]]></category>

		<guid isPermaLink="false">http://webstandard.wordpress.com/?p=594</guid>
		<description><![CDATA[Here, I have made some code stuff which could create object looping and can access each object&#8217;s property from outside of loop // importing reated files import flash.display.Sprite; import flash.text.TextField; // Varial declearation var answer:Array=new Array(); var ansGroup:Array=new Array(); var options:Sprite=new Sprite(); answer[0]=["nepal","china","bhutan","usa"]; answer[1]=["Lichi","mango","banana","apple"]; answer[2]=["sunday","monday","tuesday","saturday"]; answer[3]=["cat","lion","monkey","donkey"]; for(var i:Number=0; i&#60;4; i++){ // making object var myTextField:TextField=new [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=594&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here, I have made some code stuff which could create object looping and can access each object&#8217;s property from outside of loop</p>
<p>// importing reated files<br />
import flash.display.Sprite;<br />
import flash.text.TextField;</p>
<p>// Varial declearation<br />
var answer:Array=new Array();<br />
var ansGroup:Array=new Array();<br />
var options:Sprite=new Sprite();</p>
<p>answer[0]=["nepal","china","bhutan","usa"];<br />
answer[1]=["Lichi","mango","banana","apple"];<br />
answer[2]=["sunday","monday","tuesday","saturday"];<br />
answer[3]=["cat","lion","monkey","donkey"];</p>
<p>for(var i:Number=0; i&lt;4; i++){<br />
// making object<br />
var myTextField:TextField=new TextField();</p>
<p>// Setting property of created object<br />
myTextField.x=i*130;<br />
myTextField.y=25;<br />
myTextField.width=120;<br />
myTextField.height=25;<br />
myTextField.text=answer[0][i];<br />
myTextField.border=true;</p>
<p>// put into ansGroup Array<br />
ansGroup.push(myTextField);</p>
<p>// put into displaycontainer options<br />
options.addChild(myTextField);</p>
<p>}<br />
// Setting displaycontainer property of x and y position<br />
options.y=100;<br />
options.x=25;</p>
<p>// displaying displayContainer<br />
addChild(options);</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webstandard.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webstandard.wordpress.com/594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webstandard.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webstandard.wordpress.com/594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webstandard.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webstandard.wordpress.com/594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webstandard.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webstandard.wordpress.com/594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webstandard.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webstandard.wordpress.com/594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webstandard.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webstandard.wordpress.com/594/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webstandard.wordpress.com/594/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webstandard.wordpress.com/594/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=594&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webstandard.wordpress.com/2010/06/07/creating-object-in-looping-in-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebf19e0b238a2d5da56be55f0cfecaf1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htmlslicing</media:title>
		</media:content>
	</item>
		<item>
		<title>Combo Box Component in AS3</title>
		<link>http://webstandard.wordpress.com/2010/06/02/combo-box-component-in-as3/</link>
		<comments>http://webstandard.wordpress.com/2010/06/02/combo-box-component-in-as3/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 04:23:15 +0000</pubDate>
		<dc:creator>htmlslicing</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[Combo]]></category>
		<category><![CDATA[Component]]></category>
		<category><![CDATA[in]]></category>

		<guid isPermaLink="false">http://webstandard.wordpress.com/?p=591</guid>
		<description><![CDATA[Please drag comboBox from componet and set parameter true for editable parameter. import fl.data.DataProvider; import fl.events.ComponentEvent; var count:Number=0; var myArray:Array=[ {label:"Nepal", data:"nepal"}, {label:"Dhoti", data:"dhoti"}, {label:"USA", data:"usa"} ]; cm.dataProvider=new DataProvider(myArray); /* For dynamic addValue into combo list we have this simple addItemAt function cm.addItemAt({label:&#8221;xx&#8221;, data:&#8221;xx&#8221;}, comboBoxIndex); Ex : cm.addItemAt({label:&#8221;Nepal&#8221;, data:&#8221;nepal&#8221;},0); */<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=591&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Please drag comboBox from componet and set parameter true for editable parameter.</p>
<p>import fl.data.DataProvider;<br />
import fl.events.ComponentEvent;<br />
var count:Number=0;<br />
var myArray:Array=[<br />
{label:"Nepal", data:"nepal"},<br />
{label:"Dhoti", data:"dhoti"},<br />
{label:"USA", data:"usa"}</p>
<p>];<br />
cm.dataProvider=new DataProvider(myArray);<br />
/*<br />
For dynamic addValue into combo list we have this simple addItemAt function<br />
cm.addItemAt({label:&#8221;xx&#8221;, data:&#8221;xx&#8221;}, comboBoxIndex);</p>
<p>Ex :<br />
cm.addItemAt({label:&#8221;Nepal&#8221;, data:&#8221;nepal&#8221;},0);<br />
*/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webstandard.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webstandard.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webstandard.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webstandard.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webstandard.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webstandard.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webstandard.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webstandard.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webstandard.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webstandard.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webstandard.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webstandard.wordpress.com/591/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webstandard.wordpress.com/591/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webstandard.wordpress.com/591/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=591&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webstandard.wordpress.com/2010/06/02/combo-box-component-in-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebf19e0b238a2d5da56be55f0cfecaf1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htmlslicing</media:title>
		</media:content>
	</item>
		<item>
		<title>How to make Full Screen in Flash AS3</title>
		<link>http://webstandard.wordpress.com/2010/05/21/how-to-make-full-screen-in-flash-as3/</link>
		<comments>http://webstandard.wordpress.com/2010/05/21/how-to-make-full-screen-in-flash-as3/#comments</comments>
		<pubDate>Fri, 21 May 2010 12:13:06 +0000</pubDate>
		<dc:creator>htmlslicing</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[full]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[to]]></category>

		<guid isPermaLink="false">http://webstandard.wordpress.com/?p=580</guid>
		<description><![CDATA[here, I have made easy way to setup full screen through AS3 1. First of all you need to create new flash file. 2. Now you need to open component panel to drag button object in stage to save in libary 3. After component panel open , you have to drag button object into stage [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=580&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>here, I have made easy way to setup full screen through AS3</p>
<p>1. First of all you need to create new flash file.</p>
<p><a href="http://webstandard.files.wordpress.com/2010/05/new.jpg"><img class="alignnone size-medium wp-image-582" title="new" src="http://webstandard.files.wordpress.com/2010/05/new.jpg?w=290&#038;h=300" alt="" width="290" height="300" /></a></p>
<p>2. Now you need to open component panel to drag button object in stage to save in libary</p>
<p><a href="http://webstandard.files.wordpress.com/2010/05/components.jpg"><img class="alignnone size-medium wp-image-583" title="components" src="http://webstandard.files.wordpress.com/2010/05/components.jpg?w=174&#038;h=300" alt="" width="174" height="300" /></a></p>
<p>3. After component panel open , you have to drag button object into stage</p>
<p><a href="http://webstandard.files.wordpress.com/2010/05/label.jpg"><img class="alignnone size-medium wp-image-584" title="label" src="http://webstandard.files.wordpress.com/2010/05/label.jpg?w=300&#038;h=279" alt="" width="300" height="279" /></a></p>
<p>4. I hope you will see button on your libary panel. If yes then remove button from the stage. Now draw some shape in stage. here, I have draw rectangles.</p>
<p><a href="http://webstandard.files.wordpress.com/2010/05/makeshapes.jpg"><img class="alignnone size-medium wp-image-585" title="makeShapes" src="http://webstandard.files.wordpress.com/2010/05/makeshapes.jpg?w=300&#038;h=200" alt="" width="300" height="200" /></a></p>
<p>5. Hum&#8230; ok now run our emply application  &#8221; ctrl+Enter &#8220;. I think you will get your design what you draw in the stage.</p>
<p>Now you need to paste these following codes in action script panel.</p>
<p>import fl.controls.Button;</p>
<p>var fullScreenButton:Button = new Button();<br />
fullScreenButton.label = &#8220;Full Screen&#8221;;<br />
addChild(fullScreenButton);</p>
<p>fullScreenButton.addEventListener(MouseEvent.CLICK, fullScreenButtonHandler);<br />
function fullScreenButtonHandler(event:MouseEvent)<br />
{<br />
stage.displayState = StageDisplayState.FULL_SCREEN;<br />
}</p>
<p>Now we need to make publish setting . Please click on File &gt; Publish Setting &gt;</p>
<p>6. Choose HTML Tab and select &#8220;Flash Only &#8211; Allow Full Screen&#8221; for  Template Option. and click on &#8220;Publish&#8221; button.</p>
<p><a href="http://webstandard.files.wordpress.com/2010/05/allowfullscreen.jpg"><img class="alignnone size-medium wp-image-586" title="allowFullScreen" src="http://webstandard.files.wordpress.com/2010/05/allowfullscreen.jpg?w=300&#038;h=150" alt="" width="300" height="150" /></a></p>
<p>7. Now we need to edit some html code stuff . After you publish you flash automatically create html file. in your fla file location. Now open it and find the parameter &#8220;allowFullScreen&#8221; and set true to it&#8217;s value. Save it and see in your browser and click on button to make full screen</p>
<p><a href="http://webstandard.files.wordpress.com/2010/05/full.jpg"><img class="alignnone size-medium wp-image-587" title="full" src="http://webstandard.files.wordpress.com/2010/05/full.jpg?w=300&#038;h=168" alt="" width="300" height="168" /></a></p>
<p>finished <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webstandard.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webstandard.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webstandard.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webstandard.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webstandard.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webstandard.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webstandard.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webstandard.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webstandard.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webstandard.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webstandard.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webstandard.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webstandard.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webstandard.wordpress.com/580/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=580&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webstandard.wordpress.com/2010/05/21/how-to-make-full-screen-in-flash-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebf19e0b238a2d5da56be55f0cfecaf1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htmlslicing</media:title>
		</media:content>

		<media:content url="http://webstandard.files.wordpress.com/2010/05/new.jpg?w=290" medium="image">
			<media:title type="html">new</media:title>
		</media:content>

		<media:content url="http://webstandard.files.wordpress.com/2010/05/components.jpg?w=174" medium="image">
			<media:title type="html">components</media:title>
		</media:content>

		<media:content url="http://webstandard.files.wordpress.com/2010/05/label.jpg?w=300" medium="image">
			<media:title type="html">label</media:title>
		</media:content>

		<media:content url="http://webstandard.files.wordpress.com/2010/05/makeshapes.jpg?w=300" medium="image">
			<media:title type="html">makeShapes</media:title>
		</media:content>

		<media:content url="http://webstandard.files.wordpress.com/2010/05/allowfullscreen.jpg?w=300" medium="image">
			<media:title type="html">allowFullScreen</media:title>
		</media:content>

		<media:content url="http://webstandard.files.wordpress.com/2010/05/full.jpg?w=300" medium="image">
			<media:title type="html">full</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple Video Player in Flash AS3</title>
		<link>http://webstandard.wordpress.com/2010/05/21/simple-video-player-in-flash-as3/</link>
		<comments>http://webstandard.wordpress.com/2010/05/21/simple-video-player-in-flash-as3/#comments</comments>
		<pubDate>Fri, 21 May 2010 10:58:17 +0000</pubDate>
		<dc:creator>htmlslicing</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[Player]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://webstandard.wordpress.com/?p=576</guid>
		<description><![CDATA[var nc:NetConnection = new NetConnection(); nc.connect(null); var ns:NetStream = new NetStream(nc); ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorHandler); ns.play(&#8220;papervision.flv&#8221;); function asyncErrorHandler(event:AsyncErrorEvent):void { // Null } var vid:Video = new Video(); vid.attachNetStream(ns); addChild(vid); Above code is simple to understand . Here you need flv file with name of paperVision.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=576&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>var nc:NetConnection = new NetConnection();<br />
nc.connect(null);<br />
var ns:NetStream = new NetStream(nc);<br />
ns.addEventListener(AsyncErrorEvent.ASYNC_ERROR, asyncErrorHandler);<br />
ns.play(&#8220;papervision.flv&#8221;);<br />
function asyncErrorHandler(event:AsyncErrorEvent):void<br />
{<br />
// Null<br />
}<br />
var vid:Video = new Video();<br />
vid.attachNetStream(ns);<br />
addChild(vid);</p>
<p>Above code is simple to understand . Here you need flv file with name of paperVision.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webstandard.wordpress.com/576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webstandard.wordpress.com/576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webstandard.wordpress.com/576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webstandard.wordpress.com/576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webstandard.wordpress.com/576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webstandard.wordpress.com/576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webstandard.wordpress.com/576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webstandard.wordpress.com/576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webstandard.wordpress.com/576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webstandard.wordpress.com/576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webstandard.wordpress.com/576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webstandard.wordpress.com/576/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webstandard.wordpress.com/576/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webstandard.wordpress.com/576/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=576&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webstandard.wordpress.com/2010/05/21/simple-video-player-in-flash-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebf19e0b238a2d5da56be55f0cfecaf1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htmlslicing</media:title>
		</media:content>
	</item>
		<item>
		<title>Logo Designs</title>
		<link>http://webstandard.wordpress.com/2010/04/08/logo-designs/</link>
		<comments>http://webstandard.wordpress.com/2010/04/08/logo-designs/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 05:12:25 +0000</pubDate>
		<dc:creator>htmlslicing</dc:creator>
				<category><![CDATA[Designs]]></category>

		<guid isPermaLink="false">http://webstandard.wordpress.com/?p=519</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=519&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=519&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webstandard.wordpress.com/2010/04/08/logo-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebf19e0b238a2d5da56be55f0cfecaf1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htmlslicing</media:title>
		</media:content>
	</item>
		<item>
		<title>Overlap display Object in AS3</title>
		<link>http://webstandard.wordpress.com/2010/02/03/overlap-display-object-in-as3/</link>
		<comments>http://webstandard.wordpress.com/2010/02/03/overlap-display-object-in-as3/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 05:57:21 +0000</pubDate>
		<dc:creator>htmlslicing</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[overlap]]></category>

		<guid isPermaLink="false">http://webstandard.wordpress.com/?p=545</guid>
		<description><![CDATA[This tutor is about overlapping display object to each another. Here, I have three files. Ball.as Ball.as: here, we have class of circle shape object BallSeq.as: It generates circle ball with different color and set sequence myFlash.fla here, we need to mention class BallSeq Ball.as package { import flash.display.*; import flash.text.*; public class Ball extends [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=545&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This tutor is about overlapping display object to each another. Here, I have three files. Ball.as<br />
<img src="http://webstandard.files.wordpress.com/2010/02/ball.png?w=187&#038;h=185" alt="" title="ball" width="187" height="185" class="size-full wp-image-546" /><br />
Ball.as:<br />
here, we have class of circle shape object</p>
<p>BallSeq.as:<br />
It generates circle ball with different color and set sequence</p>
<p>myFlash.fla<br />
here, we need to mention class BallSeq</p>
<p><strong>Ball.as</strong></p>
<p><code>package {<br />
	import flash.display.*;<br />
	import flash.text.*;<br />
	public class Ball extends Shape{<br />
		public var xPos:Number;<br />
		public var yPos:Number;<br />
		public var radius:Number;<br />
		public var color:uint;</p>
<p>		public function Ball(xInput:Number,yInput:Number,rInput:Number,colorInput:uint) {<br />
			var xPos=xInput;<br />
			var yPos=yInput;<br />
			var radius=rInput;<br />
			var color=colorInput;<br />
			this.graphics.beginFill(color);<br />
			this.graphics.drawCircle(xPos,yPos,radius);<br />
		}<br />
	}<br />
}<br />
</code><br />
Here, we have made Ball Class constructor with argument x postion, y position, radius, color<br />
<strong><br />
BallSeq.as</strong></p>
<p><code>package{</p>
<p>	import flash.display.Sprite;<br />
	import flash.events.MouseEvent;<br />
	public class BallSeq extends Sprite {</p>
<p>		public var container2:Sprite=new Sprite();<br />
		public var blackBall:Sprite=new Sprite();<br />
		public var redBall:Sprite=new Sprite();<br />
		public var blueBall:Sprite=new Sprite();<br />
		public var greenBall:Sprite=new Sprite();</p>
<p>		public function BallSeq(){</p>
<p>			// Black Ball<br />
			blackBall.addChild(new Ball(100,100,30,0x000000));<br />
			blackBall.name="blackBall";<br />
			//addChild(blackBall);</p>
<p>			// Green Ball<br />
			greenBall.addChild(new Ball(130,140,30,0x29990b));<br />
			greenBall.name="greenBall";<br />
			//addChild(greenBall);</p>
<p>			// Red Ball<br />
			redBall.addChild(new Ball(130,90,30,0xff0000));<br />
			redBall.name="redBall";<br />
			//addChild(redBall);</p>
<p>			// blue Ball<br />
			blueBall.addChild(new Ball(150,100,30,0x0000ff));<br />
			blueBall.name="blueBall";</p>
<p>			container2.addChild(blueBall);<br />
			container2.addChild(redBall);<br />
			container2.addChild(blackBall);<br />
			container2.addChild(greenBall);</p>
<p>			container2.swapChildren(blackBall,redBall);</p>
<p>			var i:Number=0;<br />
			while(i&lt;container2.numChildren){<br />
				container2.getChildByName(container2.getChildAt(i).name).addEventListener(MouseEvent.CLICK,putFront);<br />
				i++;<br />
			}</p>
<p>			this.addChild(container2);</p>
<p>		}</p>
<p>		public function putFront(event:MouseEvent){<br />
			container2.setChildIndex(container2.getChildByName(event.target.name),container2.numChildren-1);</p>
<p>		}</p>
<p>	}</p>
<p>}</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webstandard.wordpress.com/545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webstandard.wordpress.com/545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webstandard.wordpress.com/545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webstandard.wordpress.com/545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webstandard.wordpress.com/545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webstandard.wordpress.com/545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webstandard.wordpress.com/545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webstandard.wordpress.com/545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webstandard.wordpress.com/545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webstandard.wordpress.com/545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webstandard.wordpress.com/545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webstandard.wordpress.com/545/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webstandard.wordpress.com/545/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webstandard.wordpress.com/545/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=545&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webstandard.wordpress.com/2010/02/03/overlap-display-object-in-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebf19e0b238a2d5da56be55f0cfecaf1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htmlslicing</media:title>
		</media:content>

		<media:content url="http://webstandard.files.wordpress.com/2010/02/ball.png" medium="image">
			<media:title type="html">ball</media:title>
		</media:content>
	</item>
		<item>
		<title>Flexible Drag and Drop MovieClip in Flash AS3</title>
		<link>http://webstandard.wordpress.com/2010/02/03/flexible-drag-and-drop-movieclip-in-flash-as3/</link>
		<comments>http://webstandard.wordpress.com/2010/02/03/flexible-drag-and-drop-movieclip-in-flash-as3/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 05:27:07 +0000</pubDate>
		<dc:creator>htmlslicing</dc:creator>
				<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://webstandard.wordpress.com/?p=541</guid>
		<description><![CDATA[hi, I am comming with simple easy way to drag and drop of flash as3. I have use startDrag and stopDrag to drag and drop movieClip or any display Object. But it gives some disturbe . So, made tiny but flexible to drag and drop your object. import flash.ui.Mouse; function startDragging(event:MouseEvent):void{ stage.addEventListener(MouseEvent.MOUSE_MOVE,moveBall); } function moveBall(event:MouseEvent):void{ [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=541&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>hi, I am comming with simple easy way to drag and drop of flash as3. I have use startDrag and stopDrag to drag and drop movieClip or any display Object. But it gives some disturbe . So, made tiny but flexible to drag and drop your object. </p>
<p><code>import flash.ui.Mouse;</p>
<p>function startDragging(event:MouseEvent):void{<br />
	stage.addEventListener(MouseEvent.MOUSE_MOVE,moveBall);<br />
}</p>
<p>function moveBall(event:MouseEvent):void{<br />
	circle.x=event.stageX-circle.width/2;<br />
	circle.y=event.stageY-circle.height/2;</p>
<p>}</p>
<p>function stopDragging(event:MouseEvent):void{<br />
	stage.removeEventListener(MouseEvent.MOUSE_MOVE,moveBall);<br />
}</p>
<p>circle.addEventListener(MouseEvent.MOUSE_DOWN,startDragging);<br />
circle.addEventListener(MouseEvent.MOUSE_UP,stopDragging);</code></p>
<p><strong>Note : </strong>here circle is the movieclip</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webstandard.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webstandard.wordpress.com/541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webstandard.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webstandard.wordpress.com/541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webstandard.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webstandard.wordpress.com/541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webstandard.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webstandard.wordpress.com/541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webstandard.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webstandard.wordpress.com/541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webstandard.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webstandard.wordpress.com/541/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webstandard.wordpress.com/541/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webstandard.wordpress.com/541/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=541&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webstandard.wordpress.com/2010/02/03/flexible-drag-and-drop-movieclip-in-flash-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebf19e0b238a2d5da56be55f0cfecaf1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htmlslicing</media:title>
		</media:content>
	</item>
		<item>
		<title>Portfolio</title>
		<link>http://webstandard.wordpress.com/2010/01/02/portfolio/</link>
		<comments>http://webstandard.wordpress.com/2010/01/02/portfolio/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 04:12:57 +0000</pubDate>
		<dc:creator>htmlslicing</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://webstandard.wordpress.com/?p=537</guid>
		<description><![CDATA[Kneipp Gift Shop Kneipp The gift shop is a publication of Kneipp Nederland BV . This site is related with shopping cart system of ladies products. Here one of my important experience is making transparent background through flash object. I have overlap images in flash object. This template was sliced on nearly September 2006. This [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=537&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Kneipp Gift Shop</h3>
<p><a href="http://www.kneippgiftshop.nl/kneipp/mainpage.jsp"><img class="size-full wp-image-174 alignleft" title="Kneipp Gift Shop" src="http://www.standardxhtml.co.cc/wp-content/uploads/2008/12/portfolio.png" alt="" width="244" height="169" /></a>Kneipp The gift shop is a publication of Kneipp Nederland BV . This site is related with shopping cart system of ladies products.</p>
<p>Here one of my important experience is making  transparent background through  flash object.  I have overlap images in flash object.  This template was sliced on nearly   September 2006. This is my first experience on jsp framword to have design and xhtml/css  coding . I have used small trick of javascript  which remove border while we hover on flash object.</p>
<hr />
<h3>Viral Tracker</h3>
<p><a href="http://viraltracker.com"><img class="size-full wp-image-188 alignleft" title="Viral Tracker" src="http://www.standardxhtml.co.cc/wp-content/uploads/2008/12/kk.png" alt="" width="244" height="169" /></a>ViralTracker is a smart, powerful technology that is easy to use. It measures the reach and response of your viral internet commercials, movie trailers, game trailers, viral videos and widgets.</p>
<p>ViralTracker measures millions of weblogs, forums, websites, communities, social networks and over 350 large video portals in more than 50 countries. ViralTracker measures in real-time and worldwide. ViralTracker improves the reach and response of viral campaigns with over 300%.</p>
<p>This site is totally written in div structure rathen than table based  layout. This  Viral Tracker is one of my big projct of PHP coded in div structure.</p>
<hr />
<h3>HTML Slicing</h3>
<p><a href="http://www.html-slicing.com"><img class="size-full wp-image-188 alignleft" title="htmlslicing" src="http://www.standardxhtml.co.cc/wp-content/uploads/2008/12/htmlslicing.png" alt="" width="244" height="168" /></a>This HTML SLICING, commercial portal site . Here client upload their indesin or psd file and get ready for html slicing in specific time duration.  This site is totally sliced in W3C standared on XHTM 1.0 Translation. This is totally in div structure.</p>
<p>Here menu system is used in flash object.  I am little bit disappointed with this flash object because screen reader could not read this flash object. I would like to set addition text matter for menu system so that it could get user agent friendly.</p>
<hr />
<h3>Cool Brands</h3>
<p><a href="http://www.coolbrandsstorytelling.org/"><img class="alignleft size-full wp-image-408" title="coolbrands" src="http://www.standardxhtml.co.cc/wp-content/uploads/2008/11/coolbrands.png" alt="coolbrands" width="244" height="168" /></a>As name &#8220;Cool&#8221;, site&#8217;s design is also cool . It&#8217;s black and white professional colored web site, made in Joomla  Framework . Here extra blog component is used for customizing content from administrator session and necessary plugins are shown in frontend. Such as comment, bookmark etc. It is cross browser compatibility in FireFox 3, IE6 and IE7.</p>
<hr />
<h3>Visiting Nepal</h3>
<p><a href="http://www.visitingnepal.com"><img class="alignleft size-full wp-image-438" title="visitingnepal" src="http://www.standardxhtml.co.cc/wp-content/uploads/2008/11/visitingnepal.png" alt="visitingnepal" width="244" height="168" /></a>This design was implemented in joomla 1.5 (latest version of Joomla Framework.) Here I have don slick rss for module . This is simple and clean tempalte with integration of Joomla Framework. Right I am handling this site and update to joomla 1.5.9 on jan 22nd 2008. I love this light blue color.</p>
<hr />
<h3>Zo Dochter</h3>
<p><a href="http://www.standardxhtml.co.cc/wp-content/uploads/2008/11/zo-dochter.png"><img src="http://www.standardxhtml.co.cc/wp-content/uploads/2008/11/zo-dochter.png" alt="zo-dochter" title="zo-dochter" width="244" height="168" class="aligncenter size-full wp-image-455" /></a><br />
One of the  online community for mothers and daughters! of belgium.</p>
<p>You will find great news, tips, photos, tests and much more. Fun to work with you mother or daughter to share! Look around and good sign up to become a member!</p>
<p>New ZoDochter.nl: Take a look at Sun Video and watch the best and most talked-about videos from the past week!<br />
Watch as your personal daghoroscoop and discover what awaits you today!</p>
<h3>TradeSelect</h3>
<p>TradeSelect is the application software and web site. TradeSelect is related with business , so I have made webtemplate in blue color themes . Through the home page client could know the major vision about the feature and product of tradeselect . In tradeselect software, I have made glossy shiny effect to attaract themes. Comment wise html and css was one of the another feature of this web site. So, that debug of css and html could handle easily.</p>
<h3>OpenVz project</h3>
<p>OpenVZ is virutal server system.Currently, I have made two types of thems, one is simple and another is graphical themes. With the co-ordination with programmer, we have made flexible template framework so that designer can give design as per require. All the html  and css code are validated in W3C plus Web Content Accessible code. Additionally, we have used Jquery Javascript framework on OpenVZ project. All the designs are in pure table less. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webstandard.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webstandard.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webstandard.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webstandard.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webstandard.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webstandard.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webstandard.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webstandard.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webstandard.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webstandard.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webstandard.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webstandard.wordpress.com/537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webstandard.wordpress.com/537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webstandard.wordpress.com/537/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=537&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webstandard.wordpress.com/2010/01/02/portfolio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebf19e0b238a2d5da56be55f0cfecaf1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htmlslicing</media:title>
		</media:content>

		<media:content url="http://www.standardxhtml.co.cc/wp-content/uploads/2008/12/portfolio.png" medium="image">
			<media:title type="html">Kneipp Gift Shop</media:title>
		</media:content>

		<media:content url="http://www.standardxhtml.co.cc/wp-content/uploads/2008/12/kk.png" medium="image">
			<media:title type="html">Viral Tracker</media:title>
		</media:content>

		<media:content url="http://www.standardxhtml.co.cc/wp-content/uploads/2008/12/htmlslicing.png" medium="image">
			<media:title type="html">htmlslicing</media:title>
		</media:content>

		<media:content url="http://www.standardxhtml.co.cc/wp-content/uploads/2008/11/coolbrands.png" medium="image">
			<media:title type="html">coolbrands</media:title>
		</media:content>

		<media:content url="http://www.standardxhtml.co.cc/wp-content/uploads/2008/11/visitingnepal.png" medium="image">
			<media:title type="html">visitingnepal</media:title>
		</media:content>

		<media:content url="http://www.standardxhtml.co.cc/wp-content/uploads/2008/11/zo-dochter.png" medium="image">
			<media:title type="html">zo-dochter</media:title>
		</media:content>
	</item>
		<item>
		<title>Logo Design</title>
		<link>http://webstandard.wordpress.com/2010/01/02/logo-design/</link>
		<comments>http://webstandard.wordpress.com/2010/01/02/logo-design/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 04:07:58 +0000</pubDate>
		<dc:creator>htmlslicing</dc:creator>
				<category><![CDATA[Designs]]></category>

		<guid isPermaLink="false">http://webstandard.wordpress.com/?p=533</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=533&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://webstandard.files.wordpress.com/2010/01/logoescollection.jpg"><img src="http://webstandard.files.wordpress.com/2010/01/logoescollection.jpg?w=112&#038;h=300" alt="" title="logoesCollection" width="112" height="300" class="alignleft size-medium wp-image-534" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/webstandard.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/webstandard.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/webstandard.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/webstandard.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/webstandard.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/webstandard.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/webstandard.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/webstandard.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/webstandard.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/webstandard.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/webstandard.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/webstandard.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/webstandard.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/webstandard.wordpress.com/533/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=webstandard.wordpress.com&amp;blog=6110641&amp;post=533&amp;subd=webstandard&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://webstandard.wordpress.com/2010/01/02/logo-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ebf19e0b238a2d5da56be55f0cfecaf1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">htmlslicing</media:title>
		</media:content>

		<media:content url="http://webstandard.files.wordpress.com/2010/01/logoescollection.jpg?w=112" medium="image">
			<media:title type="html">logoesCollection</media:title>
		</media:content>
	</item>
	</channel>
</rss>
