OK first I have this code...
Code:
screen load_save_slot:
$ file_text = "% 2d. %s\n %s" % (number, FileTime(number, empty="Empty slot."), FileSaveName(number))
add FileScreenshot(number) xpos 0 ypos 0
text file_text xpos 0 ypos 0
screen load:
tag menu
imagemap:
ground 'gui/load_ground.png'
idle 'gui/load_idle.png'
hover 'gui/load_hover.png'
selected_idle 'gui/load_selected_idle.png'
selected_hover 'gui/load_selected_hover.png'
hotspot (-1, -1, -1, -1) action FilePage('auto')
hotspot (66, 40, 73, 73) action FilePage(1)
hotspot (149, 40, 74, 73) action FilePage(2)
hotspot (232, 40, 73, 73) action FilePage(3)
hotspot (315, 40, 73, 73) action FilePage(4)
hotspot (398, 40, 74, 73) action FilePage(5)
hotspot (481, 40, 74, 73) action FilePage(6)
hotspot (68, 132, 368, 101) action FileAction(0):
use load_save_slot(number=0)
hotspot (107, 243, 369, 101) action FileAction(1):
use load_save_slot(number=1)
hotspot (147, 354, 368, 102) action FileAction(2):
use load_save_slot(number=2)
hotspot (187, 465, 368, 101) action FileAction(3):
use load_save_slot(number=3)
hotspot (607, 244, 151, 45) action Return()
hotspot (607, 298, 151, 44) action ShowMenu('save')
hotspot (607, 352, 151, 45) action ShowMenu('load')
hotspot (607, 406, 151, 44) action ShowMenu('preferences')
hotspot (607, 460, 151, 44) action MainMenu()
hotspot (607, 514, 151, 45) action Quit()
screen save:
tag menu
imagemap:
ground 'gui/save_ground.png'
idle 'gui/save_idle.png'
hover 'gui/save_hover.png'
selected_idle 'gui/save_selected_idle.png'
selected_hover 'gui/save_selected_hover.png'
hotspot (-1, -1, -1, -1) action FilePage('auto')
hotspot (66, 40, 73, 73) action FilePage(1)
hotspot (149, 40, 74, 73) action FilePage(2)
hotspot (232, 40, 73, 73) action FilePage(3)
hotspot (315, 40, 73, 73) action FilePage(4)
hotspot (398, 40, 74, 73) action FilePage(5)
hotspot (481, 40, 74, 73) action FilePage(6)
hotspot (68, 132, 368, 101) action FileAction(0):
use load_save_slot(number=0)
hotspot (107, 243, 369, 101) action FileAction(1):
use load_save_slot(number=1)
hotspot (147, 354, 368, 102) action FileAction(2):
use load_save_slot(number=2)
hotspot (187, 465, 368, 101) action FileAction(3):
use load_save_slot(number=3)
hotspot (607, 244, 151, 45) action Return()
hotspot (607, 298, 151, 44) action ShowMenu('save')
hotspot (607, 352, 151, 45) action ShowMenu('load')
hotspot (607, 406, 151, 44) action ShowMenu('preferences')
hotspot (607, 460, 151, 44) action MainMenu()
hotspot (607, 514, 151, 45) action Quit()
It's working except... (see attachment)
Well, I don't seem to have a way to make the text move to a place or a position I wanted them? Can someone help me on this one please... I've been stuck on this problem for days now... I think the text on the top part of the code has something to do with it but... can someone please explain it to this poor guy in plain terms what those lines are for and what I needed to adjust to make them text and pictures in the save slot go where I wanted them to be...I think I figured it out (I'm so dumb)... Also, how do I change the size of the Thumbnail in Screen based Imagemap... it used to be easy in the old imagemap but I can't seem to find anything about changing the thumbnail size for the screen based imagemap...
"POOF" (Disappears)