I see that you are using print. This should work:
Function printeffecttype(string$,delay#)
Load sound "C:windowsdesktopType.wav",1
n=1
while n<=len(string$)
Play sound 1
print mid$(string$,n);
wait delay#
If mid$(string$,n)=" " Then wait 200
n=n+1
Endwhile
Delete sound 1
Endfunction
I think this is what you wan't to do. Forgive me if it dosent work; I wrote it off the top of my head.
Rem Project: Upload V1
Rem Created: 14/06/2003 16:32:10
Rem ***** Main Source File *****
` Set color to green
Ink RGB(0,255,0),0
` Enter name
printeffecttype("Enter your name: ",100)
Input name$
rem repeat name
printeffecttype("Hello, "+name$,100)
rem put it on the next line
print ""
printeffecttype("your job as a free lance worker "+name$,100)
` seconds to wait:
seconds = 2
` wait
wait 1000*seconds
Function printeffecttype(string$,delay#)
Load sound "C:windowsdesktopType.wav",1
n=1
while n<=len(string$)
Play sound 1
print mid$(string$,n);
wait delay#
If mid$(string$,n)=" " Then wait 200
n=n+1
Endwhile
Delete sound 1
Endfunction
"All programmers are playwrites and all computers are lousy actors" -Anon
Click Here!!!