Search found 236 matches

by Cuadrix
21 May 2019, 11:52
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17219

Re: Gods don't exist.

There is hope in our souls There is no such thing as a soul. There is only our brain, which produces our consciousness. When the brain dies, the consciousness dies, therefore you as a person cease to exist. That's the same for all conscious and unconscious organisms on this planet. Assuming anythin...
by Cuadrix
20 May 2019, 23:12
Forum: Off-topic Discussion
Topic: Gods don't exist.
Replies: 64
Views: 17219

Gods don't exist.

.
by Cuadrix
20 May 2019, 16:34
Forum: Ask for Help (v1)
Topic: Pass a variable to Substr
Replies: 2
Views: 994

Re: Pass a variable to Substr

Documentation
NewStr := SubStr(String, StartingPos , Length)

Code: Select all

SubStr(result, FoundPos)
by Cuadrix
20 May 2019, 04:10
Forum: Ask for Help (v1)
Topic: DllCall Pointer? Topic is solved
Replies: 1
Views: 423

DllCall Pointer? Topic is solved

From MSDN Docs : LONG ChangeDisplaySettingsExA( LPCSTR lpszDeviceName, DEVMODEA *lpDevMode, HWND hwnd, DWORD dwflags, LPVOID lParam ); If I were to make a DllCall to this function, what should I do about the asterisk * in the above? Should I just ignore it, and do this?; Var := DllCall("ChangeDispla...
by Cuadrix
18 May 2019, 19:11
Forum: Off-topic Discussion
Topic: Learn how to protect your Intellectual Property in this free AHK webinar
Replies: 38
Views: 441367

Re: Learn how to protect your Intellectual Property in this free AHK webinar

Even if the language itself is open source, programs made in Autohotkey don't have to be.
by Cuadrix
18 May 2019, 19:04
Forum: Ask for Help (v1)
Topic: Looking to simplify this
Replies: 4
Views: 561

Re: Looking to simplify this

If you want the Random commands to be executed after the loops, then you can move the return out of both loops and place an if statement inside the outer loop to check when the last round has come to an end, then just place the two Random command inside the if block you just created. Here is the com...
by Cuadrix
18 May 2019, 18:25
Forum: Ask for Help (v1)
Topic: I need help
Replies: 3
Views: 591

Re: I need help

Many games and programs block input from external programs to avoid macros and cheating. That could be why the script isn't working on that specific game.
You could try compiling your script to an .exe file, then running that as an administrator. Otherwise there isn't really much I can do
by Cuadrix
18 May 2019, 18:20
Forum: Ask for Help (v1)
Topic: Looking to simplify this
Replies: 4
Views: 561

Re: Looking to simplify this

Try playing with Loop
by Cuadrix
18 May 2019, 17:42
Forum: Ask for Help (v1)
Topic: Loop parse on Unix (LF) file? Topic is solved
Replies: 2
Views: 563

Re: Loop parse on Unix (LF) file? Topic is solved

;FileRead, file, unixfile.txt ;example unix text file file = ( One Two Three Four ) ;example windows text file ;file := "One`r`nTwo`r`nThree`r`nFour" ;choose any num := "Two" ;check what linefeed is used and assign to lf lf := (inStr(file, "`r`n")) ? ("`r`n") : (inStr(file, "`n")) ? ("`n") : (inStr...
by Cuadrix
18 May 2019, 17:33
Forum: Ask for Help (v1)
Topic: How to endless loop
Replies: 1
Views: 388

Re: How to endless loop

What you are looking for are loops; Loop or While-loop Not sure if this is what you wanted to accomplish, but here is a code from my understanding of your goal; #MaxThreadsPerHotkey, 2 Toggle := 0 ; Initially off ; LCtrl to begin loop. Press again to stop, and so on. LCtrl:: Toggle := !Toggle While ...
by Cuadrix
18 May 2019, 03:58
Forum: Ask for Help (v1)
Topic: I need help
Replies: 3
Views: 591

Re: I need help

Have you tried running the script as administrator?
by Cuadrix
18 May 2019, 00:33
Forum: Wish List
Topic: A_Index0 Topic is solved
Replies: 15
Views: 5250

Re: A_Index0 Topic is solved

I say just get used to the regular Autohotkey style index, or start using Python
by Cuadrix
17 May 2019, 23:16
Forum: Old Topics
Topic: AutoGUI 2.5
Replies: 159
Views: 114835

Re: AutoGUI 2.5

By the way, is there any way to change the color scheme of the window and bars? I would like it to be dark rather than white
by Cuadrix
17 May 2019, 13:41
Forum: Ask for Help (v1)
Topic: Copy Files from a list
Replies: 3
Views: 1035

Re: Copy Files from a list

It's very simple, Remove the if statement from your code and put %A_LoopReadLine% in the source file path: Loop, Read, C:\prog\Filelist.txt { FileCopy, C:\prog\photos\%A_LoopReadline%, C:\prog\Selected_photos } Return This requires that the extension names are present in the list Also, don't put ret...
by Cuadrix
17 May 2019, 02:13
Forum: Ask for Help (v1)
Topic: Mouse click
Replies: 1
Views: 431

Re: Mouse click

You have to use CoordMode
by Cuadrix
17 May 2019, 02:00
Forum: Old Topics
Topic: AutoGUI 2.5
Replies: 159
Views: 114835

Re: AutoGUI 2.5

Nice work! Last time I used this was when it was in alpha stage. It's now very fluid compared to back then.
Now I can finally start using this work of art
by Cuadrix
16 May 2019, 17:24
Forum: Ask for Help (v1)
Topic: Basic noob question #if Topic is solved
Replies: 2
Views: 566

Re: Basic noob question #if Topic is solved

Why not try first, then ask?
by Cuadrix
15 May 2019, 19:52
Forum: Tutorials (v1)
Topic: jeeswg's mathematics tutorial
Replies: 4
Views: 12910

Re: jeeswg's mathematics tutorial

What the hell is this sorcery

Go to advanced search