Search found 48 matches

by YMP2
26 Jun 2018, 23:24
Forum: Помощь
Topic: Хоткей в переменной. Как слушать несколько клавиш с использованием HotKey Topic is solved
Replies: 1
Views: 3639

Re: Хоткей в переменной. Как слушать несколько клавиш с использованием HotKey Topic is solved

И не должен, поскольку при запуске скрипта код выполняется с начала до первого Return. Поэтому надо так:

Code: Select all

hk_1=1
hk_2=2

Hotkey,%hk_1%,one
Hotkey,%hk_2%,two
Return

one:
ToolTip ONE
Return

two:
ToolTip TWO!!
Return
by YMP2
22 Jun 2018, 07:09
Forum: Ask for Help (v1)
Topic: How to check font type of Clipboard?
Replies: 2
Views: 1114

Re: How to check font type of Clipboard?

1 and 13 are plain text formats, which means no formating, only character codes. There is also 7, CF_OEMTEXT. They are apparently not the formats you need. You can use InsideClipboard to see what formats Excel puts on the clipboard when you copy from it.
by YMP2
18 Jun 2018, 00:40
Forum: Ask for Help (v1)
Topic: middle click to copy paste like in linux that would work on globally and on chrome?
Replies: 6
Views: 2132

Re: middle click to copy paste like in linux that would work on globally and on chrome?

This may be what you need: Cut and paste with the mouse. At least Linux is mentioned there. But personally I find it more convenient to use MButton for both operations.
by YMP2
15 Jun 2018, 09:54
Forum: Помощь
Topic: Помощь в написании скрипта Topic is solved
Replies: 2
Views: 3024

Re: Помощь в написании скрипта Topic is solved

Но можно и короче.

Code: Select all

X:: Send, % (a := !a)? "V":"C"
by YMP2
28 May 2018, 06:35
Forum: ASM
Topic: ASM: ASM (assembly language) to machine code via FASM (flat assembler)
Replies: 2
Views: 20060

Re: ASM: ASM (assembly language) to machine code via FASM (flat assembler)

1 when the ASM is converted to an exe, how do I tell where the relevant machine code starts and ends You don't have to know that. Let the exe do all the work for you. That is, you compile it, then run it and it converts the machine code of your function into hex and puts in on the clipboard or save...
by YMP2
20 Apr 2014, 11:30
Forum: Bug Reports
Topic: Double-click on a Gui control modifies the clipboard
Replies: 3
Views: 2348

Re: Double-click on a Gui control modifies the clipboard

Oops... Thanks for the info. Obviously I should have searched the web for this issue, but it didn't occur to me it could be a feature of the control itself.
by YMP2
20 Apr 2014, 07:05
Forum: Bug Reports
Topic: Double-click on a Gui control modifies the clipboard
Replies: 3
Views: 2348

Double-click on a Gui control modifies the clipboard

I can see this in both the latest version and AHK Basic, on Windows 7/64 and 8.1/64 — but not on Windows XP. Initially, if the picture or text is clicked once, the tooltip will show "Test". After one of them has been double-clicked, the tooltip will show either "Shell32.dll" or "Hello". The clipboar...

Go to advanced search