Skip to content

Instantly share code, notes, and snippets.

@rediffusion
Last active September 24, 2019 18:22
Show Gist options
  • Save rediffusion/d470f24fd32723ed5cabcd8f8232abcd to your computer and use it in GitHub Desktop.
Save rediffusion/d470f24fd32723ed5cabcd8f8232abcd to your computer and use it in GitHub Desktop.
myName := "Sasha" ; приоритетно к переменным (тут присваеваем переменной строку).
myAge = 18 ; приоритетно к тексту.
myVar := myName ; "myName" – если обрамить кавычками то тоже получим текст.
myVar2 = myAge
MsgBox % myVar "`n" myVar2
;~ 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