Better notification system help
Posted: Sat Jun 01, 2019 11:40 pm
Hi you all
Here is a what I think is a simple question for you most advanced users
I created this small notification system, here is the example:

And the code is:
And you use it like this:
Is there a way to animate it? Disolve in, disolve out?
I know it has something to do with transform, but I cant seem to make it work
Here is a what I think is a simple question for you most advanced users
I created this small notification system, here is the example:

And the code is:
Code: Select all
screen notificacion(message, tipo):
zorder 100
fixed:
area 1035, 80, 620, 200
add "images/gui/notify-[tipo].png"
hbox:
yalign 0.09
xalign 0.03
text _('{size=17}{color=#ffffff}[message]{/color}{/size}')
timer 3.25 action Hide('notificacion')
Code: Select all
show screen notificacion('hola', 'love-down')I know it has something to do with transform, but I cant seem to make it work