Im creating a gallery for my game, however, since there will be images and movies, I cant use the BG Gallery from the forum
I already created a simple "screen" to see an image
Code: Select all
screen verfoto(pic=False):
modal True zorder 10
add 'images/splash/gi/'+pic+'.png'
button background None action Hide('verfoto')
imagebutton auto "images/gui/galeria/thumbs/chloe-imagen-01_%s.png" action Show("verfoto", dissolve, "chloe-imagen-01")
Code: Select all
screen vervideo(labelname):
$ replayscene = True
jump labelname
imagebutton auto "images/gui/galeria/thumbs/chloe-imagen-01_%s.png" action Show("vervideo", dissolve, "labelending")
Code: Select all
label labelending:
scene black
.... play somenthing ...
if replayscene:
$ replayscene = False
return
jump creditsandending


