I use a display narration text, however with your script, it's not working.
Definition script:
function WriteAutosave()
local file = io.open( localAppDir .. "Savegames/bookmark80.dat", "w+")
file:write(os.date("%X, %d/%m/%y"))
file:close()
end
function ReadAutosave()
local file = io.open( localAppDir .. "Savegames/bookmark80.dat", "r")
Values["timeAutosave"].String = file:read()
file:close()
end
In my menu scene, I have the display text object:
At the begin -> exec script ReadAutosave()
call display text
At the end -> quit display text
and finally when I exec the autosave:
exec autosave80
exec script WriteAutosave()
In the menu scene I see nothing...
Yesterday I could see the display text object in the menu scene. (it works fine in a scene, interface or menu scene)