The problem is the screen shot is out of place and it bothers me T^T any Idea? I'll put a screenshot.
and here is my code for the entire save and load screen
Code: Select all
screen load_save_slot:
$ file_text = "%2s. %s\n %s" % (
FileSlotName(number, 4),
FileTime(number, empty=_("Empty Slot.")),
FileSaveName(number))
add FileScreenshot(number) xpos 61 ypos 69
text file_text xpos 215 ypos 92 size 18 color "#261d0c"
screen file_picker:
imagemap:
ground "textbox/sl_ground.png"
idle "textbox/sl_ground.png"
hover "textbox/sl_hovered.png"
selected_idle "textbox/sl_idle.png"
hotspot (634,28,30,36) clicked FilePage(1)
hotspot (683,28,38,36) clicked FilePage(2)
hotspot (740,28,35,36) clicked FilePage(3)
hotspot (794,28,37,36) clicked FilePage(4)
hotspot (849,28,44,36) clicked FilePage(5)
hotspot (913,28,39,36) clicked FilePage(6)
hotspot (969,28,37,36) clicked FilePage(7)
hotspot (1027,28,34,36) clicked FilePage(8)
hotspot (1075,28,39,36) clicked FilePage(9)
hotspot (1129,28,50,36) clicked FilePage(10)
hotspot (35,117,530,282) clicked FileAction(1):
use load_save_slot(number=1)
hotspot (698,117,542,282) clicked FileAction(2):
use load_save_slot(number=2)
hotspot (35,433,530,276) clicked FileAction(3):
use load_save_slot(number=3)
hotspot (698,424,524,285) clicked FileAction(4):
use load_save_slot(number=4)
hotspot (565,134,118,48) action ShowMenu("save")
hotspot (565,199,133,48) action ShowMenu("load")
hotspot (565,284,133,44) action MainMenu()
hotspot (565,359,133,50) action ShowMenu("preferences")
hotspot (565,433,133,52) action Return()
hotspot (565,502,133,53) action Quit()
screen save:
# This ensures that any other menu screen is replaced.
tag menu
use file_picker
add "textbox/SL_save.png"
screen load:
# This ensures that any other menu screen is replaced.
tag menu
use file_picker
add "textbox/SL_load.png"
init -2 python:
style.file_picker_frame = Style(style.menu_frame)
style.file_picker_nav_button = Style(style.small_button)
style.file_picker_nav_button_text = Style(style.small_button_text)
style.file_picker_button = Style(style.large_button)
style.file_picker_text = Style(style.large_button_text)
config.thumbnail_width = 230
config.thumbnail_height =214