123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- //--------------------------------------------------------------
- //
- // ERROR MENU
- //
- // Displays error messages
- //
- //--------------------------------------------------------------
- {
- menuDef
- {
- name "ingameWpnSelectHelp"
- visible 0
- fullscreen 0
- rect 140 70 350 375
- focusColor 1 1 1 1
- style WINDOW_STYLE_FILLED
- border 1
- popup
- outOfBoundsClick
- descX 240
- descY 425
- descScale 1
- descColor 1 .682 0 .8
-
- itemDef
- {
- name window
- rect 0 0 350 375
- style WINDOW_STYLE_FILLED
- backcolor .015 .015 .229 1
- forecolor 0 0 0 1
- border 1
- bordercolor .388 .396 .925 1
- bordersize 5
- visible 1
- decoration
- }
-
- itemDef
- {
- name instruction_title
- group inst_stuff
- type ITEM_TYPE_TEXT
- rect 0 25 350 18
- text @MENUS_HELP
- font 2
- forecolor .549 .854 1 1
- textscale 1
- textalign ITEM_ALIGN_CENTER
- textalignx 175
- visible 1
- decoration
- }
-
- itemDef
- {
- name instruction_text
- group inst_stuff
- type ITEM_TYPE_TEXTSCROLL
- rect 25 80 300 250
- text @MENUS_WEAPON_SELECTION_HELP
- font 4
- forecolor 1 1 1 1
- textscale 1.0
- textalign ITEM_ALIGN_LEFT
- visible 1
- decoration autowrapped
- textaligny 0
- lineHeight 13
- }
-
- itemDef
- {
- name button_glow
- group none
- style WINDOW_STYLE_SHADER
- rect 0 0 0 0
- background "gfx/menus/menu_buttonback"
- forecolor 1 1 1 1
- visible 0
- decoration
- }
- //--------------------------------------------------------------------------------
- // BUTTON
- //--------------------------------------------------------------------------------
- itemDef
- {
- name inst_done_button
- group inst_stuff
- style WINDOW_STYLE_EMPTY
- type ITEM_TYPE_BUTTON
- rect 0 315 350 18
- text @MENUS_OKAY
- descText @MENUS_HELP_DESC
- font 3
- textscale 1
- textaligny 0
- textalign ITEM_ALIGN_CENTER
- textstyle 1
- textalignx 175
- forecolor 1 .682 0 1
- visible 1
- mouseEnter
- {
- show button_glow
- setitemrect button_glow 230 384 170 30
- }
- mouseExit
- {
- hide button_glow
- }
- action
- {
- play "sound/misc/nomenu.wav"
- close ingameWpnSelectHelp
- }
- }
- }
- }
|