Search found 35 matches

by SorrymyEN
18 Jan 2022, 08:09
Forum: Ask for Help (v1)
Topic: FileCopy for Hidden Files
Replies: 2
Views: 318

FileCopy for Hidden Files

I need to constantly copy several files to a folder that tends to become chaos. The best option for my case would be to create copy files with hidden attribute and keep the display of these in the system turned off. However, FileCopy doesn't seem to work for copying hidden files and the only solutio...
by SorrymyEN
17 Jan 2022, 09:17
Forum: Ask for Help (v1)
Topic: FileCopy Parameter "0" Topic is solved
Replies: 3
Views: 403

Re: FileCopy Parameter "0" Topic is solved

Does that mean the parameter "0" is like it doesn't even need to exist? Wouldn't it be more practical to duplicate files with system numbering? Or would there be other implications here?
by SorrymyEN
17 Jan 2022, 08:57
Forum: Ask for Help (v1)
Topic: FileCopy Parameter "0" Topic is solved
Replies: 3
Views: 403

FileCopy Parameter "0" Topic is solved

Hi, I'm trying to use FileCopy to backup a file whenever I press a key. According to the AHK documentation, the parameter "1" guides to overwrite the original file and "0" not to overwrite it. It happens that, in the case of "0", the expected action without overwriting the file would be to create a ...
by SorrymyEN
16 Jan 2022, 06:55
Forum: Ask for Help (v1)
Topic: Native Appskey Function Persists During Remapping Topic is solved
Replies: 4
Views: 374

Re: Native Appskey Function Persists During Remapping Topic is solved

Well, I found another solution: swapping RWin and Appskey directly in the Windows registry with another program and then matching it with AHK. As this exchange facilitated some other activities, I may leave it as the default in the future. For now, your code has worked fine, so I'll stick with it to...
by SorrymyEN
15 Jan 2022, 13:59
Forum: Ask for Help (v1)
Topic: Native Appskey Function Persists During Remapping Topic is solved
Replies: 4
Views: 374

Re: Native Appskey Function Persists During Remapping Topic is solved

Thanks, but forgot to say that I already tried that. It seemed to work at first, but if I take a few milliseconds pressing Appskey after releasing RCtrl, the context menu pops up. This is the behavior to disable for usability to flow better.
by SorrymyEN
14 Jan 2022, 11:13
Forum: Ask for Help (v1)
Topic: Native Appskey Function Persists During Remapping Topic is solved
Replies: 4
Views: 374

Native Appskey Function Persists During Remapping Topic is solved

Hi guys, I'm trying to send alt+tab by pressing RCtrl+Appskey, but the native Appskey function still persists during sending. I've tried keywait, modifier symbols, and tried some functions without success. Is there a way to disable the context menu for this combination? Many thanks!
by SorrymyEN
02 Feb 2021, 14:06
Forum: Ask for Help (v1)
Topic: Disable Keymaps in Text Inputs
Replies: 9
Views: 548

Re: Disable Keymaps in Text Inputs

A partial solution: assign a key to click on the address bar and stay there with the mouse pointer (which is not the cursor, ok ahk?) activating the text field for typing #IfWinActive ahk_class MozillaWindowClass Insert:: CoordMode, Mouse, Screen Mousemove, 1300, 46, 1 MouseClick, left Return #IfWin...
by SorrymyEN
02 Feb 2021, 12:54
Forum: Ask for Help (v1)
Topic: Disable Keymaps in Text Inputs
Replies: 9
Views: 548

Re: Disable Keymaps in Text Inputs

The aforementioned flaws happen when trying to write without mouse click. Clicking with the mouse first, remapping works perfectly. It would be interesting if there was an "A_Click", and "A_Cursor" could be directed really and only to the cursor.
by SorrymyEN
02 Feb 2021, 12:47
Forum: Ask for Help (v1)
Topic: Disable Keymaps in Text Inputs
Replies: 9
Views: 548

Re: Disable Keymaps in Text Inputs

I was trying on an ahk.exe and it didn't work. When I tried the same in an .ahk file it worked. But there are still glitches when selecting the address bar to writing some text.
by SorrymyEN
02 Feb 2021, 12:23
Forum: Ask for Help (v1)
Topic: Disable Keymaps in Text Inputs
Replies: 9
Views: 548

Re: Disable Keymaps in Text Inputs

