Hi, I'm trying to create an FMV game with singe 2, but I've run into a problem.
In the 1st scene of my level, I have a SKIP as the first movement, if I let the sequence pass without pressing any button, the video continues but the SKIP!!! image continues appearing and no button responds anymore and the Overlay images of the other movements are not shown either.
If I press a button to skip the scene it is played again from the beginning, then it works correctly.
I've more SKIP movements at the scene all works fine.
Level[1] = {"Un nuevo aventurero", 8043,22102, 4, 0, 0, -1}
----------------------------------------------------------------------------------------------
-- 4. Lista de movimientos para cada nivel, por escena (StartFrame, EndFrame, MOVE, Death#) --
----------------------------------------------------------------------------------------------
function setupMoves(thisLevel, thisScene)
if thisLevel == 1 then
if thisScene == 1 then
sceneStart = 0
sceneEnd = 2809
totalMoves = 6
move[1] = {23, 1177, SKIP, 0}
move[2] = {1283, 1301, UP, 1}
move[3] = {1755, 1771, RIGHT, 1}
move[4] = {1854, 1870, BUTTON1, 1}
move[5] = {1953, 1969, DOWN, 1}
move[6] = {2010, 2026, DOWNRIGHT, 1}
Sorry by my bad english