There are Flash lite 1.1,2.0 and 2.1!
As far as I know there are differences in the action script!
Example:
2.1
Code:
** // End of the function
function launch(appNo)
{
if (appNo != selectedVar)
{
directSel(appNo);
** // end if
getURL("FSCommand:mainmenu://", "highlight=" + (appNo - 1));
keyActive = false;
iconsOut();
** // End of the function
2.0
Code:
** // End of the function
function launch(appNo)
{
lastSelectedVar = selectedVar;
selectedVar = appNo;
select();
appVar = eval("App" + appNo + "_ID");
getURL("FSCommand:Launch", appVar);
keyActive = false;
iconsOut();
** // End of the function
It is also used FLCmd at flash lite 2.0 which you have to
replace with fscommand2 for flash lite 2.1