Search found 175 matches

by brutus_skywalker
21 Jun 2018, 14:33
Forum: Scripts and Functions (v1)
Topic: Mouse And Keyboard Macro Recorder
Replies: 143
Views: 220949

Re: Mouse And Keyboard Macro Recorder

Anybody compared this to Pulover's Macro Creator? It was made in ahk, too, you know. http://www.macrocreator.com I've USED Pulover's Macro Creator & I USE this one, this has far fewer Bell's & whistles, but especially since v4.5 when FindText was integrated it's indispensable to me for automating a...
by brutus_skywalker
15 Jun 2018, 10:49
Forum: Ask for Help (v1)
Topic: Prevent hotstring from inputting actual text
Replies: 3
Views: 1671

Re: Prevent hotstring from inputting actual text

I know what you meant,but if you're willing to forgoe hotstrings,long hotkeys by helgef is precisely what you're looking for. Cheers.
by brutus_skywalker
12 Jun 2018, 04:20
Forum: Scripts and Functions (v1)
Topic: [Editor] CodeQuickTester - Write and run code without saving to a temporary file
Replies: 202
Views: 116751

Re: [Script] CodeQuickTester - Write and run code without saving to a temporary file

] Multiple instances shouldn't conflict with each other in any way, and that note about memory usage sound completely fine. I'm stumped as to what could have been causing your issue. Can I blame the antivirus? :lol: I don't think so,I use Microsoft Security Essentials,pretty solid AV,plays well wit...
by brutus_skywalker
10 Jun 2018, 11:50
Forum: Ask for Help (v1)
Topic: Trying to make Title only work on exact title instead of contain
Replies: 4
Views: 1805

Re: Trying to make Title only work on exact title instead of contain

You probably figured it out, but you can switch match modes for to subsequent commands, so as to set different rules across your script, any command works as such, except directives prefixed with #. *For anyone else asking this question...
by brutus_skywalker
09 Jun 2018, 22:59
Forum: Ask for Help (v1)
Topic: Alt Tab Script
Replies: 1
Views: 914

Re: Alt Tab Script

Not much to go on, but you can 'Control' a window that's in the background as below. https://autohotkey.com/docs/commands/ControlSend.htm While WinActive("ahk_exe targetApplication.exe"){ ;.... stuff here only happens while targetApplication.exe is active/foreground } While WinExists("ahk_exe target...
by brutus_skywalker
09 Jun 2018, 22:49
Forum: Ask for Help (v1)
Topic: Trying to make Title only work on exact title instead of contain
Replies: 4
Views: 1805

Re: Trying to make Title only work on exact title instead of contain

https://autohotkey.com/docs/commands/SetTitleMatchMode.htm SetTitleMatchMode, 3 One of the following digits or the word RegEx: 1: A window's title must start with the specified WinTitle to be a match. 2: A window's title can contain WinTitle anywhere inside it to be a match. 3: A window's title mus...
by brutus_skywalker
09 Jun 2018, 12:42
Forum: Ask for Help (v1)
Topic: Reverse string Dllcall not working anymore? Topic is solved
Replies: 9
Views: 2282

Re: Reverse string Dllcall not working anymore? Topic is solved

you are using the ANSI version... ; https://msdn.microsoft.com/en-us/library/9hby7w40.aspx MsgBox % DllCall("msvcrt.dll\_wcsrev", "Str", "AutoHotkey", "CDecl Str") var := "autohotkey" MsgBox % DllCall("msvcrt.dll\_wcsrev", "UPtr", &var, "CDecl Str") Yeah, that was stupid of me, i didn't notice, jus...
by brutus_skywalker
09 Jun 2018, 12:20
Forum: Ask for Help (v1)
Topic: Reverse string Dllcall not working anymore? Topic is solved
Replies: 9
Views: 2282

Reverse string Dllcall not working anymore? Topic is solved

So i was going over https://autohotkey.com/board/topic/42396-fastest-way-to-reverse-a-string , and i can't figure out why NON of the DllCall's seem to work, the thing is i recall using some of these,but they just don't seem to work anymore. Any Ideas as to why? [Win7x64-Ultimate] MsgBox, % DllCall("...
by brutus_skywalker
09 Jun 2018, 10:58
Forum: Scripts and Functions (v1)
Topic: [Game] Bulldozer
Replies: 115
Views: 42317

Re: [GAME] Bulldozer

You Sir Most Certainly Are TheDewd , FREAKING AWESOME DUDE!
by brutus_skywalker
09 Jun 2018, 10:40
Forum: Scripts and Functions (v1)
Topic: [Script] DocGen - Generate Html 'Documentation' of scripts from code comments
Replies: 2
Views: 1850

