Subversion Repositories AndroidProjects

Rev

Rev 533 | Rev 539 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

Menu "SubMenuEndless"
{
        origin 0, 0;
        
        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, 150;
                size 480, 500;
                align top, left;
                texture "data/textures/black.png";
                color 1, 1, 1, 0.7;
        }
        
        Image "bar1"
        {
                position 0, 150;
                size 480, 12;
                align top, center;
                texture "data/textures/bar_horiz.png";
        }
        
        Image "bar2"
        {
                position 0, 650;
                size 480, 12;
                align top, center;
                texture "data/textures/bar_horiz.png";
        }
        
        Label "speedLabel"
        {
                position 100, 210;
                size 100, 20;
                align left, center;
                font "scoring";
                caption "Speed Level";
                scale 3;
        }
        
        Label "speed"
        {
                position 360, 205;
                size 60, 20;
                align right, center;
                font "ingame";
                caption "7";
                scale 3;
        }       
        
        Label "rowsLabel"
        {
                position 100, 320;
                size 100, 20;
                align left, center;
                font "scoring";
                caption "Initial Rows";
                scale 3;
        }
        
        Label "rows"
        {
                position 360, 315;
                size 60, 20;
                align right, center;
                font "ingame";
                caption "3";
                scale 3;
        }
        
        Frame "spinner"
        {
                position 370, 320;
                size 80, 60;
                align right, center;
                texture "data/textures/spinner.png";
                innerOffset 6, 8, 6, 8;
                showCenter false;
                outerFrame true;
        }                               

        SegmentButton "start"
        {
                position 240, 470;
                size 400, 100;
                caption "Start";
                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 "switchState EndlessState";
                                
                pushSound "menu_push";
        }
        
        SegmentButton "back"
        {
                position 240, 580;
                size 400, 90;
                caption "Back";
                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 "submenu_endless_back";
                                
                pushSound "menu_push";
        }
}