Replace the textbutton portion in your main menu in screens.rpy
Code:
imagebutton:
ypadding 5
action [Play("sound", "sfx/confirm2.ogg"), Start()]
idle "gui/New1.png"
hover "gui/New2.png"
hovered Play ("sound", "sfx/slight.ogg")
imagebutton:
ypadding 5
action ShowMenu("load")
idle "gui/Continue1.png"
hover "gui/Continue2.png"
hovered Play ("sound", "sfx/slight.ogg")
imagebutton:
ypadding 5
action ShowMenu("preferences")
idle "gui/Options1.png"
hover "gui/Options2.png"
hovered Play ("sound", "sfx/slight.ogg")
imagebutton:
ypadding 5
action ShowMenu("mygallery")
idle "gui/Gallery1.png"
hover "gui/Gallery2.png"
hovered Play ("sound", "sfx/slight.ogg")
imagebutton:
ypadding 5
action Quit(confirm=False)
idle "gui/Quit1.png"
hover "gui/Quit2.png"
hovered Play ("sound", "sfx/slight.ogg")