#Include samp.ahk
IniRead, HotKeyTest, settings.ini, HotKey, HotKeyTest
HotKey, % HotKeyTest, LabelTest, On, UseErrorLevel
Gui, Add, Hotkey, x16 y13 w140 h40 vHotKeyTest, %HotKeyTest%
Gui, Add, Button, x16 y63 w140 h40 gSaveConfig, Сохранить
Gui, Add, Button, x16 y113 w140 h40 gApplyConfig, Применить
Gui, Add, Button, x16 y163 w140 h40 gGuiClose, Выход
Gui, Show, w191 h226, Пример
return
GuiClose:
ExitApp
SaveConfig:
Gui, Submit, NoHide
IniWrite, %HotKeyTest%, settings.ini, HotKey, HotKeyTest
return
ApplyConfig:
Gui, Submit, NoHide
IniRead, HotKeyTest, settings.ini, HotKey, HotKeyTest
HotKey, % HotKeyTest, LabelTest, Off, UseErrorLevel
return
LabelTest:
addChatMessage("{228228}Успешно!")
return