By customizing theHello, i created some nice images for the start, load , preferences etc , but i do not know how to code them and replace the text , im a very begginner but with passion to learn.
screen navigation():
[...]
if main_menu:
imagebutton:
auto "myStartBtn_%s.png"
action Start()
else:
imagebutton:
auto "myHistorytBtn_%s.png"
action ShowMenu("history")
[...]
screen navigation():
frame:
background Frame("gui/frame.png", Borders(50,50,50,50))
xpos 20
yalign 0.5
xsize 300
ysize 600
vbox:
style_prefix "navigation"
xpos gui.navigation_xpos
yalign .5
spacing gui.navigation_spacing
if main_menu:
imagebutton:
auto "start.png"
action Start()
else:
textbutton _("History") action ShowMenu("history")
textbutton _("Save") action ShowMenu("save")
textbutton _("Load") action ShowMenu("load")
textbutton _("Preferences") action ShowMenu("preferences")
When you follow the link I provided, you can read :Code:imagebutton: auto "start.png"
Don't worry.it worked thank you very much, and sorry for being so amateur, i really need to take a python course xD