Search found 444 matches

by Nwb
28 May 2018, 23:33
Forum: SciTE4AutoHotkey
Topic: Can you get rid of the .bak files created by Scite4AHK? Topic is solved
Replies: 2
Views: 5666

Can you get rid of the .bak files created by Scite4AHK? Topic is solved

It's to a point where it is so annoying that I might even switch to a different IDE because of the .bak files. So my last hope is this thread, I'm hoping there is a way to disable .bak files. It serves no purpose to me anyway, and especially when it is in the same folder. If I could switch the file ...
by Nwb
22 May 2018, 11:11
Forum: Gaming Help (v1)
Topic: [Fortnite] Move + Sprint Topic is solved
Replies: 22
Views: 15694

Re: [Fortnite] Move + Sprint Topic is solved

can someone tell me how to apply these hotkeys into the game? i never used macros or hotkeys before. thanks. Firstly download autohotkey. Now make a new autohotkey file and paste what I had written earlier in that script. Run the script and expect the instructed. Cheers! :D My pinky is really start...
by Nwb
18 May 2018, 04:57
Forum: Ask for Help (v1)
Topic: Internet Explorer and YouTube: press arrow key and page hangs
Replies: 2
Views: 849

Re: Internet Explorer and YouTube: press arrow key and page hangs

(a) I tried with internet explorer and it seems to be fine. I'm using Windows 10 and have decent specs. (b) Have you tried to obtain a troubleshoot from customer support? They usually have some really good tips, since I faced no problems. (c) ____ I still think your profile picture looks like a Smea...
by Nwb
14 May 2018, 13:45
Forum: Ask for Help (v1)
Topic: Simulate velocity sensitivity on a pc keyboard
Replies: 10
Views: 2530

Re: Simulate velocity sensitivity on a pc keyboard

Well that just got that complex that quick lol.
by Nwb
14 May 2018, 11:34
Forum: Ask for Help (v1)
Topic: Simulate velocity sensitivity on a pc keyboard
Replies: 10
Views: 2530

Re: Simulate velocity sensitivity on a pc keyboard

What must it do after measuring how long you have pressed a certain key? Also what is the function key in this case? Give us all specifics that would make it easier for us. But you need to tell exactly what you want because I don't know how this works. Depending on how long the key was pressed what ...
by Nwb
14 May 2018, 11:11
Forum: Gaming Help (v1)
Topic: [Fortnite] Move + Sprint Topic is solved
Replies: 22
Views: 15694

Re: [Fortnite] Move + Sprint Topic is solved

youngin91 wrote:can someone tell me how to apply these hotkeys into the game? i never used macros or hotkeys before. thanks.
Firstly download autohotkey. Now make a new autohotkey file and paste what I had written earlier in that script. Run the script and expect the instructed.

Cheers! :D
by Nwb
13 May 2018, 09:59
Forum: Ask for Help (v1)
Topic: -topic moved-
Replies: 4
Views: 1170

Re: Track script code

Hey bud,

If you're trying to trace the actions and calculations of your ahk script then double click the script's tray icon when it's running. It should pop up a neat log. Hope that helps.

Cheers! :D
by Nwb
13 May 2018, 09:53
Forum: Ask for Help (v1)
Topic: ImageSearch and errorlevel Topic is solved
Replies: 7
Views: 3504

Re: ImageSearch and errorlevel Topic is solved

Okay i've read this and am able to make sense of it, or believe i am, i had to change the code to a PixelGetColor since an image would be changing. I get the "else with no matching if" at line 19, or the else after "Msgbox, color not found". I'm not seeing a command or case inbetween similar to the...
by Nwb
13 May 2018, 09:43
Forum: Ask for Help (v1)
Topic: How to resize GUI control? Topic is solved
Replies: 3
Views: 1376

Re: How to resize GUI control? Topic is solved

AHHHHHHHHHHHHHH. Okay for some reason I thought that using Gui, Add' ing a picture would need the GUI to be destroyed in order for the change to be reflected. I donno why I thought that.

But yes just using Gui, add works. lol. Cheers! :D
by Nwb
13 May 2018, 04:32
Forum: Ask for Help (v1)
Topic: Limit For 1 Key In Many Different Combos!? Topic is solved
Replies: 10
Views: 2787

Re: Limit For 1 Key In Many Different Combos!? Topic is solved

Hmmm can't this be solved by just running two scripts.. hehe?
by Nwb
13 May 2018, 04:12
Forum: Ask for Help (v1)
Topic: How to resize GUI control? Topic is solved
Replies: 3
Views: 1376

