I am working on a quick menu. It already appeared quite nicely. The problem is that every time I start the game, the auto forward is always toggled in the first time. I can disable it using the button, but it is quite annoying.
Here is the code for my quick menu.
Code: Select all
##############################################################################
# Quick Menu
#
# A screen that's included by the default say screen, and adds quick access to
# several useful functions.
screen quick_menu:
imagemap:
ground "GUI/QMenu_Ground.png"
idle "GUI/QMenu_Idle.png"
hover "GUI/QMenu_Hover.png"
selected_idle "GUI/QMenu_Hover_2.png"
selected_hover "GUI/QMenu_Hover_3.png"
insensitive "GUI/QMenu_Insensitive.png"
xalign 1.0
yalign 1.0
#hotspot (481,89,55,50) action QuickSave()
#hotspot (536,89,52,50) action QuickLoad()
#hotspot (588,89,51,50) action ShowMenu('save')
#hotspot (639,89,56,50) action Skip()
#hotspot (695,89,53,50) action Preference("auto-forward", "toggle")
#hotspot (748,89,52,50) action ShowMenu('preferences')
hotspot (0,0,55,50) action QuickSave()
hotspot (55,0,52,50) action QuickLoad()
hotspot (107,0,51,50) action ShowMenu('save')
hotspot (158,0,56,50) action Skip()
hotspot (214,0,53,50) action Preference("auto-forward", "toggle")
hotspot (267,0,52,50) action ShowMenu('preferences')