Data update
This commit is contained in:
parent
35bcdeebf8
commit
74c69a0df6
2427 changed files with 31826 additions and 3468 deletions
25
Task/Animation/EasyLang/animation.easy
Normal file
25
Task/Animation/EasyLang/animation.easy
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
s$ = "Hello world! "
|
||||
textsize 16
|
||||
lg = len s$
|
||||
on timer
|
||||
color 333
|
||||
move 10 20
|
||||
rect 80 20
|
||||
color 999
|
||||
move 12 24
|
||||
text s$
|
||||
if forw = 0
|
||||
s$ = substr s$ lg 1 & substr s$ 1 (lg - 1)
|
||||
else
|
||||
s$ = substr s$ 2 (lg - 1) & substr s$ 1 1
|
||||
.
|
||||
timer 0.2
|
||||
.
|
||||
on mouse_down
|
||||
if mouse_x > 10 and mouse_x < 90
|
||||
if mouse_y > 20 and mouse_y < 40
|
||||
forw = 1 - forw
|
||||
.
|
||||
.
|
||||
.
|
||||
timer 0
|
||||
Loading…
Add table
Add a link
Reference in a new issue