Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
15
Task/Animation/AutoHotkey/animation.ahk
Normal file
15
Task/Animation/AutoHotkey/animation.ahk
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
SetTimer, Animate ; Timer runs every 250 ms.
|
||||
String := "Hello World "
|
||||
Gui, Add, Text, vS gRev, %String%
|
||||
Gui, +AlwaysOnTop -SysMenu
|
||||
Gui, Show
|
||||
Return
|
||||
|
||||
Animate:
|
||||
String := (!Reverse) ? (SubStr(String, 0) . Substr(String, 1, StrLen(String)-1)) : (SubStr(String, 2) . SubStr(String, 1, 1))
|
||||
GuiControl,,S, %String%
|
||||
return
|
||||
|
||||
Rev: ; Runs whenever user clicks on the text control
|
||||
Reverse := !Reverse
|
||||
return
|
||||
Loading…
Add table
Add a link
Reference in a new issue