Subversion Repositories AndroidProjects

Rev

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

Menu "TitleMenu"
{
        origin 0, 0;
        fadeTime 0.2;
        
        Image "frame_bg"
        {
                position 240, 400;
                size 400, 400;
                align center, center;
                texture "data/textures/black.png";
                color 1, 1, 1, 0.8;
        }
        
        Frame "frame"
        {
                position 240, 400;
                size 400, 400;
                align center, center;
                showCenter false;
                texture "data/textures/simpleframe.png";
                outerFrame true;
        }

        SegmentButton "sounds"
        {
                position 240, 280;
                size 350, 100;
                caption "SOUNDS: ON";
                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 "sounds";
                                
                pushSound "menu_push";
        }
        
        SegmentButton "music"
        {
                position 240, 380;
                size 350, 100;
                caption "MUSIC: ON";
                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 "music";
                                
                pushSound "menu_push";
        }

        SegmentButton "back"
        {
                position 240, 530;
                size 350, 80;
                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 "back";
                                
                pushSound "menu_push";
        }

}