Awesome! thank you Hodgey and luskos, this wil help me.
Myself started with this:
set display mode 1366, 768, 32
load image "achtergrond.png",111
paste image 111,0,0
Ink RGB(0,165,0),RGB(150,150,150)
String1$ = "powering up, in 4 seconds"
String2$ = " "
String3$ = "accessing mainframe, please standby"
String4$ = "all systems checked ok"
String5$ = "please enter your password"
set cursor 150,150
print String1$
wait 6000
sync
set cursor 150,150
print String2$
wait 2000
set cursor 150,150
print String3$
wait 6000
sync
set cursor 150,150
print string2$
wait 2000
set cursor 150,150
print String4$
wait 6000
set cursor 150,150
print String2$
wait 2000
set cursor 150,150
print string5$
wait 6000
set cursor 150,150
print String2$
wait 4000
end
As you can see your solutions can fit in.
Only problem i have is that WITHOUT a background image, it works fine, the spaces used in string$2 "delete" the text.
But WITH a background it prints line over line, so the "delete" characters trick with the spaces doesnt work.
Is there a way to delete the typed text and replace it with a new line, leaving the background image in place?
I tried using sync on and use the sync command after each typed phrase, I could not find a command like delete text.
thanks in advance!