Search found 1361 matches

by Nextron
01 Jul 2019, 13:16
Forum: Ask for Help (v1)
Topic: If app is fullscreen condition Topic is solved
Replies: 13
Views: 5619

Re: If app is fullscreen condition Topic is solved

If you only check for the window size you'll also include maximized windows, which are not full screen. So then you'll need to determine what you consider fullscreen as it's not a single property that determines that. This seems like a good starting point , although I use it with an additional check...
by Nextron
25 Jun 2019, 07:07
Forum: Ask for Help (v1)
Topic: Automate QlikView Webview
Replies: 0
Views: 633

Automate QlikView Webview

I'm trying to automatically get QlikView data into Excel. I've come across an old third party Excel plugin which could connect and import a QlikView website, but that has seems to have been snuffed by QlikView. So my next attempt would be to automatically export an Excel file through the webview. I'...
by Nextron
22 Jun 2019, 19:16
Forum: Ask for Help (v1)
Topic: Move mouse across multiple monitors with different resolutions Topic is solved
Replies: 4
Views: 6474

Re: Move mouse across multiple monitors with different resolutions Topic is solved

I have the same issue with monitors in landscape vs portrait orientation. I think I posted the code I use here: https://www.autohotkey.com/boards/viewtopic.php?f=5&t=40456
by Nextron
04 May 2019, 03:22
Forum: Ask for Help (v1)
Topic: Actively watch folder to move certain filetypes to a other folder
Replies: 5
Views: 1358

Re: Actively watch folder to move certain filetypes to a other folder

You could run something like that as a batch job once every %period%. If timing is important you could search the forum for WatchFolder() or WatchDirectory().
by Nextron
04 May 2019, 03:17
Forum: Ask for Help (v1)
Topic: MouseHook causes severe input issues for hotkeys which do not use it
Replies: 10
Views: 2088

Re: MouseHook causes severe input issues for hotkeys which do not use it

What kind of issue? During SendInput the hook would be temporarily disabled, opposed to during SendEvent. Also, when running multiple scripts using hooks, SendInput would revert to SendEvent using lower wait times. Perhaps that explains the 'issue'?
by Nextron
03 May 2019, 13:05
Forum: Ask for Help (v1)
Topic: Baffled by conditional behavior Topic is solved
Replies: 3
Views: 904

Re: Baffled by conditional behavior Topic is solved

Use if (times > 0). Within if-brackets variables are already evaluated as expression.
by Nextron
03 May 2019, 12:10
Forum: Ask for Help (v1)
Topic: MouseHook causes severe input issues for hotkeys which do not use it
Replies: 10
Views: 2088

Re: MouseHook causes severe input issues for hotkeys which do not use it

#If's already makes the associated hotkeys hooked variants.
by Nextron
03 May 2019, 11:59
Forum: Ask for Help (v1)
Topic: Block mouse input when monitor goes into idle / sleep
Replies: 6
Views: 1339

Re: Block mouse input when monitor goes into idle / sleep

When using devcon.exe there's no middle ground. It's either enabled or disabled... unless your mouse happens to report as multiple devices for additional buttons so then you can disable just one. I wonder whether AutoHotInterception could help, as it operates at driver level, to just block movement ...
by Nextron
03 May 2019, 11:52
Forum: Ask for Help (v1)
Topic: MouseHook causes severe input issues for hotkeys which do not use it
Replies: 10
Views: 2088

Re: MouseHook causes severe input issues for hotkeys which do not use it

So it also happens on uncompiled scripts as well? Does it make a difference if you use #IfWinActive instead?

Mod edit: Moved to 'Ask for help' until confirmed as bug.
by Nextron
03 May 2019, 10:12
Forum: Ask for Help (v1)
Topic: Use modifier key to toggle between launching script vs editing script
Replies: 6
Views: 1279

Re: Use modifier key to toggle between launching script vs editing script

You could change the file association for .ahk files to your own compiled script which only purpose is to capture the command line parameters and pass is on to the actual autohotkey.exe unless your modifier is held down, in which case it either redirects is to your editor or prepends the command lin...
by Nextron
01 May 2019, 15:59
Forum: About This Community
Topic: [Website] Hardenize & Translate placement
Replies: 8
Views: 6244

