Subversion Repositories AndroidProjects

Rev

Rev 624 | Blame | Compare with Previous | Last modification | View Log | RSS feed

Menu "SubMenuEndless"
{
        origin 0, 0;
        
        Label "title"
        {
                position 240, 50;
                size 200, 40;
                align center, center;
                font "scoring";
                caption "PUZZLE MODE";
                scale 4;
        }
        
        Label "explanationText1"
        {
                position 40, 100;
                size 400, 40;
                align left, top;
                textAlign left, top;
                color 1, 1, 1, 1;
                font "ingame";
                scale 1;
                lineBreak 2;
                caption "Clear all blocks on the screen using just the\ngiven amount of moves!";
        }       
        
        Label "levelLabel"
        {
                position 240, 210;
                size 100, 20;
                align center, center;
                font "scoring";
                caption "LEVEL SELECT";
                scale 3;
        }       
        
        Image "black"
        {
                position 0, 240;
                size 480, 200;
                align left, top;
                texture "data/textures/black.png";
                filter nearest, nearest;
                color 1, 1, 1, 0.5;
        }
        
        Image "arrow"
        {
                position 240, 230;
                size 64, 64;
                align center, top;
                texture "data/textures/level_selector.png";
                color 1, 1, 1, 1;
                filter nearest, nearest;
        }
        
        SegmentButton "start"
        {
                position 240, 620;
                size 400, 120;
                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 "start_puzzle";

                clickSound "menu_confirm";                              
                pushSound "menu_push";
        }
        
        SegmentButton "back"
        {
                position 240, 730;
                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_back";
                                
                pushSound "menu_push";
        }
}