Search found 18 matches

by chazcon
10 Dec 2020, 15:46
Forum: Ask for Help (v1)
Topic: WinActivate not activating Bluebeam Revu
Replies: 1
Views: 153

WinActivate not activating Bluebeam Revu

I run an AHK script 24/7 on my Windows 10 computers to perform many functions, one of which includes needing to activate several apps in order to move them to a different position on my screens. WinActivate works with all except Bluebeam Revu. I can get it to activate this window if I use the 'Show ...
by chazcon
27 May 2018, 22:56
Forum: SciTE4AutoHotkey
Topic: Syntax highlighting gone
Replies: 6
Views: 4109

Re: Syntax highlighting gone

SOLVED

Clean install of Windows 10. Yep. When I installed SciTE4AHK it even updated, never did that before.

HAPPY DANCE
by chazcon
27 May 2018, 14:43
Forum: SciTE4AutoHotkey
Topic: Syntax highlighting gone
Replies: 6
Views: 4109

Re: Syntax highlighting gone

Ok I uninstalled Autohotkey and Scite4AHK, cleared out all bits, rebooted, clean install of previous version AHK 1.1.26.01 and SciTE4AHK.

Same issue, no syntax highlighting. So frustrating.
by chazcon
27 May 2018, 14:26
Forum: SciTE4AutoHotkey
Topic: New Autohotkey folder created when I use Scite
Replies: 1
Views: 2411

Re: New Autohotkey folder created when I use Scite

Hmm sounds similar to my problem, highlighting gone.
by chazcon
27 May 2018, 14:14
Forum: SciTE4AutoHotkey
Topic: Syntax highlighting gone
Replies: 6
Views: 4109

Re: Syntax highlighting gone

gregster thanks but I have all that - the (strange) issue is that syntax highlighting is gone - opening a .ahk file shows all plain text. Is this an issue with the 1.1.29.00 version of AHK? Does SciTE4AHK not support the latest version of AHK? Anyone running SciTE successfully (with syntax highlight...
by chazcon
27 May 2018, 12:31
Forum: SciTE4AutoHotkey
Topic: Syntax highlighting gone
Replies: 6
Views: 4109

Syntax highlighting gone

So I have been using this distro for years and it works flawlessly. However yesterday I installed v. 1.1.29.00 of AHK and also from the SciTE official site this Windows installer: An installer created by Troy Simpson. ...thinking I was updating both programs to the latest version, but I found my syn...
by chazcon
25 Dec 2015, 22:36
Forum: Gaming Help (v1)
Topic: 1) #IfWinActive not working 2) Mouse move funky
Replies: 8
Views: 4292

Re: 1) #IfWinActive not working 2) Mouse move funky

Solved for now. I cannot resolve issue #2 because of the games anti-cheat software, no workaround. Thanks for the hekp on issue # 1. Final code, cleaned up a bit: #NoEnv #SingleInstance Force SetWorkingDir %A_ScriptDir% #IfWinActive ahk_exe farcry3_d3d11.exe ; Constants MouseMoveDistance = 3 MouseMo...
by chazcon
25 Dec 2015, 16:41
Forum: Gaming Help (v1)
Topic: 1) #IfWinActive not working 2) Mouse move funky
Replies: 8
Views: 4292

Re: 1) #IfWinActive not working 2) Mouse move funky

Hah that first partial post triggered a command, I had to exit the script. Exactly what I'm talking about.
by chazcon
25 Dec 2015, 16:39
Forum: Gaming Help (v1)
Topic: 1) #IfWinActive not working 2) Mouse move funky
Replies: 8
Views: 4292

Re: 1) #IfWinActive not working 2) Mouse move funky

Here is my current code. The original problems are still present: 1) Changed to IfWinActive from #IfWinActive, the script does not recognize when I'm in the game or in another app, all commands work regardless of app in focus which is bad. Even if the game id not running the commands fire. Is there ...
by chazcon
25 Dec 2015, 16:32
Forum: Gaming Help (v1)
Topic: 1) #IfWinActive not working 2) Mouse move funky
Replies: 8
Views: 4292

