<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Set Flex to Focus on Application Load</title>
	<atom:link href="http://www.webappsolution.com/wordpress/2010/08/31/set-flex-to-focus-on-application-load/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webappsolution.com/wordpress/2010/08/31/set-flex-to-focus-on-application-load/</link>
	<description>When you're in need of an appsolution</description>
	<pubDate>Fri, 18 May 2012 01:00:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Focusing flash and trapping browser keyboard input « tripleaxis.com</title>
		<link>http://www.webappsolution.com/wordpress/2010/08/31/set-flex-to-focus-on-application-load/comment-page-1/#comment-2854</link>
		<dc:creator>Focusing flash and trapping browser keyboard input « tripleaxis.com</dc:creator>
		<pubDate>Mon, 20 Feb 2012 16:55:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=834#comment-2854</guid>
		<description>[...] Usually if you want to give focus to an HTML element, you just call the focus() method directly on the object, but not all browsers support this &#8211; in fact Chrome and Safari will ignore focus requests. (more info here) [...]</description>
		<content:encoded><![CDATA[<p>[...] Usually if you want to give focus to an HTML element, you just call the focus() method directly on the object, but not all browsers support this &#8211; in fact Chrome and Safari will ignore focus requests. (more info here) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tarun</title>
		<link>http://www.webappsolution.com/wordpress/2010/08/31/set-flex-to-focus-on-application-load/comment-page-1/#comment-2797</link>
		<dc:creator>Tarun</dc:creator>
		<pubDate>Thu, 13 Oct 2011 13:08:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=834#comment-2797</guid>
		<description>Thanks for the solution. it worked for me</description>
		<content:encoded><![CDATA[<p>Thanks for the solution. it worked for me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chess</title>
		<link>http://www.webappsolution.com/wordpress/2010/08/31/set-flex-to-focus-on-application-load/comment-page-1/#comment-2795</link>
		<dc:creator>Chess</dc:creator>
		<pubDate>Tue, 11 Oct 2011 12:02:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=834#comment-2795</guid>
		<description>In my opinion better is using callback from swfobject. Stealing focus by app from another node doesn't look like a good behavior.

Reference:
http://code.google.com/p/swfobject/wiki/api#swfobject.embedSWF(swfUrlStr,_replaceElemIdStr,_widthStr,_height</description>
		<content:encoded><![CDATA[<p>In my opinion better is using callback from swfobject. Stealing focus by app from another node doesn&#8217;t look like a good behavior.</p>
<p>Reference:<br />
<a href="http://code.google.com/p/swfobject/wiki/api#swfobject.embedSWF" rel="nofollow">http://code.google.com/p/swfobject/wiki/api#swfobject.embedSWF</a>(swfUrlStr,_replaceElemIdStr,_widthStr,_height</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Westberg</title>
		<link>http://www.webappsolution.com/wordpress/2010/08/31/set-flex-to-focus-on-application-load/comment-page-1/#comment-2589</link>
		<dc:creator>Andrew Westberg</dc:creator>
		<pubDate>Fri, 31 Dec 2010 08:21:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=834#comment-2589</guid>
		<description>I believe if your swf adds the parameter wmode="opaque" along with the tabIndex it will work in Chrome.  See my post: http://www.flexjunk.com/2010/12/30/managing-initial-swf-focus-in-all-browsers/</description>
		<content:encoded><![CDATA[<p>I believe if your swf adds the parameter wmode=&#8221;opaque&#8221; along with the tabIndex it will work in Chrome.  See my post: <a href="http://www.flexjunk.com/2010/12/30/managing-initial-swf-focus-in-all-browsers/" rel="nofollow">http://www.flexjunk.com/2010/12/30/managing-initial-swf-focus-in-all-browsers/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://www.webappsolution.com/wordpress/2010/08/31/set-flex-to-focus-on-application-load/comment-page-1/#comment-2562</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Thu, 11 Nov 2010 02:57:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=834#comment-2562</guid>
		<description>// Works on Chrome/Safari
function setBrowserFocus(){
    var f = document.getElementById('${application}');
    if (f) {
        f.tabIndex = 0;
        f.focus();
    }
}</description>
		<content:encoded><![CDATA[<p>// Works on Chrome/Safari<br />
function setBrowserFocus(){<br />
    var f = document.getElementById(&#8217;${application}&#8217;);<br />
    if (f) {<br />
        f.tabIndex = 0;<br />
        f.focus();<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HyperTech Power Programmer III</title>
		<link>http://www.webappsolution.com/wordpress/2010/08/31/set-flex-to-focus-on-application-load/comment-page-1/#comment-1369</link>
		<dc:creator>HyperTech Power Programmer III</dc:creator>
		<pubDate>Wed, 01 Sep 2010 01:49:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=834#comment-1369</guid>
		<description>[...] Set Flex to Focus on Application Load &#124; Web App Solution Blog [...]</description>
		<content:encoded><![CDATA[<p>[...] Set Flex to Focus on Application Load | Web App Solution Blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giving You Serenity – Facts About NACM &#124; WHATEVER THE HELL WE WANT . COM</title>
		<link>http://www.webappsolution.com/wordpress/2010/08/31/set-flex-to-focus-on-application-load/comment-page-1/#comment-1321</link>
		<dc:creator>Giving You Serenity – Facts About NACM &#124; WHATEVER THE HELL WE WANT . COM</dc:creator>
		<pubDate>Tue, 31 Aug 2010 22:13:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.webappsolution.com/wordpress/?p=834#comment-1321</guid>
		<description>[...] Set Flex to Focus on Application Load &#124; Web App Solution Blog [...]</description>
		<content:encoded><![CDATA[<p>[...] Set Flex to Focus on Application Load | Web App Solution Blog [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

