Last active
September 24, 2019 18:22
-
-
Save rediffusion/d470f24fd32723ed5cabcd8f8232abcd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myName := "Sasha" ; приоритетно к переменным (тут присваеваем переменной строку). | |
myAge = 18 ; приоритетно к тексту. | |
myVar := myName ; "myName" – если обрамить кавычками то тоже получим текст. | |
myVar2 = myAge | |
MsgBox % myVar "`n" myVar2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;~ MsgBox + заголовок + координаты | |
WinName := "Title" | |
WinName1 := "Turttle" | |
SetTimer, WinMoveMsgBox, 50 | |
Sleep 100 | |
MsgBox, 4096, %WinName%, %WinName1% | |
ExitApp | |
Return | |
WinMoveMsgBox: | |
If WinExist(WinName) | |
SetTimer, WinMoveMsgBox, OFF | |
WinMove, %WinName%, , 870, 400 | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment