Results 1 to 5 of 5

Threaded View

  1. #2
    Member schmarakel's Avatar
    Join Date
    Feb 2008
    Device
    -K810,T650i,W890i
    Posts
    85
    Thanks
    2
    Thanked 10 Times in 10 Posts

    Re: Flash Menus 2.1 v.s. Regular Flash Menu's

    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

  2. The Following User Says Thank You to schmarakel For This Useful Post:


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •