Now, u r very much clear. Actually, u can simply elaborate ur case by writing this "I am embedding my Flash Content in a WRT". Fitstly, u should know that the cursor is on the screen not because of the Flash Lite but it is due to the WRT.
First Approach
You can disable this cursor by editing the main.html :
1- Open the main.html with notepad.
2- Find out the javascript tag and add this "window.widget.setNavigationEnabled(false );" instead of widget.setNavigationEnabled line under it. It looks likes this than (in main.html):
Code:
<SCRIPT LANGUAGE="JAVASCRIPT" TYPE="TEXT/JAVASCRIPT">
<!--
window.widget.setNavigationEnabled(false);
//-->
</SCRIPT>
3- Now. When u run this widget on device than u have to press enter once to get the focus on the flash content.After that, u can use the arrow keys in flash content and cursor should be disabled. I tested this under N78 and it is working as expected.
For more information, u can take a look here :
How_to_change_Navigation_Mode_in_WRT_Widget
Second Approach
Try Direct Launch, it is much better than the first approach.Edit the info.plist :
1- Open info.plist with notepad.
2- Instead of main.html under the key MainHTML, change the string to your_main.swf (where your_main is the name of ur main swf file). It looks like this than:
<key>MainHTML</key>
<string>your_main.swf</string>
This method also works fine.
Best Regards,
SajiSoft