Search found 78 matches

by Azev
02 Mar 2021, 11:32
Forum: Wish List
Topic: New icon
Replies: 3
Views: 897

New icon

Please put on a new default icon to the ahk executable. That green one with a "comic sans" font is awfuly ugly. :sick:
Thanks
by Azev
19 Feb 2021, 06:52
Forum: Ask for Help (v1)
Topic: WMI query not working Topic is solved
Replies: 2
Views: 222

WMI query not working Topic is solved

This WMI query from help is not working with Select * from DISKDRIVE . ; Get WMI service object. wmi := ComObjGet("winmgmts:") ; Run query to retrieve matching process(es). queryEnum := wmi.ExecQuery("Select * from DISKDRIVE")._NewEnum() ; Get first matching process. msgbox % queryEnum.length if que...
by Azev
24 Jul 2020, 10:45
Forum: Ask for Help (v1)
Topic: WinActivate is hanging my script
Replies: 1
Views: 590

WinActivate is hanging my script

Hi, I'm trying to activate a window withthe command bellow: (win32calc.exe is the windows calculator, just an example here ) WinActivate, ahk_exe win32calc.exe The thing is, if win32calc.exe is suspended my script will be hanged until win32calc.exe gets resumed. Is there a way to fix this?
by Azev
05 Jul 2020, 11:28
Forum: Gaming Help (v1)
Topic: High CPU Usage on joystick mapping
Replies: 3
Views: 2528

Re: High CPU Usage on joystick mapping

If the gamepad is not connected it uses the cpu highly. If the gamepad is connected it uses just about 0.2%.

Seems like ahk goes wildly/exhaustively searching for the gamepad until it finds it.

Is it possible to activate WatchPOV only if the gamepad is connected to avoid cpu waste?
by Azev
04 Jul 2020, 20:08
Forum: Gaming Help (v1)
Topic: High CPU Usage on joystick mapping
Replies: 3
Views: 2528

High CPU Usage on joystick mapping

Hi,

I follow this recipe from the manual to map the joy pad pov hat:
https://www.autohotkey.com/docs/misc/RemapJoystick.htm#joystick-pov-hat

The problem is that it is using too much CPU. I think it is the label WatchPOV:.

Is there any way to fix this?
by Azev
23 Jun 2020, 14:28
Forum: Ask for Help (v1)
Topic: Help with this logic trick: A_PriorHotKey AND A_TimeSincePriorHotkey Topic is solved
Replies: 3
Views: 1067

Re: Help with this logic trick: A_PriorHotKey AND A_TimeSincePriorHotkey Topic is solved

Hi Rohwedder, thanks mate!

I wrote a similar:

Code: Select all

counter := 0

Insert::
	counter++
	SetTimer, waitkey, -400
Return



waitkey:
	if (counter = 1)
		 msgbox 1
	if (counter = 2)
		 msgbox 2

	counter := 0
return

by Azev
23 Jun 2020, 12:03
Forum: Ask for Help (v1)
Topic: Help with this logic trick: A_PriorHotKey AND A_TimeSincePriorHotkey Topic is solved
Replies: 3
Views: 1067

Help with this logic trick: A_PriorHotKey AND A_TimeSincePriorHotkey Topic is solved

Hi, I'm trying to bind 2 actions to F12, if pressed 1 time then do "action 1", if pressed 2 times then do "action 2": F12:: if (A_PriorHotKey = "F12" AND A_TimeSincePriorHotkey < 400) { ; action 2 (pressed twice) Return } ; action 1 (pressed once) return The thing is action 1 is running even when I ...
by Azev
18 May 2020, 16:41
Forum: Ask for Help (v1)
Topic: Embed ffplay window into a gui
Replies: 1
Views: 626

Embed ffplay window into a gui

Hi,
is it possible to embed a ffplay window into a gui? (ffplay is part of ffmpeg)
by Azev
11 Dec 2019, 19:33
Forum: Ask for Help (v1)
Topic: Binding LWin issue Topic is solved
Replies: 1
Views: 421

Re: Binding LWin issue Topic is solved

I found it!

Code: Select all

LWin::
  ; pressed WIN KEY
return

LWin & Z::
  ; pressed WIN+Z
