Project

General

Profile

text-scroll.p

Greg Shah, 11/14/2019 03:56 PM

Download (1.14 KB)

 
1

    
2
def var ch1 as char.
3
def var ch2 as char.
4
def var ch3 as char.
5
def var ch4 as char.
6
def var ch5 as char.
7
def var ch6 as char.
8
def var ch7 as char.
9
def var ch8 as char.
10
def var ch9 as char.
11
def var ch10 as char.
12
def var ch11 as char.
13
def var ch12 as char.
14
def var ch13 as char.
15
def var ch14 as char.
16
def var ch15 as char.
17
def var ch16 as char.
18
def var ch17 as char.
19

    
20

    
21
display "1 1234567890 2 1234567890 3 1234567890 4 1234567890 5 1234567890 6 1234567890 7 1234567890 8 1234567890 9 1234567890 10 1234567890 11 1234567890 12 1234567890 13 1234567890 14 1234567890 15 1234567890" skip
22
   ch1 skip
23
   ch2 skip 
24
   ch3 skip 
25
   ch4 skip 
26
   ch5 skip
27
   ch6 skip
28
   ch7 skip
29
   ch8 skip
30
   ch9 skip
31
   ch10 skip
32
   with with frame f1 size-pixels 300 by 200 no-labels.
33
   
34
ch1:width-pixels = 50.   
35
ch2:width-pixels = 100.
36
ch3:width-pixels = 150.
37
ch4:width-pixels = 200.
38
ch5:width-pixels = 250.
39
ch6:width-pixels = 300.
40
ch7:width-pixels = 350.
41
ch8:width-pixels = 400.
42
ch9:width-pixels = 450.
43
ch10:width-pixels = 500.
44
   
45
enable 
46
   ch1 
47
   ch2 
48
   ch3 
49
   ch4 
50
   ch5 
51
   ch6 
52
   ch7 
53
   ch8 
54
   ch9 
55
   ch10
56
with frame f1.   
57
   
58
wait-for close of current-window.   
59
   
60