Subversion Repositories AndroidProjects

Rev

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

Menu "Tutorial1"
{
        origin 0, 0;
        fadeTime 0;
        
        Image "bg"
        {
                position 0, 140;
                size 480, 400;
                align left, top;
                color 1, 1, 1, 0.5;
        
                texture "data/textures/black.png";
        }
        
        Label "text1"
        {
                position 240, 170;
                size 400, 40;
                align center, top;
                textAlign center, top;
                color 1, 1, 1, 1;
                font "ingame";
                scale 1;
                lineBreak 2;
                caption "Game Modes:";
        }
        
        Label "text1"
        {
                position 40, 220;
                size 400, 40;
                align left, top;
                textAlign left, top;
                color 1, 1, 1, 1;
                font "ingame";
                scale 1;
                lineBreak 1.5;
                caption "Endless Mode:\nPlay with no defined end goal and go for the\nhighest score!";
        }
        
        Label "text1"
        {
                position 40, 320;
                size 400, 40;
                align left, top;
                textAlign left, top;
                color 1, 1, 1, 1;
                font "ingame";
                scale 1;
                lineBreak 1.5;
                caption "Puzzle Mode:\nClear all blocks using only the given amount of\nmoves!";
        }
        
        Label "text1"
        {
                position 40, 430;
                size 400, 40;
                align left, top;
                textAlign left, top;
                color 1, 1, 1, 1;
                font "ingame";
                scale 1;
                lineBreak 1.5;
                caption "Time Trial Mode:\nAccumulate as many points as possible within a\n2 minute time limit!";
        }
        
        Label "tutorial1"
        {
                position 240, 70;
                size 400, 60;
                caption "HOW TO PLAY";
                scale 3.0;
                align center, center;
                textAlign center, center;
                color 1, 1, 1, 1;
                shadow false;
                font "scoring";
        }
        
        Label "page"
        {
                position 240, 110;
                size 400, 60;
                caption "PAGE 1 OF 8";
                scale 3.0;
                align center, center;
                textAlign center, center;
                color 1, 1, 1, 1;
                shadow false;
                font "scoring";
        }
        
        SegmentButton "prev"
        {
                position 125, 600;
                size 245, 100;
                caption "PREVIOUS";
                scale 3.0;
                align center, center;
                textAlign center, center;
                color 1, 1, 1, 1;
                shadow false;
                font "scoring"; 
                
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";

                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                
                onTouch "prev";

                pushSound "menu_push";
        }
        
        SegmentButton "next"
        {
                position 355, 600;
                size 245, 100;
                caption "NEXT";
                scale 3.0;
                align center, center;
                textAlign center, center;
                color 1, 1, 1, 1;
                shadow false;
                font "scoring"; 
                
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";

                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                
                onTouch "next";

                pushSound "menu_push";
        }               
        
        SegmentButton "back"
        {
                position 240, 700;
                size 475, 100;
                caption "BACK TO MENU";
                scale 3.0;
                align center, center;
                textAlign center, center;
                color 1, 1, 1, 1;
                shadow false;
                font "scoring"; 
                
                texture "data/textures/simplebutton.png";
                pushTexture "data/textures/simplebutton_pushed.png";

                pushColor 1, 1, 1, 1;
                pushOffset 0, 2;
                
                onTouch "switchState MainMenuState";

                pushSound "menu_push";
        }
}