View Single Post
Posts: 291 | Thanked: 398 times | Joined on Jan 2011 @ USA
#96
To make the popup menu to auto-retract after few sec. by edit function toggleMenu(), it's located in all the files which name has view on it like HomeView, UserVideoView..etc..

add 1 line "menuTimer.running=true;" to this function

Code:
    function toggleMenu() {
        /* Toggle the state of the menu */

        if (menuLoader.source == "") {
            menuLoader.source = "MenuList.qml";
             menuTimer.running = true; ------->added
        }
        else {
            menuLoader.item.state = "";
            menuTimer.running = true;
        }
    }

then roll down a little bit and look for:
(note: there are several timer on the same page, make sure change the one which contains onTriggered: menuLoader.source = "")

Code:
          Timer {
                id: menuTimer

                interval: 600 --------> change to 3000
                onTriggered: menuLoader.source = ""
            }

Marxian, please add this auto-rectract thing to the next version...it won't take long to change...only like 6 files.... Thanks!

Last edited by khuong; 2011-04-06 at 14:26.
 

The Following User Says Thank You to khuong For This Useful Post: