<?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/"
	>

<channel>
	<title>Flex-Flash-Air-ActionScript-JS &#187; HTML</title>
	<atom:link href="http://blog.totusinfo.com/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.totusinfo.com</link>
	<description>totusinfo team</description>
	<lastBuildDate>Wed, 24 Feb 2010 09:38:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Get Values from popup to parent</title>
		<link>http://blog.totusinfo.com/how-to-get-values-from-popup-to-parent/</link>
		<comments>http://blog.totusinfo.com/how-to-get-values-from-popup-to-parent/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 12:19:39 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[JS]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[parent]]></category>
		<category><![CDATA[window]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=225</guid>
		<description><![CDATA[The requirement is
I had a button wen i click it a popup window will display with some values.
I have to select those values. the selected values must display in the parent window.

&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;
&#60;html&#62;

 &#60;body&#62;

 &#60;form&#62;

 &#60;table border=1&#62;
 &#60;th&#62;Name&#60;/th&#62;
 &#60;th&#62;Country&#60;/th&#62;
 &#60;tr&#62;
 &#60;td&#62;&#60;input id=&#34;name&#34; name=&#34;name&#34; /&#62;&#60;/td&#62;
 &#60;td&#62;&#60;input id=&#34;country&#34; name=&#34;country&#34; /&#62;&#60;/td&#62;
 &#60;/tr&#62;
 [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/how-to-get-values-from-popup-to-parent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Include PHP files in HTML pages using .HTACCESS</title>
		<link>http://blog.totusinfo.com/include-php-files-in-html-pages/</link>
		<comments>http://blog.totusinfo.com/include-php-files-in-html-pages/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 05:40:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[include files]]></category>
		<category><![CDATA[static html]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=210</guid>
		<description><![CDATA[Usually, its not possible to include PHP files into HTML pages. Here i got a way for this which works. Its nothing but using .HTACCESS.
Create a .HTACCESS file in the root folder or a specified folder.
Add the below code  into your .HTACCESS file
Options +FollowSymLinks
AddType application/x-httpd-php .htm
Thats it
Now, you can include PHP files into your Static [...]]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/include-php-files-in-html-pages/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Open PoPup From Flash</title>
		<link>http://blog.totusinfo.com/open-popup-from-flash/</link>
		<comments>http://blog.totusinfo.com/open-popup-from-flash/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 18:21:32 +0000</pubDate>
		<dc:creator>druva</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[utils]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[navigateToURL]]></category>
		<category><![CDATA[popup]]></category>

		<guid isPermaLink="false">http://blog.totusinfo.com/?p=286</guid>
		<description><![CDATA[
var b:Button = new Button();
b.label = 'openNewWindow';
addChild(b);
b.addEventListener(MouseEvent.MOUSE_DOWN, OpenPopUpWindow);
function OpenPopUpWindow(e:MouseEvent):void {
  var result:String = ;
  var url:URLRequest = new URLRequest(&#34;javascript:window.open('http://www.totusinfo.com','win','height=800,
           width=800,toolbar=yes,scrollbars=yes');void(0);&#34;);
  navigateToURL(url, &#34;_self&#34;);
}

]]></description>
		<wfw:commentRss>http://blog.totusinfo.com/open-popup-from-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