Re: 1) #IfWinActive not working 2) Mouse move funky

Here is my current code. The original problems are still present:

1) Changed to IfWinActive from #IfWinActive, oddly SOME commands inside the brackets are still enabled when I'm not in the game window if the game is running, i.e game is running but I'm alt-tabbed to my browq
by chazcon
25 Dec 2015, 16:18
Forum: Gaming Help (v1)
Topic: Variable doesn't hold its value
Replies: 4
Views: 1959

Re: Variable doesn't hold its value

Solved, thank you for this.
by chazcon
25 Dec 2015, 12:27
Forum: Gaming Help (v1)
Topic: 1) #IfWinActive not working 2) Mouse move funky
Replies: 8
Views: 4292

Re: 1) #IfWinActive not working 2) Mouse move funky

Nex, Good info, let me try that.
by chazcon
24 Dec 2015, 22:38
Forum: Gaming Help (v1)
Topic: 1) #IfWinActive not working 2) Mouse move funky
Replies: 8
Views: 4292

Re: 1) #IfWinActive not working 2) Mouse move funky

Re: # 2) Above, I think the game randomizes mouse coords, it changes the x and y axis every 30s or so.

I just hate mouse turning, and although I need it to aim and shoot, I want to turn using the keyboard (not strafe).
by chazcon
24 Dec 2015, 22:33
Forum: Gaming Help (v1)
Topic: Variable doesn't hold its value
Replies: 4
Views: 1959

Re: Variable doesn't hold its value

#NoEnv #SingleInstance Force SendMode Input SetWorkingDir %A_ScriptDir% SetTitleMatchMode 2 #IfWinActive Cry ;0x304b4 ;Nomad ;Far Cry® 3 SetNumlockState, AlwaysOn ; sets NumLock to Always On for using Numpad keys LAlt::N ; maps LAlt to N for strafing (map Strafe Left to N in game) RAlt::M ; maps RA...
by chazcon
24 Dec 2015, 21:42
Forum: Gaming Help (v1)
Topic: Variable doesn't hold its value
Replies: 4
Views: 1959

Variable doesn't hold its value

OK why does this not work, I've assigned a value to the variable MouseMoveDistance, but it doesn't calc correctly, the variable has a value of 0 when it's needed most. I'm missng something basic I'm afraid. MouseMoveDistance := 5 ~a:: MouseGetPos xpos, ypos xpos -= MouseMoveDistance MouseMove xpos,y...
by chazcon
24 Dec 2015, 21:37
Forum: Gaming Help (v1)
Topic: 1) #IfWinActive not working 2) Mouse move funky
Replies: 8
Views: 4292

1) #IfWinActive not working 2) Mouse move funky

I have this script for Far Cry 3 and I have 2 problems. I'm running the game in Borderless Windowed mode. 1) #IfWinActive is not working, in this way - the script works in the game, but it also continues to work when in a different window, like Notepad++ or a browser. I've tried different WinTitles ...
by chazcon
09 Oct 2015, 09:47
Forum: Ask for Help (v1)
Topic: Fix for AutoHotkey Not Working in Windows 10
Replies: 6
Views: 90218

Re: Fix for AutoHotkey Not Working in Windows 10

This is incorrect. Even with UAC off you need to run AutoHotkey as an administrator.

If there's another method, let's hear it.
by chazcon
09 Oct 2015, 01:24
Forum: Ask for Help (v1)
Topic: Fix for AutoHotkey Not Working in Windows 10
Replies: 6
Views: 90218

Fix for AutoHotkey Not Working in Windows 10

UAC rules have changed with Windows 10. AutoHotkey scripts that worked fine in Windows 7 no longer work in Windows 10. 1) Find your AutoHotkey executable, typically here: C:\Program Files\AutoHotkey\AutoHotkey.exe 2) Right-click on AutoHotkey.exe 3) Select the Compatibility tab 4) Enable Run this pr...

Go to advanced search