return
:thumbup:
by Azev
11 Dec 2019, 19:09
Forum: Ask for Help (v1)
Topic: Binding LWin issue Topic is solved
Replies: 1
Views: 421

Binding LWin issue Topic is solved

Hi, I'm trying to bind two hotkeys: LWin:: ; pressed WIN KEY return #Z:: ; pressed WIN+Z return Problem is If I bind using ~# the windows start menu will show up. If I bind using LWin I can't bind onther combination like #Z . Is there a way to solve this? Any way to prevent the start menu from comin...
by Azev
10 Dec 2019, 02:49
Forum: Ask for Help (v1)
Topic: textbox inside a menu
Replies: 2
Views: 610

textbox inside a menu

Hi,
Is it possible to attach a textbox to a menu with AHK?
by Azev
25 Nov 2019, 09:39
Forum: Ask for Help (v1)
Topic: menu from .ini
Replies: 0
Views: 514

menu from .ini

Hey there, I'm new to ahk and I'm looking for a generic code to build a menu from a .ini file I was thinking something like this: [main] m1t = My application 1 title m1x = D:\my apps\app1.exe m1i = D:\my apps\app1.ico m2t = My application 2 title m2x = D:\my apps\app2.exe m2i = D:\my apps\app2.ico [...
by Azev
05 Nov 2018, 18:35
Forum: Ask for Help (v1)
Topic: Listbox with progress bars inside
Replies: 19
Views: 4748

Re: Listbox with progress bars inside

This LVA.ahk, although it works, is bugged. If the user resizes a column it gets all messy.
by Azev
05 Nov 2018, 11:12
Forum: Ask for Help (v1)
Topic: Listbox with progress bars inside
Replies: 19
Views: 4748

Re: Listbox with progress bars inside

So, is there a way to fix this column resizing issue?
by Azev
04 Nov 2018, 09:54
Forum: Ask for Help (v1)
Topic: Listbox with progress bars inside
Replies: 19
Views: 4748

Re: Listbox with progress bars inside

It looks all good. Until you resize a column in the LV. Then it gets all messy and doesn't work anymore :(
Try resizing a column. The LV gets all messy and flicks. even with regular LVs
by Azev
04 Nov 2018, 09:25
Forum: Ask for Help (v1)
Topic: Listbox with progress bars inside
Replies: 19
Views: 4748

Re: Listbox with progress bars inside

Superb!!! Thanks guys it was very helpful! Where is this LVA.ahk being mantained? this link: ; http://www.autohotkey.com/forum/viewtopic.php?t=43242 ; http://www.autohotkey.com/board/topic/39778-lva-color-individual-cells-of-a-listview-and-more/ https://ahknet.autohotkey.com/~dadepp/LVA.ahk is givin...
by Azev
03 Nov 2018, 20:18
Forum: Ask for Help (v1)
Topic: Listbox with progress bars inside
Replies: 19
Views: 4748

Re: Listbox with progress bars inside

Wow! it works with the 32bit! https://i.imgur.com/OWXc2yS.png It is probably something inside LVA.ahk: https://github.com/Ixiko/AHK-libs-and-classes-collection/blob/master/lib-i_to_z/LVA.ahk Why it doesn't work on AutoHotkeyU64.exe ? Maybe some hacker there can tweak the LVA.ahk for me please? All m...
by Azev
03 Nov 2018, 14:47
Forum: Ask for Help (v1)
Topic: Listbox with progress bars inside
Replies: 19
Views: 4748

Re: Listbox with progress bars inside

I just would like to know if it is possible so I can move on.
by Azev
02 Nov 2018, 15:46
Forum: Ask for Help (v1)
Topic: Listbox with progress bars inside
Replies: 19
Views: 4748

Re: Listbox with progress bars inside

https://github.com/Ixiko/AHK-libs-and-classes-collection/blob/master/lib-i_to_z/LVA.ahk I'm running Windows 10 x64. This is what it shows: https://i.imgur.com/VSDAfzv.png LVA_SetProgressBar("TLV", 1, 2, "s0xD8CB27 e0xFF91FF r200") LVA_SetProgressBar("TLV", 3, 4, "bmaroon s0xD8CB27 r121") LVA_SetPro...

Go to advanced search