Search found 21 matches

by Zurydix
03 Jul 2018, 08:44
Forum: Ask for Help (v1)
Topic: Checkbox with loop Topic is solved
Replies: 3
Views: 1001

Re: Checkbox with loop Topic is solved

Thanks for replying, but if I use "P", it will only send the Z key when F4 is hold down.
by Zurydix
03 Jul 2018, 05:11
Forum: Ask for Help (v1)
Topic: Checkbox with loop Topic is solved
Replies: 3
Views: 1001

Checkbox with loop Topic is solved

Hello, I have a G.U.I with a checkbox, when I check it, I want that when the F4 key is pressed, the Z key is hold down, then when F4 is pressed again, the Z key is released. But when I press F4, nothing happen. Here is my code : #SingleInstance Force Gui, -MinimizeBox Gui, Add, CheckBox, x12 y25 h20...
by Zurydix
04 Jun 2018, 15:26
Forum: Ask for Help (v1)
Topic: ListView LV_Add : help using A_Variables Topic is solved
Replies: 6
Views: 1219

ListView LV_Add : help using A_Variables Topic is solved

Hello' Im trying to make a ListView with two columns, one called "Time" and an other called "Log", anyway, the fact is that I can't find a way to put Hour:Min:Sec in "Time" column LV_Add("", A_Hour:A_Min:A_Sec, "Welcome !") I can find a way to use multiple A_Variable in this case. I'm getting error ...
by Zurydix
10 Apr 2018, 04:59
Forum: Ask for Help (v1)
Topic: Replace dot to comma in a text file Topic is solved
Replies: 5
Views: 2674

Replace dot to comma in a text file Topic is solved

Hello, I would like to change every dot to comma in a text file. I have limited AHK knowledge, I guess I have to use FileRead and StringReplace functions to make it work but I don't know more. FileRead, EauTxt, %A_WorkingDir%\Eau.txt StringReplace, EauTxt, EauTxt, ., `,, All Would be so cool if anyo...
by Zurydix
05 Apr 2018, 14:04
Forum: Ask for Help (v1)
Topic: Convert values of .txt to Excel Topic is solved
Replies: 6
Views: 1909

Re: Convert values of .txt to Excel Topic is solved

Now in your post you are talking about changing the value1 'column' into a value1 'row'. That may just be a terminology mistake. Columns are up and down, rows are side to side. If that is truly what you want to change the text files columns to rows, that is called transposing columns to rows. Excel...
by Zurydix
04 Apr 2018, 03:15
Forum: Ask for Help (v1)
Topic: Convert values of .txt to Excel Topic is solved
Replies: 6
Views: 1909

Convert values of .txt to Excel Topic is solved

Hello, I would like to save values from a text file to Excel. The text file look like this value1, value2, value3 value1, value2, value3 value1, value2, value3 There is 3 values per line and theses value should be convert to Excel as "value1" in the first row, value2 in the second row and value3 in ...
by Zurydix
16 Feb 2018, 08:33
Forum: Ask for Help (v1)
Topic: Edit value in gpedit.msc
Replies: 3
Views: 1046

Re: Edit value in gpedit.msc

Hello,

Thanks for reply :)
I don't have any knowledge in C++, is there a way to do it through registry so I can use RegDelete function?
by Zurydix
15 Feb 2018, 12:14
Forum: Ask for Help (v1)
Topic: Edit value in gpedit.msc
Replies: 3
Views: 1046

Edit value in gpedit.msc

Hello, I would like to know if it is possible to change a value of gpedit.msc with AHK, I searched a lot and I didn't find anything. https://image.noelshack.com/fichiers/2018/07/4/1518714716-gpedit.jpg This is the thing that I want to change. I searched a way to do it through the registry but no res...
by Zurydix
13 Aug 2017, 16:42
Forum: Ask for Help (v1)
Topic: Check if a box is checked in an other program
Replies: 14
Views: 6174

Re: Check if a box is checked in an other program

Would you mind providing the full ClassNN? 'HwndWrapper[NL...' In your screenshot it says 'Cocher' (check). If you untick the box, perhaps it will say 'uncheck'. That would mean that AccViewer could tell whether the box is ticked/unticked. If that is the case, then you can use Acc to retrieve that ...
by Zurydix
13 Aug 2017, 12:48
Forum: Ask for Help (v1)
Topic: Check if a box is checked in an other program
Replies: 14
Views: 6174

