Subversion Repositories AndroidProjects

Rev

Blame | Last modification | View Log | RSS feed

Menu "TitleMenu"
{
        origin 0, 0;
        fadeTime 0.2;

        Image "bg"
        {
                position 0, 0;
                size 480, 800;
                align top, left;
                texture "data/textures/black.png";
                color 1, 1, 1, 0.7;
        }
        
        Image "dlg"
        {
                position 0, 100;
                size 480, 500;
                align top, left;
                texture "data/textures/white.png";
                //color 1, 1, 1, 0.7;
                color 0.35, 0.25, 0.35, 0.8;
        }
        
        Image "bar1"
        {
                position 0, 100;
                size 480, 12;
                align top, center;
                texture "data/textures/bar_horiz.png";
        }
        
        Image "bar2"
        {
                position 0, 600;
                size 480, 12;
                align top, center;
                texture "data/textures/bar_horiz.png";
        }
        
        Label "resultTitle"
        {
                position 240, 250;
                size 100, 20;
                align center, center;
                font "scoring";
                caption "RESULT SCORE:";
                color 1, 1, 1, 1;
                scale 3;
        }
        
        Label "result"
        {
                position 240, 280;
                size 100, 20;
                align center, center;
                font "scoring";
                color 0.7, 1, 0.3, 1;
                caption "";
                scale 3;
        }

        
        SegmentButton "Exit"
        {
                position 240, 420;
                size 280, 100;
                caption "RETRY";
                align center, center;
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";
                scale 3;
                font "scoring";
                color 1, 1, 1, 1;
                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                onTouch "restart";
                                
                //clickSound "menu_click";
                pushSound "menu_push";
        }

        SegmentButton "Exit"
        {
                position 240, 540;
                size 280, 100;
                caption "Exit to Menu";
                align center, center;
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";
                scale 3;
                font "scoring";
                color 1, 1, 1, 1;
                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                onTouch "exit_to_menu";
                                
                //clickSound "menu_click";
                pushSound "menu_push";
        }
}