Re: [Script] DocGen - Generate Html 'Documentation' of scripts from code comments

Helgef wrote:

Thanks Helgef, appreciate it.

Fixed Them All & Updated Examples.
by brutus_skywalker
08 Jun 2018, 21:16
Forum: Scripts and Functions (v1)
Topic: [Script] DocGen - Generate Html 'Documentation' of scripts from code comments
Replies: 2
Views: 1850

[Script] DocGen - Generate Html 'Documentation' of scripts from code comments

It parses Functions+Params,Labels,Hotkeys & Hotstrings and assigns Adjacent or Inline comments that logically describe each parsed code component. It also parses the top most comment block or topmost successive line of comments as the script description, provided no other code other than the standar...
by brutus_skywalker
08 Jun 2018, 20:26
Forum: Ask for Help (v1)
Topic: Trying to select Default Browser Topic is solved
Replies: 4
Views: 1482

Re: Trying to select Default Browser Topic is solved

In this Line: run %PassthroughBrowser% http://www.digwebinterface.com/?hostnames=%domain%&type=ANY&useresolver=8.8.4.4&ns=all&nameservers= the string domain is considered a variable because it's enclosed in percent sign, use an escape char ` . Should be: run %PassthroughBrowser% http://www.digwebint...
by brutus_skywalker
08 Jun 2018, 20:19
Forum: Ask for Help (v1)
Topic: Goto block that doesn't enclose it
Replies: 1
Views: 1547

Re: Goto block that doesn't enclose it

Maybe this: { ;QNEXTCOHD { ;KEYTRIGGER #if winexist("WO") lctrl & numpad8:: `:: Gosub, guiWOQNCOHD Return #if } } { ; WOCOHD - CONTROLE HARDWARE SOFTWARE DOORSTROOM { ;KEYTRIGGER #if winexist("WO") lctrl & numpad7:: Gosub, guiWOCOHD Return #if } } guiWOQNCOHD: coordmode, mouse, screen sendinput, {la...
by brutus_skywalker
08 Jun 2018, 20:09
Forum: Ask for Help (v1)
Topic: Prevent hotstring from inputting actual text
Replies: 3
Views: 1671

Re: Prevent hotstring from inputting actual text

I use hotstrings for various commands as well, the * in the hotstring should autoremove what ever hotstring you used to run the command.

Code: Select all

#If GetKeyState("Scrolllock","T")

:*:ahk::
Run, "C:\Users\Username\AutoHotkey"
Return
by brutus_skywalker
08 Jun 2018, 19:44
Forum: Scripts and Functions (v1)
Topic: [Editor] CodeQuickTester - Write and run code without saving to a temporary file
Replies: 202
Views: 116751

Re: [Script] CodeQuickTester - Write and run code without saving to a temporary file

I'm having trouble reproducing the issue. Do you have any idea what might have been causing it? Was it using much more RAM than it typically does? Somewhat, memory doubles when the open/save dialog is active(receding only when inactive) & there's a similar CPU spike, but fairly consistent RAM usage...
by brutus_skywalker
07 Jun 2018, 14:55
Forum: Ask for Help (v1)
Topic: If ErrorLevel = 1 for a certain time, do this? Topic is solved
Replies: 1
Views: 1148

Re: If ErrorLevel = 1 for a certain time, do this? Topic is solved

Code: Select all

timeCode := A_TickCount, thisErrorLevel := 0
While (A_TickCount - timeCode < 60000 AND thisErrorLevel){
PixelSearch, Px2, Py2, 0, 0, 1920, 1080, 0xFFFF8E, 3, Fast RGB
thisErrorLevel := ErrorLevel
}
by brutus_skywalker
07 Jun 2018, 14:21
Forum: Ask for Help (v1)
Topic: Help with PixelGetColor Conflict
Replies: 2
Views: 967

Re: Help with PixelGetColor Conflict

https://autohotkey.com/docs/commands/IniRead.htm https://autohotkey.com/docs/commands/IniWrite.htm NumPad8::Suspend, Toggle NumPad9::Reload CoordMode, Pixel, Relative NumPad2:: If !color IniRead, color, %A_ScriptName%.ini, SectionColor, KeyColor PixelSearch, TargetX, TargetY, 323, 316, 1047, 599, %...
by brutus_skywalker
07 Jun 2018, 10:56
Forum: Gaming Help (v1)
Topic: Making a script that clicks when any pixels move
Replies: 3
Views: 1202

Re: Making a script that clicks when any pixels move

Ah, my solution didn't relate to ur question.....my bad [BadPost]

Go to advanced search