Re: How to resize GUI control? Topic is solved

Bump, appreciate it, looking for more answers. :)
by Nwb
13 May 2018, 04:01
Forum: Ask for Help (v1)
Topic: ImageSearch and errorlevel Topic is solved
Replies: 7
Views: 3504

Re: ImageSearch and errorlevel Topic is solved

Hey bud, Use braces or the interpreter will assume only the first line is part of the executing sequence under the statement. Like so: if (errorlevel = 1) { sleep 100 send, 1 } Since you didn't put braces, only sleep 100 was under the statement. So send,1 was outside and would have always been execu...
by Nwb
11 May 2018, 08:55
Forum: Ask for Help (v1)
Topic: How to resize GUI control? Topic is solved
Replies: 3
Views: 1376

How to resize GUI control? Topic is solved

So I'm making this little app to handily switch between emojis and text styles (mostly for discord). Discord is not a game it's a text based platform (for moderators). Now the thing is, when I try to use GuiControl to immediately display the border again (they will display only when the user uses hi...
by Nwb
17 Apr 2018, 04:51
Forum: Ask for Help (v1)
Topic: How to make GUI movable (buttons covers the title bar)
Replies: 4
Views: 1733

Re: How to make GUI movable (buttons covers the title bar)

try gui -MinimizeBox Hey buy, I really appreciate it! I didn't realize that it would entirely remove the buttons. But is there anyway to also have a minimize button in the titlebar but just not the maximize? Or even remove the title icon entirely? Or I have to include those inside the GUI itself? O...
by Nwb
17 Apr 2018, 02:46
Forum: Ask for Help (v1)
Topic: How to make GUI movable (buttons covers the title bar)
Replies: 4
Views: 1733

How to make GUI movable (buttons covers the title bar)

Code: #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. ; #Warn ; Enable warnings to assist with detecting common errors. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. SetWorkingDir %A_ScriptDir% ; Ensures a consistent s...
by Nwb
17 Apr 2018, 01:19
Forum: Gaming Help (v1)
Topic: Make lean buttons able to be toggled
Replies: 11
Views: 3835

Re: Make lean buttons able to be toggled

Thank you both for the responses! However: bryantan179's broke on my first attempted use :( It would let me lean once, but then both lean keys stopped responding (acting as if help down I think, as when returning to Windows I get a constant ping until I close the script) Nwb's works well to toggle ...
by Nwb
16 Apr 2018, 09:00
Forum: Gaming Help (v1)
Topic: Combine send to different windows and hold down to spam Topic is solved
Replies: 1
Views: 788

Re: Combine send to different windows and hold down to spam Topic is solved

Hey bud, The actions on the first script will be sent after the buttons are released. When they are held the second script will be performing its function. Simply write what must be done after the loop after the }. :) Try this code: ifWinActive World of Warcraft { $1:: Loop { if not GetKeyState("1",...
by Nwb
16 Apr 2018, 08:51
Forum: Gaming Help (v1)
Topic: Make lean buttons able to be toggled
Replies: 11
Views: 3835

Re: Make lean buttons able to be toggled

Hey bud, If Q and E are your lean buttons then try this: ( F1 to stop toggling and F2 to close script) #MaxThreadsPerHotkey 2 SendMode Input *Q:: Send, {E up} Toggle := !Toggle if Toggle Send, {Q down} else Send, {Q up} return *E:: Send, {Q up} Toggle := !Toggle if Toggle Send, {E down} else Send, {...
by Nwb
16 Apr 2018, 03:49
Forum: Gaming Help (v1)
Topic: [Fortnite] Move + Sprint Topic is solved
Replies: 22
Views: 15694

Re: [Fortnite] Move + Sprint Topic is solved

Hey guys I'm really looking for a way to do the same thing as the OP, to basically have my sprint permanently on. However I'm not sure what to do with the code above, do I just enter that into my command line? I know this is a post from a while ago but this looks like exactly what I'm looking for i...
by Nwb
14 Apr 2018, 12:20
Forum: Gaming Help (v1)
Topic: Left Click + Right Click Script Request.
Replies: 1
Views: 690

Re: Left Click + Right Click Script Request.

Hey bud, So I'm not sure exactly what you're asking for. But I have two interpretations. First: Do you want the left mouse button completely remapped to the right mouse button? In that case use this: LButton:: RButton \:: Suspend, Toggle Second: Do you want the native function of LButton but you als...

Go to advanced search