Search found 10 matches

by Cicin
14 May 2024, 23:11
Forum: Ask for Help (v2)
Topic: [v2.0.14 bug] wheelDown/wheelUp not work Topic is solved
Replies: 4
Views: 566

Re: [v2.0.14 bug] wheelDown/wheelUp not work Topic is solved

great thanks, problem solved. I'll try the new version That has never been valid/supported. The following keys are not supported by the built-in remapping method: The mouse wheel (WheelUp/Down/Left/Right). Source: Remapping Keys (Keyboard, Mouse and Controller) | AutoHotkey v2 Use Send, so they will...
by Cicin
13 May 2024, 09:06
Forum: Ask for Help (v2)
Topic: [v2.0.14 bug] wheelDown/wheelUp not work Topic is solved
Replies: 4
Views: 566

Re: [v2.0.14 bug] wheelDown/wheelUp not work Topic is solved

found where the bug is:

Code: Select all

	XButton1 & WheelUp::Volume_Up
	XButton1 & WheelDown::Volume_Down
	xbutton2 & WheelUp::WheelLeft
	xbutton2 & WheelDown::WheelRight
after any operation above
wheel up/down not work
by Cicin
08 May 2024, 02:15
Forum: Ask for Help (v2)
Topic: [v2.0.14 bug] wheelDown/wheelUp not work Topic is solved
Replies: 4
Views: 566

[v2.0.14 bug] wheelDown/wheelUp not work Topic is solved

[Moderator's note: Topic moved from Bug Reports.] with same source code, I use some ^ + ! wheelDown/up remapping in several conditions. in version 2.0.12 2.0.13 2.0.14 work normally at first and after some time, wheelDown/up doesn't work。 it is, wheelDown/up can't scroll down/up the window any more...
by Cicin
25 Jun 2023, 02:13
Forum: Ask for Help (v2)
Topic: [v2] Intel Cpu Core 13 Bug
Replies: 3
Views: 539

Re: [v2] Intel Cpu Core 13 Bug

I mean Intel Core i9-13900hx and i7-12700h (or 13th/12th). I have tested both of them, using the same ahk script. They are both very quick high-level cpu so i'm sure it's not the question with cpu speed. Here are the results I tested. Amd cpu 4800h, having 8 cores of the same size --- no bug. Intel ...
by Cicin
23 Jun 2023, 20:11
Forum: Ask for Help (v2)
Topic: [v2] Intel Cpu Core 13 Bug
Replies: 3
Views: 539

[v2] Intel Cpu Core 13 Bug

[Moderator's note: Topic moved from Bug Reports.] version: ahk v2 2.0.2 system: win11 cpu: Intel Core 13 / 12 (Heterogeneous processors with a mix of large and small cores) Problem Description: using hotkey as below (default key-send-mode) j::send("{left}") and then hold on j key. what we expect: "...
by Cicin
07 Apr 2021, 02:50
Forum: Ask for Help (v2)
Topic: [v2_a130] winactivate update TargetError
Replies: 4
Views: 693

Re: [v2_a130] winactivate bug?

3x, so clear, brackets forgotten and error in a129- sliently ignored. Great Great Thanks. or a previously-suppressed-but-now-detected, already existing bug in ur script ur code(with the indentation cleaned up) amounts to this: diy_hotkey:: { If ProcessExist("WindowsTerminal.exe")=0 run windowsTermin...
by Cicin
06 Apr 2021, 19:21
Forum: Ask for Help (v2)
Topic: [v2_a130] winactivate update TargetError
Replies: 4
Views: 693

Re: [v2_a130] winactivate bug?

OK,3x, and I updated the code details, for using hotkey to hide and show app window sush as powershell. It works well in a129 but fails in a130 , maybe cause of the new "winactivate". CASCADIA_HOSTING_WINDOW_CLASS is the new windows10 terminal's class. for me: WinShow() does absolutely nothing(unles...
by Cicin
06 Apr 2021, 08:44
Forum: Ask for Help (v2)
Topic: [v2_a130] winactivate update TargetError
Replies: 4
Views: 693

[v2_a130] winactivate update TargetError

[Moderator's note: Topic moved from v2 Dev.] code example as follows: diy_hotkey:: { If ProcessExist("WindowsTerminal.exe")=0 run windowsTerminal,env ;path setted by user Else If WinActive("ahk_class CASCADIA_HOSTING_WINDOW_CLASS") WinHide("ahk_class CASCADIA_HOSTING_WINDOW_CLASS") else WinShow("ah...
by Cicin
05 Jul 2020, 22:27
Forum: Bug Reports
Topic: [a114] Invalid Key Name Topic is solved
Replies: 1
Views: 1219

[a114] Invalid Key Name Topic is solved

Scripts as below.
a113 run well
a114 run error ... tips " Invalid Key Name"

Code: Select all

RCtrl & left::Home
Rctrl & right::end
RCtrl & RAlt::AppsKey
NumpadAdd::PgUp
NumpadEnter::PgDn
NumpadDel::AppsKey
So could someone tell me where is the problem? Or is it just a bug?
Thanks
by Cicin
06 Oct 2019, 23:44
Forum: Ask for Help (v2)
Topic: [a105] for loop _newEnum problem in office
Replies: 0
Views: 1572

[a105] for loop _newEnum problem in office

Code: Select all

		
test()
{
	app := ComObjActive("word.Application")
	appshapes := app.selection.range.InlineShapes
	For shp in app.selection.range.InlineShapes
	{
		msgbox(1)
	}
	
	Return
}
problem description: tips _newenum is not a method
version: ahk2 a105
for loop problem.png
for loop problem.png (6.46 KiB) Viewed 1572 times

Go to advanced search