RosettaCodeData/Task/Animation/EasyLang/animation.easy

24 lines
410 B
Text
Raw Permalink Normal View History

2023-12-16 21:33:55 -08:00
s$ = "Hello world! "
2025-06-11 20:16:52 -04:00
gtextsize 14
2023-12-16 21:33:55 -08:00
lg = len s$
on timer
2025-06-11 20:16:52 -04:00
gcolor 333
grect 10 20 80 20
gcolor 999
gtext 12 24 substr s$ 1 9
2025-02-27 18:35:13 -05:00
if forw = 1
2023-12-16 21:33:55 -08:00
s$ = substr s$ lg 1 & substr s$ 1 (lg - 1)
else
s$ = substr s$ 2 (lg - 1) & substr s$ 1 1
.
2025-02-27 18:35:13 -05:00
timer 0.4
2023-12-16 21:33:55 -08:00
.
on mouse_down
if mouse_x > 10 and mouse_x < 90
if mouse_y > 20 and mouse_y < 40
forw = 1 - forw
.
.
.
timer 0