Search found 565 matches

by DRocks
07 Sep 2018, 18:42
Forum: Old Topics
Topic: AutoGUI 2.5
Replies: 159
Views: 111738

Re: AutoGUI 2.5

thank you so much man it would be awesome! :)
by DRocks
07 Sep 2018, 01:17
Forum: Old Topics
Topic: AutoGUI 2.5
Replies: 159
Views: 111738

Re: AutoGUI 2.5

hello Alguimist

Thank you for the updates! I have been desperatly hoping for an Undo function that would act on your latest changes upon the GUI preview. Some times I hit delete with a group of box selected by error and I cant go back! its really painful lol

let me know what you think please

Alex
by DRocks
13 Jun 2018, 12:20
Forum: Bug Reports
Topic: WinMove [AutoHotkey_1.1.29.00] Topic is solved
Replies: 14
Views: 8192

Re: WinMove [AutoHotkey_1.1.29.00] Topic is solved

lexikos wrote:DRocks, you are not using the workaround I noted in my previous post.

Now I suggest you update to v1.1.29.01.
Thank you Lexikos
by DRocks
08 Jun 2018, 06:26
Forum: Scripts and Functions (v1)
Topic: Find a substring in between 2 other substrings
Replies: 10
Views: 2466

Re: Find a substring in between 2 other substrings

Nice I will try this thanks.
What seems great about this is that you can choose a word rather than count the string begining pos and ending pos
by DRocks
03 Jun 2018, 20:48
Forum: Tutorials (v1)
Topic: Classes in AHK, Basic tutorial.
Replies: 35
Views: 104390

Re: Classes in AHK, Basic tutorial.

nnnik wrote:https://autohotkey.com/boards/viewtopic.php?f=7&t=41332
Classes only become useful when using them correctly.
Wow thats a huge answer haha :D thanks alot gonna read through your detailed topic :)
by DRocks
03 Jun 2018, 20:08
Forum: Ask for Help (v1)
Topic: Help Making Toggle Loop Topic is solved
Replies: 5
Views: 917

Re: Help Making Toggle Loop Topic is solved

Hey this is a nice way to boost versatility of settimer. Its not clear in docs that u can expand the period parameter like this. Could you please comment on it? :) This is nothing limited to SetTimer - you can use the ternary operator in a lot of cases to replace a simple if-else-comparison: ?: Ter...
by DRocks
03 Jun 2018, 07:36
Forum: Ask for Help (v1)
Topic: Help Making Toggle Loop Topic is solved
Replies: 5
Views: 917

Re: Help Making Toggle Loop Topic is solved

Xtra wrote:

Code: Select all

#NoEnv

^!i::SetTimer, MyLoop, % (Toggle := !Toggle) ? 750 : "Off"

MyLoop:
    Send, {ScrollLock}
return
HTH
Hey this is a nice way to boost versatility of settimer. Its not clear in docs that u can expand the period parameter like this. Could you please comment on it? :)
by DRocks
03 Jun 2018, 07:30
Forum: Ask for Help (v1)
Topic: How to use different variables in the same "if"? Topic is solved
Replies: 7
Views: 1774

Re: How to use different variables in the same "if"? Topic is solved

Some ideas. Cheers. if var in % var1 "," var2 "," var3 if var in literal1,literal2,literal3 if (cKey ~= "^Main_[BCDEF]$") ;RegEx case sensitive if (cKey ~= "i)^Main_[BCDEF]$") ;RegEx case insensitive But note: RegEx can be slower, sometimes one RegExMatch/RegExReplace call can be slower than multip...
by DRocks
03 Jun 2018, 07:21
Forum: Tutorials (v1)
Topic: Classes in AHK, Basic tutorial.
Replies: 35
Views: 104390

Re: Classes in AHK, Basic tutorial.

Hello and thanks For this tutorial! I still have one question which is major: why would we use classes instead of named variables like : sales_window, sales_ItemName Or why wouldnt we just use clearly labelled functions like : sales_GetItemName() I Just dont get why complicate understanding of scrip...
by DRocks
02 Jun 2018, 08:54
Forum: Pulovers Macro Creator
Topic: Pulover's Macro Creator v5.4.1 - The Complete Automation Tool
Replies: 1254
Views: 985176

Re: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool

Hello sir,

