Search found 1361 matches

by Nextron
10 Sep 2023, 03:28
Forum: Forum Issues
Topic: Blocked / access denied
Replies: 8
Views: 2251

Re: Blocked / access denied

Other that the Tor thing: Cloudflare tries to protect the host depending on the security level set. It has no issues with false positives, al long as the big market share browsers pass. I use a <0.1% market share browser, which gets blocked by Cloudflare are soon as the target site enables "I'm unde...
by Nextron
02 Nov 2022, 11:30
Forum: Off-topic Discussion
Topic: IE's dead.
Replies: 37
Views: 11024

Re: IE's dead.

I'm curious how this will affect SharePoint's integration with (File) Explorer. SharePoints can be accessed as an -almost- regular network drive, but only after you regularly authenticate with its webpage using Internet Explorer, even though further access using IE is actively blocked. Authenticatin...
by Nextron
15 Apr 2022, 12:15
Forum: General Discussion
Topic: AHK tutorial on YT by Leila Gharani (1.6M subscribers)
Replies: 5
Views: 1056

Re: AHK tutorial on YT by Leila Gharani (1.6M subscribers)

I wanted to share the same thing when I noticed the video. :thumbup:

It's a good fit: she has an audience suited and likely capable of using AHK and who are interested in learning and expanding their skill set.
by Nextron
21 Jan 2022, 10:36
Forum: Looking for Volunteers in other languages
Topic: [Paused] Looking for Volunteers
Replies: 62
Views: 28517

Re: Looking for Volunteers

If Dutch is added, I'll be able to moderate it too. However Wikipedia says >90% of Dutchies consider English their second language, so we might as well use it.
by Nextron
01 Apr 2021, 02:09
Forum: Announcements
Topic: AutoHotkey v3.0-alpha.1 - Switching to JavaScript (not really)
Replies: 32
Views: 16024

Re: AutoHotkey v3.0-alpha.1 - Switching to JavaScript

That's elaborate. That woke me up quick! Here's me thinking that working from home would keep me safe from pranks. :facepalm: My interest in AutoHotkey development has dropped off repeatedly, and there have been times I've decided to officially retire from the community, Considering the best lies co...
by Nextron
16 Feb 2021, 13:27
Forum: Off-topic Discussion
Topic: Are you a 'lefty'?
Replies: 5
Views: 1880

Re: Are you a 'lefty'?

Why is that article focusing so much on positioning the taskbar take up less space? There's always the option to hide it completely. The taskbar serves a purpose, so it should get all the space it needs to be useful. I've set my taskbar to never combine buttons, not to combine buttons across screens...
by Nextron
15 Nov 2020, 04:04
Forum: Off-topic Discussion
Topic: IE's dead.
Replies: 37
Views: 11024

Re: IE's dead.

IMO the article is misinterpreting MS' blog post: M365 will no longer support IE11 next year. Edge will continue to be developed. Edge legacy will stop development. IE11 is part of W10 and will continue to be updated. So IE's com will remain available (phew), however the numbers of compatible sites ...
by Nextron
05 Oct 2020, 13:29
Forum: Ask for Help (v1)
Topic: Move mouse to center of monitor in multi-monitor configuration - CoordMode relative to specific monitor?
Replies: 9
Views: 3490

Re: Move mouse to center of monitor in multi-monitor configuration - CoordMode relative to specific monitor?

JoeWinograd wrote:
03 Oct 2020, 23:34
but it fails when the monitors are stacked vertically or when offset by large vertical distances.
How does it fail? Does the cursor not move at all or does it move to a wrong place, like the corner of a screen?
by Nextron
17 May 2020, 06:01
Forum: Ask for Help (v1)
Topic: AHK doesn't work
Replies: 5
Views: 649

Re: AHK doesn't work

Put some effort into describing what did work, and what happens now instead.
by Nextron
15 Jan 2020, 12:59
Forum: Ask for Help (v1)
Topic: if Var between LowerBound and UpperBound not working Topic is solved
Replies: 5
Views: 1037

Re: if Var between LowerBound and UpperBound not working Topic is solved

if var between is a traditional if statement. In your code you're trying to run it as an expressional if... which will not work as expected. Instead use if (Request >=2017 && Request<=A_YYYY).
by Nextron
06 Jan 2020, 14:31
Forum: Ask for Help (v1)
Topic: CoordMode Mouse, "Screen" VS "Relative"
Replies: 7
Views: 4002

Re: CoordMode Mouse, "Screen" VS "Relative"

