Draws a phrase in large letters with a “laser”.
Appears on
One of a series of library tapes. Programs on these tapes were renamed to a number series. This tape contained programs 20001 to 20050. These tapes were compiled by Tony Willing.
Gallery
Source Code
1 REM "Shooting Titles" 2 REM By Eddie Duncan-Dunlop 3 REM Your Sinclair 50 CLS 60 PRINT AT 0,0; INK 7;" TIMEX SINCLAIR" 70 FOR x=0 TO 127 STEP 1/3 80 FOR y=0 TO 7 90 IF NOT POINT (x,y+168) THEN GO TO 150 100 PLOT 2*x,3*y+80 110 PLOT 0,0: DRAW OVER 1;2*x,3*y+79 120 PLOT 0,0: DRAW OVER 1;2*x,3*y+79 130 BEEP .001,30 140 PLOT 2*x,3*y+81 150 NEXT y 160 NEXT x