<?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>Naresh Khokhaneshiya - Flash, ActionScript, FMS, AMFPHP</title>
	<atom:link href="http://nareshkhokhani.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nareshkhokhani.wordpress.com</link>
	<description>ActionScript, Flash, Flash Communication Server, Flash Media Server, JavaScript, Linux, Remoting, PHP, AMFPHP</description>
	<lastBuildDate>Tue, 21 Apr 2009 14:48:19 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='nareshkhokhani.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/b0c295a9b4bfb7d806bc46283d84d33e?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Naresh Khokhaneshiya - Flash, ActionScript, FMS, AMFPHP</title>
		<link>http://nareshkhokhani.wordpress.com</link>
	</image>
			<item>
		<title>Searching Array using Array.indexOf() function</title>
		<link>http://nareshkhokhani.wordpress.com/2009/04/21/searching-array-using-arrayindexof-function/</link>
		<comments>http://nareshkhokhani.wordpress.com/2009/04/21/searching-array-using-arrayindexof-function/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 14:48:19 +0000</pubDate>
		<dc:creator>Naresh Khokhaneshiya</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://nareshkhokhani.wordpress.com/?p=74</guid>
		<description><![CDATA[Searching in Array using Array.indexOf() function is very easy  . For example,
var toys:Array = new Array();
toys.push("ball");
toys.push("bat");
toys.push("glows");
toys.push("pads");
toys.push(23);
toys.push(14);
var searchIndex:int = toys.indexOf(&#8220;ball&#8221;);
if(searchIndex == -1)
{
trace(&#8220;No! how can it be there&#8221;);
}
else
{
trace(&#8220;Yup! it&#8217;s there&#8221;);     //output will be from here
}
So, it works fine when the value inside the indexed array is primitive &#8211; i.e. Number, String, Boolean [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=74&subd=nareshkhokhani&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Searching in Array using Array.indexOf() function is very easy <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . For example,</p>
<p><code>var toys:Array = new Array();<br />
toys.push("ball");<br />
toys.push("bat");<br />
toys.push("glows");<br />
toys.push("pads");<br />
toys.push(23);<br />
toys.push(14);</code></p>
<p>var searchIndex:int = toys.indexOf(&#8220;ball&#8221;);<br />
if(searchIndex == -1)<br />
{<br />
trace(&#8220;No! how can it be there&#8221;);<br />
}<br />
else<br />
{<br />
trace(&#8220;Yup! it&#8217;s there&#8221;);     //output will be from here<br />
}</p>
<p>So, it works fine when the value inside the indexed array is primitive &#8211; i.e. Number, String, Boolean etc. BUT it will not work when array contains objects of type Object. For example,</p>
<p><code>var toys:Array = new Array();<br />
toys.push({name:"ball", count:2});<br />
toys.push({name:"bat", count:2});<br />
toys.push({name:"glows", count:2});<br />
toys.push({name:"pads", count:2});<br />
toys.push({name:"runs", count:200});<br />
toys.push({name:"wickets", count:2});</code></p>
<p>var searchIndex:int = toys.indexOf({name:&#8221;ball&#8221;, count:2});<br />
if(searchIndex == -1)<br />
{<br />
trace(&#8220;No! how can it be there&#8221;);    //output will always be from here if you search an object<br />
}<br />
else<br />
{<br />
trace(&#8220;Yup! it&#8217;s there&#8221;);<br />
}</p>
<p>So, that&#8217;s the case for objects. In the syntax of Array.indexOf(itemToSearch:*, fromIndex:int = 0), we notice that the first argument is * data type &#8211; i.e. it can be any data type, BUT it&#8217;s not working for Object. Would any one have lights on this?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshkhokhani.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshkhokhani.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshkhokhani.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshkhokhani.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshkhokhani.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshkhokhani.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshkhokhani.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshkhokhani.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshkhokhani.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshkhokhani.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=74&subd=nareshkhokhani&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nareshkhokhani.wordpress.com/2009/04/21/searching-array-using-arrayindexof-function/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c8d46c527819ea8a8de0a77a91e960?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Naresh Khokhaneshiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Set TextField horizontal scroll to initial position</title>
		<link>http://nareshkhokhani.wordpress.com/2009/04/17/set-textfield-caret-to-initial-position/</link>
		<comments>http://nareshkhokhani.wordpress.com/2009/04/17/set-textfield-caret-to-initial-position/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 15:51:47 +0000</pubDate>
		<dc:creator>Naresh Khokhaneshiya</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>

		<guid isPermaLink="false">http://nareshkhokhani.wordpress.com/?p=71</guid>
		<description><![CDATA[If you want to set the position of horizontal scroll position inside TextField, you can use TextField.scrollH.
Let&#8217;s say I am typing in the input TextField and I typed beyond the width of TextField. You will see the last characters visible you typed. Now due to some other event, say user clicks on other than this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=71&subd=nareshkhokhani&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you want to set the position of horizontal scroll position inside TextField, you can use TextField.scrollH.</p>
<p>Let&#8217;s say I am typing in the input TextField and I typed beyond the width of TextField. You will see the last characters visible you typed. Now due to some other event, say user clicks on other than this TextField, focus is changed to some other object than this TextField, you may want to reset the scroll position of TextField to starting characters in it.<br />
You will use :<br />
<code>TextField.scrollH = 0;</code></p>
<p>This will set the horizontal scroll of TextField to 0 and hence showing the starting characters in TextField.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshkhokhani.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshkhokhani.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshkhokhani.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshkhokhani.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshkhokhani.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshkhokhani.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshkhokhani.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshkhokhani.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshkhokhani.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshkhokhani.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=71&subd=nareshkhokhani&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nareshkhokhani.wordpress.com/2009/04/17/set-textfield-caret-to-initial-position/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c8d46c527819ea8a8de0a77a91e960?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Naresh Khokhaneshiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Loading Image using Loader.loadBytes()</title>
		<link>http://nareshkhokhani.wordpress.com/2009/04/08/loading-image-using-loaderloadbytes/</link>
		<comments>http://nareshkhokhani.wordpress.com/2009/04/08/loading-image-using-loaderloadbytes/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 20:14:50 +0000</pubDate>
		<dc:creator>Naresh Khokhaneshiya</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://nareshkhokhani.wordpress.com/?p=68</guid>
		<description><![CDATA[Loader class can load image from ByteArray. I used this method before a year ago to set  a part of a screen for Screen Sharing application. Right now I was having a case where I need to create an image from Base64 encoded string. I am using following code to do this ::
var str:String = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=68&subd=nareshkhokhani&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Loader class can load image from ByteArray. I used this method before a year ago to set  a part of a screen for Screen Sharing application. Right now I was having a case where I need to create an image from Base64 encoded string. I am using following code to do this ::</p>
<p><code>var str:String = "";    //It won't be an empty string <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  because it will a base64 encoded string of image.</p>
<p>var byteArr:ByteArray = Base64.converToByteArray(str);    //Here you can use any ready made library to decode and convert the String into ByteArray. I used ready made library from <a title="Base64 Encoder-Decoder by DynamicFlash" href="http://dynamicflash.com/downloads/base64/Base64-1.1.0.zip" target="_blank">here</a>.</p>
<p>var loader:Loader = new Loader();</p>
<p>loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onImageLoaded);</p>
<p>loader.loadBytes(byteArr);</p>
<p>function onImageLoaded(e:Event):void{</p>
<p>addChild(loader);</p>
<p>trace(loader.width + " : " + loader.height);</p>
<p>}</code></p>
<p>That&#8217;s it. This can be useful where you can not load the image from server because you don&#8217;t have the image but it&#8217;s data as string. May this can be useful to some one <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshkhokhani.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshkhokhani.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshkhokhani.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshkhokhani.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshkhokhani.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshkhokhani.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshkhokhani.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshkhokhani.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshkhokhani.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshkhokhani.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=68&subd=nareshkhokhani&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nareshkhokhani.wordpress.com/2009/04/08/loading-image-using-loaderloadbytes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c8d46c527819ea8a8de0a77a91e960?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Naresh Khokhaneshiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Built-In Context Menu Items on Flash TextField</title>
		<link>http://nareshkhokhani.wordpress.com/2009/04/08/built-in-context-menu-items-on-flash-textfield/</link>
		<comments>http://nareshkhokhani.wordpress.com/2009/04/08/built-in-context-menu-items-on-flash-textfield/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 18:44:54 +0000</pubDate>
		<dc:creator>Naresh Khokhaneshiya</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>

		<guid isPermaLink="false">http://nareshkhokhani.wordpress.com/?p=65</guid>
		<description><![CDATA[Is there any way to hide default context menu items on Flash TextField? Some one will try to answer with ContextMenu.hideBuiltInItems() function, but this function does not really work with Flash TextField. It does not hide the built in items.
So following code does work but not as expected ::
var myContextMenu:ContextMenu = new ContextMenu();
myContextMenu.hideBuiltInItems();
var txt:TextField = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=65&subd=nareshkhokhani&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Is there any way to hide default context menu items on Flash TextField? Some one will try to answer with ContextMenu.hideBuiltInItems() function, but this function does not really work with Flash TextField. It does not hide the built in items.</p>
<p>So following code does work but not as expected ::</p>
<p>var myContextMenu:ContextMenu = new ContextMenu();<br />
myContextMenu.hideBuiltInItems();</p>
<p>var txt:TextField = new TextField();<br />
txt.contextMenu = myContextMenu;<br />
addChild(txt);</p>
<p>Now if you right click on TextField then you will see that you can see all the built in item. Any one knows why?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshkhokhani.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshkhokhani.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshkhokhani.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshkhokhani.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshkhokhani.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshkhokhani.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshkhokhani.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshkhokhani.wordpress.com/65/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshkhokhani.wordpress.com/65/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshkhokhani.wordpress.com/65/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=65&subd=nareshkhokhani&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nareshkhokhani.wordpress.com/2009/04/08/built-in-context-menu-items-on-flash-textfield/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c8d46c527819ea8a8de0a77a91e960?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Naresh Khokhaneshiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Flash Player 10 Release Candidate</title>
		<link>http://nareshkhokhani.wordpress.com/2008/08/22/flash-player-10-release-candidate/</link>
		<comments>http://nareshkhokhani.wordpress.com/2008/08/22/flash-player-10-release-candidate/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 12:03:01 +0000</pubDate>
		<dc:creator>Naresh Khokhaneshiya</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[ASTRO]]></category>
		<category><![CDATA[Flash Player 10]]></category>

		<guid isPermaLink="false">http://nareshkhokhani.wordpress.com/?p=63</guid>
		<description><![CDATA[On August 11, 2008, Adobe released Flash Player 10 Release Candidate. This version has only one update from last Beta update and that is NSS, i.e. Flash Player 10 for Linux now supports Mozilla&#8217;s Network Security Services(NSS) for secure network connections.
You can find more information about this on adobe labs over Flash Player 10 release [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=63&subd=nareshkhokhani&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>On August 11, 2008, <a title="Adobe Inc." href="http://www.adobe.com" target="_blank">Adobe</a> released Flash Player 10 Release Candidate. This version has only one update from last Beta update and that is NSS, i.e. Flash Player 10 for Linux now supports Mozilla&#8217;s Network Security Services(NSS) for secure network connections.</p>
<p>You can find more information about this on adobe labs over <a title="Adobe Labs - Flash Player 10 Beta Release Notes" href="http://labs.adobe.com/technologies/flashplayer10/releasenotes.html#features" target="_blank">Flash Player 10 release notes</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nareshkhokhani.wordpress.com/63/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nareshkhokhani.wordpress.com/63/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshkhokhani.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshkhokhani.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshkhokhani.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshkhokhani.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshkhokhani.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshkhokhani.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshkhokhani.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshkhokhani.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshkhokhani.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshkhokhani.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=63&subd=nareshkhokhani&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nareshkhokhani.wordpress.com/2008/08/22/flash-player-10-release-candidate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c8d46c527819ea8a8de0a77a91e960?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Naresh Khokhaneshiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Flash: TextField.htmlText and Automatic Line Breaks</title>
		<link>http://nareshkhokhani.wordpress.com/2008/08/17/flash-textfieldhtmltext-and-automatic-line-breaks/</link>
		<comments>http://nareshkhokhani.wordpress.com/2008/08/17/flash-textfieldhtmltext-and-automatic-line-breaks/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 07:58:57 +0000</pubDate>
		<dc:creator>Naresh Khokhaneshiya</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Line Breaks]]></category>
		<category><![CDATA[TextField]]></category>

		<guid isPermaLink="false">http://nareshkhokhani.wordpress.com/?p=60</guid>
		<description><![CDATA[Problem :: When you deal with TextField.htmlText don’t append any html strings directly to htmlText property of TextField. Because the TextField appends “&#60;br&#62;” tag automatically before it appends any html string to htmlText property, it will set your string automatically in next line instead of the current line. This mistake is done to save memory [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=60&subd=nareshkhokhani&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Problem</strong> :: When you deal with TextField.htmlText don’t append any html strings directly to htmlText property of TextField. Because the TextField appends “&lt;br&gt;” tag automatically before it appends any html string to htmlText property, it will set your string automatically in next line instead of the current line. This mistake is done to save memory as we don’t have to create a temporary string.</p>
<p>Example :</p>
<p>textField.htmlText = “”;                 //clear any previous texts</p>
<p>for(var i:uint = 0; i &lt; 3; i++)<br />
{<br />
var str:String = “”;<br />
str += “Hello World”;<br />
str += “&lt;br&gt;”;                    //As you’re thinking of breaking line from here<br />
textField.htmlText += str;<br />
}</p>
<p>//output would be something like following ::<br />
Hello World<br />
//This line break because of &lt;br&gt; tag<br />
Hello World         //This is an automatic line break<br />
//This line break because of &lt;br&gt; tag<br />
Hello World         //This is an automatic line break<br />
//output finished</p>
<p><strong>Possible Solution</strong> :: Create an empty string and append all the html strings to this string. When the final string is ready, assign this string to htmlText property of TextField. This will not create any unnecessary line breaks inside TextField.</p>
<p>Example :</p>
<p>textField.htmlText = “”;                 //clear any previous texts<br />
var htmlStr:String = “”;                  //Temporary empty string</p>
<p>for(var i:uint = 0; i &lt; 3; i++)<br />
{<br />
var str:String = “”;<br />
str += “Hello World”;<br />
str += “&lt;br&gt;”;                    //As you’re thinking of breaking line from here<br />
htmlStr += str;<br />
}</p>
<p>textField.htmlText = htmlStr;</p>
<p>//output would be something like following ::<br />
Hello World<br />
Hello World<br />
Hello World<br />
//output finished</p>
<p>Hope this would prevent someone from mistakes which I did <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nareshkhokhani.wordpress.com/60/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nareshkhokhani.wordpress.com/60/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshkhokhani.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshkhokhani.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshkhokhani.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshkhokhani.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshkhokhani.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshkhokhani.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshkhokhani.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshkhokhani.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshkhokhani.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshkhokhani.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=60&subd=nareshkhokhani&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nareshkhokhani.wordpress.com/2008/08/17/flash-textfieldhtmltext-and-automatic-line-breaks/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c8d46c527819ea8a8de0a77a91e960?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Naresh Khokhaneshiya</media:title>
		</media:content>
	</item>
		<item>
		<title>FlashDevelop and SVN Integration</title>
		<link>http://nareshkhokhani.wordpress.com/2008/08/17/flashdevelop-and-svn-integration/</link>
		<comments>http://nareshkhokhani.wordpress.com/2008/08/17/flashdevelop-and-svn-integration/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 07:50:59 +0000</pubDate>
		<dc:creator>Naresh Khokhaneshiya</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[FlashDevelop]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://nareshkhokhani.wordpress.com/?p=48</guid>
		<description><![CDATA[Though FlashDevelop guys are working on integrating FlashDevelop with SVN, we can go with this handy tool.
To integrate SVN with FlashDevelop, you should have installed one of the SVN clients (say tortoiseSVN) on your machine.
FlashDevelop can be integrated with SVN using following steps ::
Step 1:
Create a file named build.bat in the directory containing your FlashDevelop [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=48&subd=nareshkhokhani&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Though <a href="http://www.flashdevelop.org" target="_blank">FlashDevelop</a> guys are working on integrating FlashDevelop with SVN, we can go with this handy tool.</p>
<p>To integrate SVN with FlashDevelop, you should have installed one of the SVN clients (say <a title="tortoisesvn.tigris.org" href="http://tortoisesvn.tigris.org/" target="_blank">tortoiseSVN</a>) on your machine.</p>
<p>FlashDevelop can be integrated with SVN using following steps ::</p>
<p><strong>Step 1:</strong></p>
<p>Create a file named build.bat in the directory containing your FlashDevelop project file and paste following code in that file :</p>
<p><em>@ECHO OFF</em></p>
<p><em>set TORTOISESVN_PATH = C:\Program Files\TortoiseSVN\bin<br />
set CURRENT_PATH=%CD%</em></p>
<p><em>&#8220;%TORTOISESVN_PATH%\TortoiseProc.exe&#8221; /command:commit /path:&#8221;%CURRENT_PATH%\*&#8221;/logmsgfile:&#8221;%CURRENT_PATH%\logmsg.txt&#8221; /notempfile /closeonend:3</em></p>
<p><em>&#8220;%TORTOISESVN_PATH%\SubWCRev.exe&#8221; &#8220;%CURRENT_PATH%&#8221; &#8220;%CURRENT_PATH%\version.a&#8221; &#8220;%CURRENT_PATH%\version.txt&#8221;</em></p>
<p><em>pause</em></p>
<p><strong>Step 2:</strong></p>
<p>Also create another file named “version.a” with following content ::</p>
<p><em>major=0;<br />
minor=1;<br />
build=$WCREV$ ;<br />
date=&#8221;$WCDATE$&#8221; ;</em></p>
<p><strong>Step 3:</strong></p>
<p>Now go to Flash Develop Project Explorer  Right clik on project  Properties  Build<br />
In the Post-Build Command Line, add following line ::</p>
<p><em>$(ProjectDir)\build.bat</em></p>
<p><strong>Step 4:</strong></p>
<p>Press F8, when you want to commit files inside the FlashDevelop project.</p>
<p>You can fine more information regaring this on : <a title="SVN version control in FlashDevelopp projects" href="http://www.blixtsystems.com/2008/05/svn-version-control-in-flashdevelop-projects/" target="_blank">FlashDevelop and SVN Integration</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nareshkhokhani.wordpress.com/48/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nareshkhokhani.wordpress.com/48/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshkhokhani.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshkhokhani.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshkhokhani.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshkhokhani.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshkhokhani.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshkhokhani.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshkhokhani.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshkhokhani.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshkhokhani.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshkhokhani.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=48&subd=nareshkhokhani&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nareshkhokhani.wordpress.com/2008/08/17/flashdevelop-and-svn-integration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c8d46c527819ea8a8de0a77a91e960?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Naresh Khokhaneshiya</media:title>
		</media:content>
	</item>
		<item>
		<title>Ans: ActionScript 3.0 Object class Quiz</title>
		<link>http://nareshkhokhani.wordpress.com/2008/08/17/ans-actionscript-30-object-class-quiz/</link>
		<comments>http://nareshkhokhani.wordpress.com/2008/08/17/ans-actionscript-30-object-class-quiz/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 06:42:45 +0000</pubDate>
		<dc:creator>Naresh Khokhaneshiya</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>

		<guid isPermaLink="false">http://nareshkhokhani.wordpress.com/?p=55</guid>
		<description><![CDATA[And here is the answer to quiz ::
undefined                                   //as property &#8216;prop1&#8242; is not defined in obj2 and we pointed obj1 to obj2
Khokhaneshiya                          //now we defined &#8216;prop1&#8242; in obj1 and set value &#8216;Khokhaneshiya&#8217;
//also obj2.prop1 will be Khokhaneshiya&#8230; You can trace out  
What you were thinking?  
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=55&subd=nareshkhokhani&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>And here is the answer to quiz ::</p>
<p>undefined                                   //as property &#8216;prop1&#8242; is not defined in obj2 and we pointed obj1 to obj2</p>
<p>Khokhaneshiya                          //now we defined &#8216;prop1&#8242; in obj1 and set value &#8216;Khokhaneshiya&#8217;</p>
<p>//also <strong>obj2.prop1</strong> will be <strong>Khokhaneshiya</strong>&#8230; You can trace out <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>What you were thinking? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nareshkhokhani.wordpress.com/55/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nareshkhokhani.wordpress.com/55/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshkhokhani.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshkhokhani.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshkhokhani.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshkhokhani.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshkhokhani.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshkhokhani.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshkhokhani.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshkhokhani.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshkhokhani.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshkhokhani.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=55&subd=nareshkhokhani&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nareshkhokhani.wordpress.com/2008/08/17/ans-actionscript-30-object-class-quiz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c8d46c527819ea8a8de0a77a91e960?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Naresh Khokhaneshiya</media:title>
		</media:content>
	</item>
		<item>
		<title>ActionScript 3.0 Object class Quiz</title>
		<link>http://nareshkhokhani.wordpress.com/2008/08/15/actionscript-30-object-class-quiz/</link>
		<comments>http://nareshkhokhani.wordpress.com/2008/08/15/actionscript-30-object-class-quiz/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 15:52:35 +0000</pubDate>
		<dc:creator>Naresh Khokhaneshiya</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[ActionScript 3.0]]></category>

		<guid isPermaLink="false">http://nareshkhokhani.wordpress.com/?p=46</guid>
		<description><![CDATA[Check following code ::
var obj1:Object = new Object();
obj1.prop1 = “Naresh”;
obj1.prop2 = “Khokhaneshiya”;
var obj2:Object = new Object();
obj2.prop2 = “Hello world”;
obj1 = obj2;
trace(obj1.prop1); //What will be output here
obj1.prop1 = “Khokhaneshiya”;
trace(obj1.prop1); //What will be output here
Be honest, Don’t trace it out using Flash.
You will have answer in following posts !
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=46&subd=nareshkhokhani&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Check following code ::</p>
<p><em>var obj1:Object = new Object();<br />
obj1.prop1 = “Naresh”;<br />
obj1.prop2 = “Khokhaneshiya”;<br />
var obj2:Object = new Object();<br />
obj2.prop2 = “Hello world”;<br />
obj1 = obj2;<br />
trace(obj1.prop1); </em>//What will be output here<br />
<em>obj1.prop1 = “Khokhaneshiya”;<br />
trace(obj1.prop1);</em> //What will be output here</p>
<p><strong>Be honest, Don’t trace it out using Flash.</strong></p>
<p>You will have answer in following posts !</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nareshkhokhani.wordpress.com/46/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nareshkhokhani.wordpress.com/46/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshkhokhani.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshkhokhani.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshkhokhani.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshkhokhani.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshkhokhani.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshkhokhani.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshkhokhani.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshkhokhani.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshkhokhani.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshkhokhani.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=46&subd=nareshkhokhani&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nareshkhokhani.wordpress.com/2008/08/15/actionscript-30-object-class-quiz/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c8d46c527819ea8a8de0a77a91e960?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Naresh Khokhaneshiya</media:title>
		</media:content>
	</item>
		<item>
		<title>AIR and Network Detection</title>
		<link>http://nareshkhokhani.wordpress.com/2008/08/15/air-and-network-detection/</link>
		<comments>http://nareshkhokhani.wordpress.com/2008/08/15/air-and-network-detection/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 15:47:38 +0000</pubDate>
		<dc:creator>Naresh Khokhaneshiya</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Network]]></category>

		<guid isPermaLink="false">http://nareshkhokhani.wordpress.com/?p=44</guid>
		<description><![CDATA[We can detetct the network in AIR using following code ::
Need to use ‘ServiceMonitorShim’ complied clip from AIR components in your fla file.
import air.net.URLMonitor;
import flash.net.URLRequest;
import flash.events.StatusEvent;
var monitor:URLMonitor;
monitor = new URLMonitor(new URLRequest(&#8216;http://192.168.0.57&#8242;));
monitor.addEventListener(StatusEvent.STATUS, announceStatus);
monitor.start();
function announceStatus(e:StatusEvent):void
{
         trace(&#8220;Status change. Current status: &#8221; + monitor.available);
}
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=44&subd=nareshkhokhani&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>We can detetct the network in AIR using following code ::</p>
<p>Need to use ‘ServiceMonitorShim’ complied clip from AIR components in your fla file.</p>
<p>import air.net.URLMonitor;<br />
import flash.net.URLRequest;<br />
import flash.events.StatusEvent;<br />
var monitor:URLMonitor;<br />
monitor = new URLMonitor(new URLRequest(&#8216;http://192.168.0.57&#8242;));<br />
monitor.addEventListener(StatusEvent.STATUS, announceStatus);<br />
monitor.start();<br />
function announceStatus(e:StatusEvent):void<br />
{<br />
         trace(&#8220;Status change. Current status: &#8221; + monitor.available);<br />
}</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/nareshkhokhani.wordpress.com/44/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/nareshkhokhani.wordpress.com/44/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nareshkhokhani.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nareshkhokhani.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nareshkhokhani.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nareshkhokhani.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nareshkhokhani.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nareshkhokhani.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nareshkhokhani.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nareshkhokhani.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nareshkhokhani.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nareshkhokhani.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nareshkhokhani.wordpress.com&blog=790578&post=44&subd=nareshkhokhani&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://nareshkhokhani.wordpress.com/2008/08/15/air-and-network-detection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/70c8d46c527819ea8a8de0a77a91e960?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Naresh Khokhaneshiya</media:title>
		</media:content>
	</item>
	</channel>
</rss>