this any good for you!
Rem Project: tarnblue
Rem Created: 16/06/2008 13:37:35
Rem ***** Main Source File *****
sync on
sync rate 60
autocam off
position camera 0,0,0,-30
color backdrop 0
rem make a plain to show text on
make object plain 1,20,10,1
color object 1,rgb(0,0,255)
ghost object on 1,2
rem get the text as an image
create bitmap 1,100,100
cls rgb(0,0,128)
text 0,0,"hello there"
get image 1,0,0,100,100,1
delete bitmap 1
texture object 1,1
rem makes object to put behind object 1
make object sphere 2,1
position object 2,0,0,2
rem light up object 1
set object specular 1, rgb ( rnd ( 255 ), rnd ( 255 ), rnd ( 255 ) )
set object specular power 1, 255
set object ambient 1,0
rem locks the text box z distance from camera.
lock object on 1
position object 1,0,0,25
do
`paste image 1,0,0
text 0,0,"Press spacekey to hide text box"
if spacekey()=1
hide object 1
else
show object 1
endif
control camera using arrowkeys 0,.1,.1
sync
loop
Dark Physics makes any hot drink go cold.