Hi Ant
A Sprite would Proberley run Faster than Repetative Pasting of an image
Ie:
REM Project: ant
REM Created: 05/12/2004 11:18:45
REM
REM ***** Main Source File *****
REM
sync on
hide mouse
Draw To Front
set text font "impact"
set text size 80
set text to bold
load image "C:Mars.bmp",1,1
load image "C:Moon.Bmp",2,1
Sprite 1,0,0,1
set sprite Alpha 1,150
ink rgb(255,255,55),0
wait 2000
dim intro$(5)
data "Welcome "
data "To the new demo "
data "Brought to you "
data "By the one and only "
data "COBRA"
for i=1 to 5
read intro$(i)
next i
repeat
a#=a#+1
for i=1 to 4
center text 300+a#-455, 500-a#+(i*70), intro$(i)
next i
if a#=480:wait 4000
endif
sync
cls
until a#=900:wait 1000
Set Sprite Image 1,2
repeat
a=a+1
center text 0+a,200,intro$(5)
if a=300:wait 4000
endif
sync
cls
until a=830:wait 1000
sync
wait key
end