Search found 5 matches

by PSVl
03 Jun 2018, 07:20
Forum: Помощь
Topic: MButton + Mouse move :: MouseWheel Topic is solved
Replies: 1
Views: 3292

Re: MButton + Mouse move :: MouseWheel Topic is solved

Наверняка уже неактуально, но накидал тут немного. Требует доработки. ~MButton:: loop { MouseGetPos, X1, Y1, Sleep, 50 ControlGetFocus, Control, A GetKeyState, state, MButton, P MouseGetPos, X2, Y2 if (X2 < X1) { SendMessage, 0x114, 0, 0, %Control%, A } else if (X2 > X1) { SendMessage, 0x114, 1, 0, ...
by PSVl
02 Jun 2018, 02:54
Forum: Помощь
Topic: 33/5000 AHK: Oshibka povtornogo vyzova GUI AHK: GUI Recall Error
Replies: 1
Views: 2283

Re: 33/5000 AHK: Oshibka povtornogo vyzova GUI AHK: GUI Recall Error

Добавить 3 строки.
GuiClose:
gui, Destroy
return
by PSVl
14 Sep 2016, 09:29
Forum: Помощь
Topic: макрос на Раст внезапно перестал работать Topic is solved
Replies: 1
Views: 10338

Re: макрос на Раст внезапно перестал работать Topic is solved

Честно говоря не совсем понял. Вам нужно нажав один раз комбинацию Контрол + ЛКМ , чтобы скрипт зациклился и самостоятельно продолжал свою работу? Или же нужно удерживать комбинацию клавиш для его работы?
by PSVl
14 Sep 2016, 09:06
Forum: Помощь
Topic: помогите! Topic is solved
Replies: 1
Views: 6048

Re: помогите! Topic is solved

Space:: Button1: SetTimer, Reload, off SendInput q Hotkey, Space, Button2 Hotkey, Space, on SetTimer, Reload, 3000 return Button2: Hotkey, Space, Off if (A_TimeSincePriorHotkey < 3000) { SetTimer, Reload, off Sendinput w Hotkey, Space, Button3 Hotkey, Space, On SetTimer, Reload, 3000 } return Button...
by PSVl
02 Jul 2016, 12:15
Forum: Помощь
Topic: проблема с клавишами
Replies: 3
Views: 7160

Re: проблема с клавишами

Перед горячей клавишей необходимо поставить знак "~", должно решить вашу проблему.
Например:

Code: Select all

O::
	SendInput, {Backspace}[
Return

~[::
	MsgBox, Физическое нажатие клавиши
Return

Go to advanced search