Re: [Website] Hardenize & Translate placement

To me it looks good now. With the translate element under the 'Is it safe?" link. :thumbup:
by Nextron
01 May 2019, 14:42
Forum: About This Community
Topic: [Website] Hardenize & Translate placement
Replies: 8
Views: 6244

Re: [Website] Hardenize & Translate placement

I just tried in Pale Moon (two different PC's, different versions), Internet Explorer and Chrome. All showing the same layout as in the image. For the last two there are no extensions installed.
by Nextron
01 May 2019, 11:06
Forum: About This Community
Topic: [Website] Hardenize & Translate placement
Replies: 8
Views: 6244

[Website] Hardenize & Translate placement

On the homepage, I noticed two object in the header (after you disable ad blocking stuff). A hardenize security logo and a Google translate widget. These are anchored in the header that remains fixed at the top of the website when you scroll down. However, these two elements cause the header to stre...
by Nextron
22 Apr 2019, 12:30
Forum: Announcements
Topic: Test build - InputHook, long paths, switch-case
Replies: 30
Views: 24764

Re: Test build - InputHook, long paths, switch-case

I'm eager to start using InputHook . When using manual hooks, different keyboard layouts and getting shift-characters are a pain. This also makes it more feasible to set up multiple identical hotkeys that all trigger instead of just the first matching conditional. Has including mouse events crossed ...
by Nextron
25 Mar 2019, 13:37
Forum: Forum Issues
Topic: Later pages of "Off-topic" report insecure connection Topic is solved
Replies: 11
Views: 3294

Re: Later pages of "Off-topic" report insecure connection Topic is solved

Isn't that due to Joe Glines' non-https image signature? I'm not a fan of signatures; neither text of image. But on a forum you can expect these things. One forum I know of caches all user-linked images to prevent this mixed content and things such as tracking and dead links but that turns the forum...
by Nextron
24 Mar 2019, 18:21
Forum: Forum Issues
Topic: Updating posted code
Replies: 5
Views: 2221

Re: Updating posted code

Recently there've been a lot of new user accounts that post legit messages to get through approval and then edit it to include spam. Also some users delete their message after they've gotten their answer. To combat that, accounts with only a few posts aren't allowed to edit their posts. Until you ha...
by Nextron
19 Feb 2019, 16:52
Forum: Ask for Help (v1)
Topic: Lagging Script
Replies: 4
Views: 3621

Re: Lagging Script

If the game (incidentally) bottlenecks at your PC's resources, AHK will runn slower too. Try adding Process,Priority,,A to the script to bump it's priority, and see if that makes any difference.
by Nextron
18 Feb 2019, 12:46
Forum: Ask for Help (v1)
Topic: Script Performance
Replies: 11
Views: 4016

Re: Script Performance

I would expect debugging would be easy if you can immediately determine whether the script performs poorly or not? What happens when you disable all timers? Do stand alone scripts with a single test hotkey performs bad as well?
by Nextron
18 Feb 2019, 12:40
Forum: Ask for Help (v1)
Topic: Hotkeystrings don't work 20% of the time
Replies: 12
Views: 2472

Re: Hotkeystrings don't work 20% of the time

Next time the hotkeys doesn't trigger, open AHK's main window and see the last lines executed and key history, to see whether it actually triggered the hotkey or whether it's just not doing what you expect. With the Excel hotkey for example, a previous instance of the hotkey may still be halted at t...
by Nextron
04 Feb 2019, 17:24
Forum: Forum Issues
Topic: Requesting an Admin to handle a spam post
Replies: 19
Views: 5044

Re: Requesting an Admin to handle a spam post

My guess is that Spam Officers are more restricted in their rights than moderators (but you tell me). If not, I don't know why it was introduced as an own group... Correct. Isn‘t there an Option to disable those spam notification Mails on user side? Look here: https://www.autohotkey.com/boards/ucp....

Go to advanced search