Totally new to this engines, and I have some problems to create screen with its transiton.
Here is my problem:
As the quick menu, I use imagemap to define this, like
Code: Select all
imagemap:
idle "menu/q_idle.png"
hover "menu/q_hover.png"
selected_idle "menu/q_idle.png"
selected_hover "menu/q_hover.png"
hotspot (44,615,156,60) action ShowMenu("preferences")
hotspot (200,615,156,60) action ShowMenu("history")
hotspot (360,615,156,60) action Preference("auto-forward", "toggle")
hotspot (511,615,156,60) action Skip() alternate Skip(fast=True, confirm=True)
hotspot (665,615,156,60) action ShowMenu("save")
hotspot (824,615,156,60) action ShowMenu("load")
hotspot (980,615,156,60) action QuickSave()
hotspot (1137,615,156,60) action QuickLoad()Then I tried to add transition at the background, like
Code: Select all
style_prefix "main_menu"
style main_menu_frame:
xsize 420
yfill True
background "gui/overlay/main_menu.png"
Not a English native speaker, I apologise if there's some mistake(;´༎ຶД༎ຶ`)
Gratitude to all your reply!