Thanks for the quick help. This switches between tabs, but it is still not possible to use the arrow keys in text fields, even trying: #If WinActive("ahk_exe firefox.exe") && Instr(A_Cursor, "Arrow") Left::Send ^{PgDn} Right::Send ^{PgUp} #If or #If WinActive("ahk_exe firefox.exe") && Instr(A_Cursor...
by SorrymyEN
02 Feb 2021, 11:44
Forum: Ask for Help (v1)
Topic: Disable Keymaps in Text Inputs
Replies: 9
Views: 548

Disable Keymaps in Text Inputs

I read some time ago that AHK cannot interact with text fields. I don't know if I got it right, and probably not. But the fact is that now I need to assign the arrow keys (Left and Right) to the PreviousTab and NextTab commands in Firefox and, obviously, this means a problem when writing in the addr...
by SorrymyEN
05 Jan 2020, 13:05
Forum: Ask for Help (v1)
Topic: How to modify color temperature of screen
Replies: 15
Views: 5687

Re: How to modify color temperature of screen

The options here have been of great use, but specifically those with AHK I feel lack visual information on screen display, as bars and/or numbers for control. And it would be wonderful to be able to change the RGB colors separately via keyboard as well.
by SorrymyEN
26 Jul 2019, 11:48
Forum: Ask for Help (v1)
Topic: Kill (or Lock) Any Windows Before It Opens
Replies: 0
Views: 471

Kill (or Lock) Any Windows Before It Opens

Is there any technique to prevent nag screens from opening even before they appear? I have a considerable batch of programs for future purchase and would like to optimize the trial evaluation time. I know this could be somewhat unfair to developers, but AHK is already able to close most nag screens,...
by SorrymyEN
07 Jul 2019, 08:09
Forum: Scripts and Functions (v1)
Topic: Disable all keyboard buttons
Replies: 27
Views: 24194

Re: Disable all keyboard buttons

Oh yes, more emphatic that this is impossible :clap:

ps.: just do not forget to assign screen lock to !F7 so as not to conflict with previously used keys.
by SorrymyEN
06 Jul 2019, 08:26
Forum: Scripts and Functions (v1)
Topic: Disable all keyboard buttons
Replies: 27
Views: 24194

Re: Disable all keyboard buttons

Hi, SpeedMaster Your code has been very useful to me and I am trying to make the screen message more emphatic as an OSD text because it was barely visible in certain contexts. Everything worked fine except that the blocked keyboard prompt only appears once, not every click. Could you check what I'm ...
by SorrymyEN
20 Jan 2019, 11:22
Forum: Ask for Help (v1)
Topic: GUI to Replace Windows Status Bar
Replies: 4
Views: 1118

Re: GUI to Replace Windows Status Bar

Only Report, Quote and Accept buttons were showing up for me. After I left and came back, the Edit button appeared and I corrected the image, whose data in th left bottom were incorrect. But I still can not see this "X" button to delete the surplus post. If possible, I ask the adms to delete my seco...
by SorrymyEN
20 Jan 2019, 10:00
Forum: Ask for Help (v1)
Topic: GUI to Replace Windows Status Bar
Replies: 4
Views: 1118

GUI to Replace Windows Status Bar

Hello, I'm trying to get as much vertical space as possible for displaying folders and files in Windows Explorer. Over the years, Microsoft has stacked a number of things around the display area so today you spend more time with clicks and scrollings for displaying items than with effective actions,...
by SorrymyEN
18 Jan 2019, 22:04
Forum: Other Utilities & Resources
Topic: How to disable native Windows functions (keys)?
Replies: 1
Views: 2301

Re: How to disable native Windows functions (keys)?

Tested in Windows10 64-bit... for 1) PrintScreen::Return 2) !Numpad1::return !Numpad2::return !Numpad3::return !Numpad4::return !Numpad5::return !Numpad6::return !Numpad7::return !Numpad8::return !Numpad9::return --------------------------------------- If you figure out how to do this via Regedit ag...
by SorrymyEN
16 Jan 2019, 01:15
Forum: Ask for Help (v1)
Topic: Maximize window on program open Topic is solved
Replies: 8
Views: 15251

Re: Maximize window on program open Topic is solved

Now, yes, it's what Microsoft should have done decades ago and that probably it will do to justify some chaotic update.
by SorrymyEN
15 Jan 2019, 12:10
Forum: Ask for Help (v1)
Topic: Maximize window on program open Topic is solved
Replies: 8
Views: 15251

Re: Maximize window on program open Topic is solved

Really, a wonderful job, it works and is very helpful.

But it does have a side effect: if you need to restore the window to a specific size to work with, for example, side by side, they will always maximize it again. At least for me :(

Go to advanced search