Search found 52 matches

by keylo
14 Apr 2024, 02:18
Forum: Ask for Help (v1)
Topic: Resize GUI with ALL its contents
Replies: 4
Views: 585

Re: Resize GUI with ALL its contents

Amazing, Thank you very much! :bravo:
by keylo
14 Aug 2023, 18:32
Forum: AutoHotkey_H
Topic: FileSelectFile not working with AHK_H
Replies: 1
Views: 2511

Re: FileSelectFile not working with AHK_H

From the manual:>> Known limitation: A timer that launches during the display of a FileSelectFile dialog will postpone the effect of the user's clicks inside the dialog until after the timer finishes. To work around this, avoid using timers whose subroutines take a long time to finish, or disable al...
by keylo
02 Feb 2022, 14:21
Forum: Ask for Help (v1)
Topic: Regex need help (tough one) Topic is solved
Replies: 5
Views: 429

Re: Regex need help (tough one) Topic is solved

@braunbaer ,Thanks so much , it works fine :clap: . sorry, I didn't copy the function.
by keylo
02 Feb 2022, 14:01
Forum: Ask for Help (v1)
Topic: Regex need help (tough one) Topic is solved
Replies: 5
Views: 429

Re: Regex need help (tough one) Topic is solved

Thanks @braunbaer but it doesn't work, the output is blank
by keylo
02 Feb 2022, 12:53
Forum: Ask for Help (v1)
Topic: Regex need help (tough one) Topic is solved
Replies: 5
Views: 429

Regex need help (tough one) Topic is solved

Hi Guys, Is there a way I can do basic operation using regexreplace? in the following csv lines I want to add "4" to the second field csv= ( 1, 45 , 765756 1, 56 , 654654 1, 900 , 545809 ) the output should be 1, 49 , 765756 1, 60, 654654 1, 904, 545809 I'm trying to avoid loops in my script, is the...
by keylo
29 Nov 2021, 10:33
Forum: Ask for Help (v1)
Topic: Background color for embeded File explorer, Possible?
Replies: 0
Views: 342

Background color for embeded File explorer, Possible?

Hello, I was able to embed a file browser into my Gui . It is working fine , but I would like to change the white background of the file explorer to match the color of my Gui, Is that possible? The reason I am using an embedded file explorer it is because it allows drag and drop to other application...
by keylo
09 Oct 2021, 06:05
Forum: Scripts and Functions (v1)
Topic: [ Class + ( Editor Tool ) ] Custom Gui Image Button
Replies: 44
Views: 12873

Re: [ Class + ( Editor Tool ) ] Custom Gui Image Button

Wow, that a wonderful tool, thank you He :bravo: llbent
by keylo
29 Jul 2021, 09:35
Forum: Scripts and Functions (v1)
Topic: 3 ways to dim the screen
Replies: 2
Views: 4278

Re: 3 ways to dim the screen

Thanks jeeswg
by keylo
28 Jul 2021, 17:39
Forum: Ask for Help (v1)
Topic: using Arrays - can it be faster ? Topic is solved
Replies: 2
Views: 363

Re: using Arrays - can it be faster ? Topic is solved

swagfag wrote: ↑ 23 Jul 2021, 16:47 if u need to do DSP(which most often eventually ends up being the case), u don't do it in slow, interpreted languages LOL. you predicted it, it's funny. But no, I don't wanna go deep into DSP now my skill is not there yet, some gentle wave manipulations will suff...
by keylo
28 Jul 2021, 08:52
Forum: Ask for Help (v1)
Topic: using Arrays - can it be faster ? Topic is solved
Replies: 2
Views: 363

using Arrays - can it be faster ? Topic is solved

Hi all, is there a way to optimize the following codes so they can be faster? I'm dealing with big files so every nanosecond I save makes a huge difference at the end. The reason why I'm using arrays is that I need to modify them before writing them back. thanks ;~ read and store in arrays data := [...
by keylo
24 Jul 2021, 01:50
Forum: Ask for Help (v1)
Topic: Need help with Naudio.dll Topic is solved
Replies: 5
Views: 766

Re: Need help with Naudio.dll solved :) Topic is solved

@malcev Thank you, while Media Foundation seems very powerful, the learning curve seems to be too steep for my skill at the moment. Of course, bringing the Media Foundation to Autohotkey would be a dream come true but what I was trying to do is a very basic audio manipulation like muting a part of a...
by keylo
23 Jul 2021, 16:06
Forum: Ask for Help (v1)
Topic: Need help with Naudio.dll Topic is solved
Replies: 5
Views: 766

Re: Need help with Naudio.dll Topic is solved

Thank you @swagfag for your guidance, so if I understand, I can do all the wave hacking (trim, volume, etc..) just using AutoHotkey FileObject ? no need for any external library? That's even better. I have started to learn the wave format (FileTypeBlocID, BlocSize, etc...) I also found jeeswg's File...
by keylo
22 Jul 2021, 22:41
Forum: Ask for Help (v1)
Topic: Need help with Naudio.dll Topic is solved
Replies: 5
Views: 766

Need help with Naudio.dll Topic is solved

Hi all,I found a Dll library called NAUDIO.dll, useful to manipulate wav audio files. of course, I could easily use "Sox Exchange" but I prefer to use a library with a more permissive licence and since naudio use the MIT licence, I wanna give it a try Mainly, I want to use it to trim (split) wav fil...
by keylo
17 Jul 2021, 18:53
Forum: Ask for Help (v1)
Topic: Rotary knob
Replies: 14
Views: 1986

Re: Rotary knob

Verry nice Hellbent, I did modified your previous DialControl to respond to mouse up/down instead of rotate , it works good but I'm not sure if it is the right way to do it. It would be nice if (mouse up/down instead of rotate) could be added as option in you latest dialcontrol. ;*******************...
by keylo
16 Jul 2021, 15:16
Forum: Ask for Help (v1)
Topic: Extremely strange behaviour
Replies: 3
Views: 685

Re: Extremely strange behaviour

Try the following

Code: Select all

^!a::
WinActivate, the name of your program
WinWaitActive, the name of your program
send {Enter 21}

return
by keylo
15 Jul 2021, 09:35
Forum: Ask for Help (v1)
Topic: Rotary knob
Replies: 14
Views: 1986

Re: Rotary knob

Not so long ago, I would laugh if someone tells me those types of controls could be done in AHK, now there it is. Thanks @Hellbent :thumbup:
by keylo
14 Jul 2021, 16:08
Forum: Ask for Help (v1)
Topic: Rotary knob
Replies: 14
Views: 1986

Re: Rotary knob

lol :) I was thinking to myself that it would be nice if it was a class. I came here and you've done it, Thank you
by keylo
14 Jul 2021, 13:21
Forum: Ask for Help (v1)
Topic: Rotary knob
Replies: 14
Views: 1986

Re: Rotary knob

Wow, thank you @Hellbent, exactly what I needed . :bravo:
by keylo
14 Jul 2021, 02:36
Forum: Ask for Help (v1)
Topic: Rotary knob
Replies: 14
Views: 1986

Re: Rotary knob

Wow, very nice @Hellbent, your rotary knob has that modern and simple look.
unfortunately, I was not able to test it because I'm still on Windows 7, lol :)
But I am a big fan of your controls... they usually work on windows 7.
Can this knob above be modified to work on win7?
by keylo
13 Jul 2021, 17:24
Forum: Ask for Help (v1)
Topic: Rotary knob
Replies: 14
Views: 1986

Re: Rotary knob

Great. Thanks, flyingDman. I will try that.

Go to advanced search