| 1234567891011121314151617181920212223242526 |
- <rml>
- <head>
- <title>Quit?</title>
- <link type="text/template" href="window.rml" />
- <style>
- body
- {
- width: 350px;
- height: 135px;
-
- margin: auto;
- }
-
- div#title_bar div#icon
- {
- decorator: image( icon-flag );
- }
- </style>
- </head>
- <body template="luawindow" onload="Window.OnWindowLoad(document) Game.SetPaused(true)" onunload="Game.SetPaused(false)">
- <br />
- <p>Are you sure you want to end this game?</p>
- <button onclick="Window.LoadMenu('high_score',document) document.context.documents['game_window']:Close()">Yes</button>
- <button onclick="document:Close()">No!</button>
- </body>
- </rml>
|