Re: Check if a box is checked in an other program

I have provided some code to toggle the checkbox in Notepad's Find dialog. I have also provided two bits of script that you may be able to use, or adapt, to apply to your program. Note: I have used the 'path' shown in your screenshot. q:: ;e.g. Notepad Find dialog toggle Match case checkbox Control...
by Zurydix
13 Aug 2017, 04:04
Forum: Ask for Help (v1)
Topic: Check if a box is checked in an other program
Replies: 14
Views: 6174

Re: Check if a box is checked in an other program

Where available, Acc can do things with subelements *within* controls. In short, if AccViewer can get a red square around the checkbox, and if there is some number/string that changes in AccViewer depending on whether the checkbox is ticked/unticked, then you should be able to retrieve the ticked s...
by Zurydix
12 Aug 2017, 11:42
Forum: Ask for Help (v1)
Topic: Check if a box is checked in an other program
Replies: 14
Views: 6174

Re: Check if a box is checked in an other program

You could try Acc. See if AccViewer can retrieve the checked state, and if it can, you can use Acc functions to retrieve the state. Acc library (MSAA) and AccViewer download links - AutoHotkey Community https://autohotkey.com/boards/viewtopic.php?f=6&t=26201 Thanks for help, but ClassNN is the same...
by Zurydix
12 Aug 2017, 05:25
Forum: Ask for Help (v1)
Topic: Check if a box is checked in an other program
Replies: 14
Views: 6174

Re: Check if a box is checked in an other program

Thanks for helping, I learned something :D But ClassNN is blank so I can't use this method :x Anyone can clarify how to resolve my problem using PixelSearch function, I already tested it before but I failed This is what I did : WinActivate ahk_exe NLClientApp.exe { PixelSearch, Px, Py, 481, 212, 490...
by Zurydix
10 Aug 2017, 13:04
Forum: Ask for Help (v1)
Topic: Check if a box is checked in an other program
Replies: 14
Views: 6174

Re: Check if a box is checked in an other program

ControlGet, IsChecked, Checked,, CheckBox8, WinTitle ;IsChecked = OutputVar, Checked = CMD value,, Checkbox8=Class, WinTitle Msgbox, % IsChecked ;Checked: Sets OutputVar to be 1 if the checkbox or radio button is checked or 0 if not. Thanks for helping, but how can I know wich checkbox is it? The c...
by Zurydix
10 Aug 2017, 06:48
Forum: Ask for Help (v1)
Topic: Check if a box is checked in an other program
Replies: 14
Views: 6174

Check if a box is checked in an other program

Hello, I would like to know if there is a way to check if a box is checked in an program (not ahk one). https://img4.hostingpics.net/pics/364269nl4.png I tried with PixelGetColor function but I didn't find how to :( WinActivate ahk_exe NLClientApp.exe { PixelGetColor, color, %MouseX%, %MouseY% if (c...
by Zurydix
15 Jul 2017, 07:53
Forum: Ask for Help (v1)
Topic: SendInput function Topic is solved
Replies: 4
Views: 1112

SendInput function Topic is solved

Hello, I'm new with AHK and I have a problem that I'm sure its stupid to solve but I didn't found how to :( So I want to be able to use a macro if the checkbox is checked, this is working, but I added an Hotkey function who edit the macro. Here, SendInput {m[1] "{" m[2] "} Down} {m[1] "{" m[2] "} sh...
by Zurydix
12 Jul 2017, 14:23
Forum: Ask for Help (v1)
Topic: Recover value of hotkey and edit function Topic is solved
Replies: 1
Views: 542

Recover value of hotkey and edit function Topic is solved

Hello, I'm new with AHK and here is my problem : I want to make a "macro" partially defined by an "hotkey" and "edit" function and this macro should be usable only if the checkbox is checked. Gui, Add, GroupBox, x412 y39 w190 h110 , Fast animations Gui, Add, Text, x422 y59 w110 h20 , Choose animatio...

Go to advanced search