Hi Natrajan,
swf files embedded in HTML don't get focus by default. you have to set
the focus on swf itself using javascipt.
in the body tag of index.template.html under html-template folder in
your project write the following:
onload="window.document.${application}.focus()"
something like this:
<body scroll="no" onload="window.document.${application}.focus()">
Note. this will work on IE only. (Not with Firefox)
HTH,
-Ravi