Any function that's executed to evaluate for the down event of a conditional hotkey (such as RButton:: ) will evaluate prior to passing through the event (assuming there's no difference in process elevation). So when RButton is pressed, the window it hovers over isn't activated yet, so the position ...
by Nextron
26 Dec 2019, 18:42
Forum: Ask for Help (v1)
Topic: Problems with SetCapsLockState, AlwaysOff when using capslock as a modifier key
Replies: 6
Views: 3853

Re: Problems with SetCapsLockState, AlwaysOff when using capslock as a modifier key

Come to think about it, the linked thread would cause trouble too when using it in multiple scripts. Perhaps you can set a passthrough hotkey for capslock up in one of the scripts which sets the proper caps lock state. ~CapsLock up::SetCapsLockState,Off Capslock will still turn on for a moment and b...
by Nextron
26 Dec 2019, 08:19
Forum: Ask for Help (v1)
Topic: Problems with SetCapsLockState, AlwaysOff when using capslock as a modifier key
Replies: 6
Views: 3853

Re: Problems with SetCapsLockState, AlwaysOff when using capslock as a modifier key

SetCapsLockState uses the keyboard hook to keep CapsLock off. When running multiple instances of AHK each will load the hook, with the last one started (except if run as admin) getting a higher priority processing input. So the most recently started AHK will intercept the CapsLock input, preventing...
by Nextron
11 Oct 2019, 13:00
Forum: Ask for Help (v1)
Topic: SendInput does not trigger my hotstring
Replies: 8
Views: 2118

Re: SendInput does not trigger my hotstring

I'll dig more into that: I am now looking for a way to use the keyboard hook AND SendInput because this is what I need in my project (and with speed and reliability). I'm not sure this is even possible actually... The reliability refers to the fact that sendinput places the entire string to the buf...
by Nextron
05 Oct 2019, 15:22
Forum: Ask for Help (v1)
Topic: possible to AHK programs run other program in Child process Topic is solved
Replies: 1
Views: 877

Re: possible to AHK programs run other program in Child process Topic is solved

They're all similar processes. There's no such thing as a child mode. The hierarchy is the screenshot is you can retrieve information which process id launched a certain process. If that parent is still running, its child is displayed below it. Once the parent process ends, the child will be moved u...
by Nextron
30 Sep 2019, 12:38
Forum: Ask for Help (v1)
Topic: Bug with <Alt> send commands
Replies: 3
Views: 1059

Re: Bug with <Alt> send commands

I can't help with the problem, as I don't have AutoCAD, but a few remarks: •  Send {Sleep 50} sends the sleep key 50 times, it doesn't wait 50 milliseconds. Depending on your send mode it may take a lot mode or less time, and possible trigger other things. •  Send !J sends Alt+Shift+j, also probably...
by Nextron
25 Sep 2019, 11:25
Forum: Ask for Help (v1)
Topic: Totally stuck... Clipboard and Variable problem Topic is solved
Replies: 5
Views: 1687

Re: Totally stuck... Clipboard and Variable problem Topic is solved

You're checking if clipboard contains the literal text "Leadname". Use If (Clipboard = LeadName) (an expressional if) instead.
by Nextron
15 Sep 2019, 06:22
Forum: Ask for Help (v1)
Topic: AHK has problem distinguishing hex numbers Topic is solved
Replies: 2
Views: 1012

Re: AHK has problem distinguishing hex numbers Topic is solved

First of, your q1 and q2 are stored as strings. However, it looks like the comparison works by comparing them as numbers, which overflow an Int64, resulting in two identical numbers (replace the most significant f to 0 to prevent the overflow and your code works as expected). To force the comparison...
by Nextron
22 Aug 2019, 13:49
Forum: Ask for Help (v1)
Topic: Disabling copy paste (including right click) Topic is solved
Replies: 4
Views: 1614

Re: Disabling copy paste (including right click) Topic is solved

I think you could use dllcall to OpenClipboard and CloseClipboard when your window becomes active or loses focus respectively to prevent the clipboard from being accessed and getting data written to regardless of using Ctrl+C or the context menu. Not sure if it would hang the script until its attemp...
by Nextron
13 Aug 2019, 09:51
Forum: Ask for Help (v1)
Topic: Script Won't Run with Monitors Off Topic is solved
Replies: 2
Views: 1003

Re: Script Won't Run with Monitors Off Topic is solved

The five minute wait starts after you dismiss the message box. Could it be that you only do that when you see it with a monitor that's on?

Go to advanced search