home *** CD-ROM | disk | FTP | other *** search
- 10 rem***** laufschrift ********
- 15 :
- 20 rem---- textaufbau von links-------
- 25 :
- 30 a$="das ist der titel!"
- 35 s=1
- 40 t=1
- 45 print mid$(a$,s,t);
- 50 for z=1 to 100:next z
- 55 rem (t bleibt konstant)
- 60 s=s+1
- 65 if s>len(a$) then end
- 70 goto 45
- 95 :
- 100 rem----hereinschieben von links----
- 105 :
- 130 a$="das ist der titel!"
- 135 s=len(a$)
- 140 t=1
- 145 print chr$(145) mid$(a$,s,t)
- 150 for z=1 to 100: next
- 155 t=t+1
- 160 s=s-1
- 165 if s=0 then end
- 170 goto 145
- 190 :
- 200 rem--- nach links hinausschieben ---
- 215 :
- 230 a$="das ist der titel! "
- 235 s=1
- 240 t=len(a$)
- 245 print chr$(145) mid$(a$,s,t)
- 250 for z=1 to 100: next
- 255 rem (t bleibt konstant)
- 260 s=s+1
- 265 if s>len(a$)then end
- 270 goto 245
- 290 :
- 300 rem---- nach links durchschieben ---
- 305 :
- 310 for x=1 to 40
- 315 b$=b$+" "
- 320 next x
- 325 a$="das ist der titel! "
- 330 a$=b$+a$
- 335 s=1
- 340 t=39
- 345 print chr$(145) mid$(a$,s,t)
- 350 for z=1 to 100: next
- 355 rem (t bleibt konstant)
- 360 s=s+1
- 365 if s>len(a$) then s=1
- 370 goto 345
- 390 :
- 400 rem---nach rechts durchschieben-----
- 405 :
- 410 for x=1 to 40
- 415 b$=b$+" "
- 420 next x
- 425 a$="das ist der titel!"
- 430 a$=b$+a$
- 435 s=len(a$)
- 440 t=1
- 445 print chr$(145) mid$(a$,s,t)
- 450 for z=1 to 100:next
- 455 t=t+1
- 460 s=s-1
- 464 if t>39 then t=t-1
- 465 if s=0 then 425
- 470 goto 445
- 490 :
- 500 rem--- von links zur mitte ---
- 505 :
- 510 for x=1 to 40
- 515 b$=b$+" "
- 520 next x
- 525 c$="das ist der titel!"
- 530 a$=b$+c$
- 535 s=len(a$)
- 540 t=1
- 545 print chr$(145) mid$(a$,s,t)
- 550 for z=1 to 100:next
- 555 t=t+1
- 560 s=s-1
- 564 if t>(40+len(c$))/2 then end
- 570 goto 545
- 590 :
- 600 rem--- von rechts zur mitte ---
- 605 :
- 610 for x=1 to 40
- 615 b$=b$+" "
- 620 next x
- 625 c$="das ist der titel! "
- 630 a$=b$+c$
- 635 s=1
- 640 t=39
- 645 print chr$(145) mid$(a$,s,t)
- 650 for z=1 to 100:next
- 655 rem ((NULL)bleibt konstant)
- 660 s=s+1
- 664 if s>(40+len(c$))/2 then end
- 670 goto 645
-