how to show screen with transition?
Posted: Thu Dec 21, 2017 3:05 am
Hi all!
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
But ShowMenu cannot add transition, and evenif I use, for example, "show("history", moveintop)", it doesn't work.
Then I tried to add transition at the background, like
But still, I can't add any transition effect to it. So exactly how should I achieve my goal?
Not a English native speaker, I apologise if there's some mistake(;´༎ຶД༎ຶ`)
Gratitude to all your reply!
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!