I just saw this message but it's sometimes hard for us to really know what anybody means. The last time I used a typewriter was back in High School. A lot of people might not know what you mean by "typewriter effect" since nobody really uses them anymore. Also it's kinda hard for people to throw together a bitmap font exactly the same size you use without the actual bitmap font.
Quote: "But Im not shure about the pictures positions."
With bitmap fonts the general rule is all images are the same size and rarely are they different sizes but either way if you INC the starting position with the IMAGE WIDTH() command it'll position the text right.
Function ImgWrite(writeWhat$, x, y)
for a=1 to len(writeWhat$)
nr = 1000 + asc(mid$(writeWhat$,a))
if image exist(nr)=1
paste image nr,x,y,1
` Increase x by the current images width
inc x,image width(nr)
endif
next a
EndFunction
If it's still too close add a +1 or +2 for big fonts after IMAGE WIDTH().