<?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>Flex Action</title>
	<atom:link href="http://actionflex.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://actionflex.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 08 Sep 2010 16:16:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='actionflex.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Flex Action</title>
		<link>http://actionflex.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://actionflex.wordpress.com/osd.xml" title="Flex Action" />
	<atom:link rel='hub' href='http://actionflex.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Duplicate Error Tooltip in Flex 4</title>
		<link>http://actionflex.wordpress.com/2010/09/08/duplicate-error-tooltip-in-flex-4/</link>
		<comments>http://actionflex.wordpress.com/2010/09/08/duplicate-error-tooltip-in-flex-4/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 16:16:52 +0000</pubDate>
		<dc:creator>Manik Magar</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Duplicate error string]]></category>
		<category><![CDATA[error tooltip repeating]]></category>
		<category><![CDATA[Flex 4]]></category>
		<category><![CDATA[MXML]]></category>
		<category><![CDATA[Validator]]></category>

		<guid isPermaLink="false">https://actionflex.wordpress.com/2010/09/08/duplicate-error-tooltip-in-flex-4/</guid>
		<description><![CDATA[Recently i was working with Flex 4 validators. I noticed that whenever i was validating controls, every time error tooltip was repeating on control. I did lot of debugging and tried every alternative. I was creating validator in actionscript code instead of in mxml. 1: private function doValidation(comp:TextInput):void{ 2: var strValidator:StringValidator = new StringValidator(); 3: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=actionflex.wordpress.com&amp;blog=9581111&amp;post=9&amp;subd=actionflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently i was working with Flex 4 validators. I noticed that whenever i was validating controls, every time error tooltip was repeating on control.</p>
<p>I did lot of debugging and tried every alternative. </p>
<p>I was creating validator in actionscript code instead of in mxml.</p>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.5%;font-family:&#039;direction:ltr;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">function</span> doValidation(comp:TextInput):<span style="color:#0000ff;">void</span>{</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span>     <span style="color:#0000ff;">var</span> strValidator:StringValidator = <span style="color:#0000ff;">new</span> StringValidator();</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span>     <span style="color:#008000;">// validator init code</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum4">   4:</span>     strValidator.source = comp;</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum5">   5:</span>     </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum6">   6:</span>     strValidator.validate();</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum7">   7:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p>Every time i called doValidation(comp), duplicate error message used to appear as error tooltip on comp control.</p>
<p>Finally after debugging framework code, i found that validation event handler method in UIComponent used to cache the validators assigned to controls.</p>
<p>To resolve this issue, either create the validator in mxml or reuse the validator instead of creating it for each method call.</p>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.5%;font-family:&#039;direction:ltr;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">var</span> strValidator:StringValidator = <span style="color:#0000ff;">new</span> StringValidator();</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span>&#160; </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span> <span style="color:#0000ff;">private</span> <span style="color:#0000ff;">function</span> doValidation(comp:TextInput):<span style="color:#0000ff;">void</span>{</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum4">   4:</span>     <span style="color:#008000;">// reset strValidator properties for reuse</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum5">   5:</span>     strValidator.source = comp;</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum6">   6:</span>     strValidator.validate();</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#039;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum7">   7:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p>Now as we are using same instance of validator, duplicate error string issue should have been resolved.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/actionflex.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/actionflex.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/actionflex.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/actionflex.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/actionflex.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/actionflex.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/actionflex.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/actionflex.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/actionflex.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/actionflex.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/actionflex.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/actionflex.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/actionflex.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/actionflex.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=actionflex.wordpress.com&amp;blog=9581111&amp;post=9&amp;subd=actionflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://actionflex.wordpress.com/2010/09/08/duplicate-error-tooltip-in-flex-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fabcc0c66262357f268aea02a0634d3f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manikmagar</media:title>
		</media:content>
	</item>
		<item>
		<title>Butterfly Control in Flex &#8211; Move items between data grids</title>
		<link>http://actionflex.wordpress.com/2009/09/21/butterfly-control-in-flex-move-items-between-data-grids/</link>
		<comments>http://actionflex.wordpress.com/2009/09/21/butterfly-control-in-flex-move-items-between-data-grids/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 10:24:50 +0000</pubDate>
		<dc:creator>Manik Magar</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://actionflex.wordpress.com/2009/09/21/butterfly-control-in-flex-move-items-between-data-grids/</guid>
		<description><![CDATA[Check out my other post &#8211; http://manikmagar.wordpress.com/2009/02/25/move-items-between-flex-list-objects/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=actionflex.wordpress.com&amp;blog=9581111&amp;post=7&amp;subd=actionflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Check out my other post &#8211; </p>
<p><a title="http://manikmagar.wordpress.com/2009/02/25/move-items-between-flex-list-objects/" href="http://manikmagar.wordpress.com/2009/02/25/move-items-between-flex-list-objects/">http://manikmagar.wordpress.com/2009/02/25/move-items-between-flex-list-objects/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/actionflex.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/actionflex.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/actionflex.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/actionflex.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/actionflex.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/actionflex.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/actionflex.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/actionflex.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/actionflex.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/actionflex.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/actionflex.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/actionflex.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/actionflex.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/actionflex.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=actionflex.wordpress.com&amp;blog=9581111&amp;post=7&amp;subd=actionflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://actionflex.wordpress.com/2009/09/21/butterfly-control-in-flex-move-items-between-data-grids/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fabcc0c66262357f268aea02a0634d3f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manikmagar</media:title>
		</media:content>
	</item>
		<item>
		<title>Enable tab focus in AdvancedDataGrid items</title>
		<link>http://actionflex.wordpress.com/2009/09/21/enable-tab-focus-in-advanceddatagrid-items/</link>
		<comments>http://actionflex.wordpress.com/2009/09/21/enable-tab-focus-in-advanceddatagrid-items/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 10:21:08 +0000</pubDate>
		<dc:creator>Manik Magar</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[AdvancedDataGrid]]></category>
		<category><![CDATA[DataGrid]]></category>
		<category><![CDATA[enable focus]]></category>
		<category><![CDATA[itemRendere]]></category>

		<guid isPermaLink="false">http://actionflex.wordpress.com/2009/09/21/enable-tab-focus-in-advanceddatagrid-items/</guid>
		<description><![CDATA[Check out my other blog http://manikmagar.wordpress.com/2009/09/19/enable-tab-focus-in-advanceddatagrid-items/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=actionflex.wordpress.com&amp;blog=9581111&amp;post=5&amp;subd=actionflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Check out my other blog <a title="http://manikmagar.wordpress.com/2009/09/19/enable-tab-focus-in-advanceddatagrid-items/" href="http://manikmagar.wordpress.com/2009/09/19/enable-tab-focus-in-advanceddatagrid-items/">http://manikmagar.wordpress.com/2009/09/19/enable-tab-focus-in-advanceddatagrid-items/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/actionflex.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/actionflex.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/actionflex.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/actionflex.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/actionflex.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/actionflex.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/actionflex.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/actionflex.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/actionflex.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/actionflex.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/actionflex.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/actionflex.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/actionflex.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/actionflex.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=actionflex.wordpress.com&amp;blog=9581111&amp;post=5&amp;subd=actionflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://actionflex.wordpress.com/2009/09/21/enable-tab-focus-in-advanceddatagrid-items/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fabcc0c66262357f268aea02a0634d3f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manikmagar</media:title>
		</media:content>
	</item>
		<item>
		<title>ActionScript Object properties &#8211; AS Reflection</title>
		<link>http://actionflex.wordpress.com/2009/09/21/actionscript-object-properties-as-reflection/</link>
		<comments>http://actionflex.wordpress.com/2009/09/21/actionscript-object-properties-as-reflection/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 10:16:37 +0000</pubDate>
		<dc:creator>Manik Magar</dc:creator>
				<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Introspection]]></category>
		<category><![CDATA[Object Util]]></category>
		<category><![CDATA[Reflection]]></category>

		<guid isPermaLink="false">http://actionflex.wordpress.com/2009/09/21/actionscript-object-properties-as-reflection/</guid>
		<description><![CDATA[Check out http://manikmagar.wordpress.com/2009/09/20/iterate-through-actionscript-object-properties-as-reflection/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=actionflex.wordpress.com&amp;blog=9581111&amp;post=4&amp;subd=actionflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Check out <a title="http://manikmagar.wordpress.com/2009/09/20/iterate-through-actionscript-object-properties-as-reflection/" href="http://manikmagar.wordpress.com/2009/09/20/iterate-through-actionscript-object-properties-as-reflection/">http://manikmagar.wordpress.com/2009/09/20/iterate-through-actionscript-object-properties-as-reflection/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/actionflex.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/actionflex.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/actionflex.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/actionflex.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/actionflex.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/actionflex.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/actionflex.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/actionflex.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/actionflex.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/actionflex.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/actionflex.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/actionflex.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/actionflex.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/actionflex.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=actionflex.wordpress.com&amp;blog=9581111&amp;post=4&amp;subd=actionflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://actionflex.wordpress.com/2009/09/21/actionscript-object-properties-as-reflection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fabcc0c66262357f268aea02a0634d3f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manikmagar</media:title>
		</media:content>
	</item>
	</channel>
</rss>