Just letting you kn ow that I find this extremely nice and useful. Many times it has saved me from wandering around for some specific tasks like ImageSearch code generation, repetitive clicks in some windows, generating code for control stuff. Its very damn nice thanks so much
by DRocks
01 Jun 2018, 06:48
Forum: Old Topics
Topic: AutoGUI - Script Editor, GUI Designer, Debugger and Tools
Replies: 423
Views: 422406

Re: AutoGUI - Script Editor and GUI Designer

Ok thank you again for the reply :)
Please let me know if you get on this automatic GUI recalling feature. Thanks for the availability of your script for free
BTW : the manual mode works Well :D
by DRocks
31 May 2018, 06:48
Forum: Old Topics
Topic: AutoGUI - Script Editor, GUI Designer, Debugger and Tools
Replies: 423
Views: 422406

Re: AutoGUI - Script Editor and GUI Designer

Thanks for the reply :) Ok so I understand that the method is to Import GUI by cloning the saved file either by parse method, or by executing the GUI and cloning the window back in AUTO GUI right? Ill try this :) And do you have any plan to figure out how to make the generated GUI be recallable for ...
by DRocks
30 May 2018, 17:44
Forum: Old Topics
Topic: AutoGUI - Script Editor, GUI Designer, Debugger and Tools
Replies: 423
Views: 422406

Re: AutoGUI - Script Editor and GUI Designer

hello Alguimist, I must say this script is fantastic and is my dream editor for AHK GUIs. I have noticed one annoying bug that is repeatable on my Win10 PC with ahk 1.1.28 and AUTO GUI 2.2.5a The GUI preview Windows cannot be recalled when you reopen the saved file. So what this means is that you ar...
by DRocks
28 May 2018, 04:29
Forum: Tutorials (v1)
Topic: jeeswg's Acc tutorial (Microsoft Active Accessibility) (MSAA)
Replies: 43
Views: 67203

Re: jeeswg's Acc tutorial (Microsoft Active Accessibility) (MSAA)

hi jeeswg I have been reading a couple of your topics so thanks so much for the help you provide here. Are you interested in anything like making short videos about some of the most important discoveries you've explained by text? It is a suggestion that runs my mind as I write because I think it wou...
by DRocks
26 May 2018, 09:05
Forum: Bug Reports
Topic: WinMove [AutoHotkey_1.1.29.00] Topic is solved
Replies: 14
Views: 8192

Re: WinMove [AutoHotkey_1.1.29.00] Topic is solved

Hello guys, Following this topic I also have a custom made WindowManager which probably has bad coding in some points but it worked good in 1.1.28.02. In 1.1.29 it doesnt work at all and crashes automatically when pressing the Hotkey that triggers the WinMoves ;https://autohotkey.com/boards/viewtopi...
by DRocks
20 May 2018, 21:58
Forum: AHK Studio
Topic: AHK Studio
Replies: 1179
Views: 618045

Re: AHK Studio

This is my favorite Editor for AutoHotkey. Can't find all the ease of use that AHK studio offers in other editors. Thanks so much. Its hard to believe you did all this for me who begins programming AHK as first language lol! Very nice.
by DRocks
19 May 2018, 08:10
Forum: Ask for Help (v1)
Topic: [SOLVED] winget, myList, list Topic is solved
Replies: 21
Views: 4363

Re: [SOLVED] winget, myList, list Topic is solved

This last example is very nice TLM

thank you for your help it also helped me indirectly. This method allowed me to write my own Window manager for specific needs and its better than one I was evaluating worth 20USD!

thanks a bunch :)
by DRocks
18 May 2018, 06:43
Forum: Ask for Help (v1)
Topic: GUI help
Replies: 4
Views: 5542

Re: GUI help

Hey Hellbent its nice to see a post of you herr. Just letting you know that you really helped me alot to start my AHK journey!! From.your YouTube channel! For instance your Gui tutorials for example!

Cheers
All the best
by DRocks
17 May 2018, 23:11
Forum: Ask for Help (v1)
Topic: [SOLVED] winget, myList, list Topic is solved
Replies: 21
Views: 4363

Re: [SOLVED] winget, myList, list Topic is solved

Hey TLM, I've tried this example for myself and adapted it to try creating a manual selected Window Manager and I am there now: Do you think I'm using Arrays correctly? Or is it noob coded? I understand myself with repetitive lines on the iniwrite but is it good and efficient to go that way accordin...

Go to advanced search