Search found 17 matches

by Lee James
22 Sep 2021, 05:00
Forum: Ask for Help (v1)
Topic: AutoHotkey no longer running at startup
Replies: 3
Views: 228

Re: AutoHotkey no longer running at startup

Thank you both! The problem with it not working in some programs was indeed the Administrator privileges issue.

And I had totally forgotten that AutoHotkey doesn't run at startup. Years ago I created a Scheduled Task to run it at startup!

Problem solved! THANK YOU! :-)
by Lee James
21 Sep 2021, 02:27
Forum: Ask for Help (v1)
Topic: AutoHotkey no longer running at startup
Replies: 3
Views: 228

AutoHotkey no longer running at startup

Please can anyone help? I've happily used AutoHotkey for years, but ever since I ran a system cleanup utility, AutoHokey no longer runs at startup, even after I've uninstalled and reinstalled it. I can manually launch MyHotkeys.ahk, but even when I do that, it no longer works in all programs, only s...
by Lee James
28 Jan 2021, 12:36
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Re: Script to create and open a new text file? Topic is solved

I am extremely grateful to you both for your help and would not want to waste your time. However, I'm afraid this is all too confusing for my simple brain! I just use AHK for very basic key assignments. I'm not a programmer, can't dig into code, combine scripts, and have have no idea what stuff like...
by Lee James
13 Jan 2021, 11:50
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Re: Script to create and open a new text file? Topic is solved

mikeyww wrote:
09 Jan 2021, 13:05
Your Run command opens the file, so you can delete it and the "If" statement preceding it.
Thank you! Is there any way to have the script select the file? (So that I can either hit Enter to open, or hit F2 to rename.)
by Lee James
09 Jan 2021, 10:42
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Re: Script to create and open a new text file? Topic is solved

Might anyone be kind enough to edit down this script so that it doesn't open the text file, only creates it? #IfWinActive, ahk_class CabinetWClass q:: ;explorer - create new text file and open it with Notepad2 #IfWinActive, ahk_class ExploreWClass q:: ;explorer - create new text file and open it wit...
by Lee James
30 Nov 2020, 18:30
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Re: Script to create and open a new text file? Topic is solved

Thank you. Unfortunately, this is a little glitchy in several respects, so I think your original script is the best one.
by Lee James
29 Nov 2020, 19:20
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Re: Script to create and open a new text file? Topic is solved

I am extremely grateful for your help. Would it be possible to just give just the code for creating the text file, and making sure it's selected (so I can hit enter to open it)?
by Lee James
29 Nov 2020, 16:45
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Re: Script to create and open a new text file? Topic is solved

I'm really sorry, I don't know how to remove that part. I don't know where it starts and ends! (Sorry.)
by Lee James
29 Nov 2020, 13:39
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Re: Script to create and open a new text file? Topic is solved

Thank you, Mikie for the quick reply. That's great, and very handy, and I'm going to keep this useful script. But is it possible to change it so there are no dialog boxes, and it just does a standard Windows rename (F2)? I just want things as minimal as possible, and that way, if I don't want to ope...
by Lee James
29 Nov 2020, 12:32
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Re: Script to create and open a new text file? Topic is solved

The solution given above worked perfectly (thank you again). But now I would like a modified version of it, if anyone could help? Instead of the text file being opened, I'd just like it to be created and then renamed, so I can run the script then start typing what I want the document to be called. C...
by Lee James
09 May 2019, 06:59
Forum: Ask for Help (v1)
Topic: Create new folder in Explorer? Topic is solved
Replies: 6
Views: 1027

Re: Create new folder in Exploerer? Topic is solved

elModo7 wrote:
08 May 2019, 05:39
Change that to this:
I've just noticed something strange… Now that I've added your code to my script, none of my other keys work!

For example, this shortcut no longer works at all:

Code: Select all

#2::
   Send, ½
Return
by Lee James
09 May 2019, 06:44
Forum: Ask for Help (v1)
Topic: Create new folder in Explorer? Topic is solved
Replies: 6
Views: 1027

Re: Create new folder in Exploerer? Topic is solved

elModo7 wrote:
08 May 2019, 05:39
Change that to this:
FANTASTIC! :) Thank you elModo7! :)
by Lee James
08 May 2019, 05:31
Forum: Ask for Help (v1)
Topic: Create new folder in Explorer? Topic is solved
Replies: 6
Views: 1027

Create new folder in Explorer? Topic is solved

I've been struggling with this for a while… In Explorer, I want to be able to delete files by pressing Ctrl+D, and create a new folder by pressing Ctrl+G. The Script I made works fine for delete, but not for making a new folder: ; *** Delete *** #IfWinActive, Explorer ^d:: Send, {delete} Return ; **...
by Lee James
08 May 2019, 05:27
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Re: Script to create and open a new text file? Topic is solved

jeeswg wrote:
07 May 2019, 23:22
- Btw one thing I like to do is create a file in a folder, and then select it
I don't think I would have any need for that, but thanks anyway :)
by Lee James
07 May 2019, 10:10
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Re: Script to create and open a new text file? Topic is solved

Jeeswg,

IT WORKED! :) :) :) Thank you so much!

I never thought the Script would need to be so big, I was thinking it would just be a simple line of code. So I really appreciate the trouble you've taken to write this! :)
by Lee James
06 May 2019, 15:47
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Re: Script to create and open a new text file? Topic is solved

jeeswg, thanks so much, that first script is fantastic! :)

The only slight problem is I want it to create the text file in the current Explorer window I'm in, rather than a fixed location. Is this possible?
by Lee James
05 May 2019, 18:32
Forum: Ask for Help (v1)
Topic: Script to create and open a new text file? Topic is solved
Replies: 34
Views: 8911

Script to create and open a new text file? Topic is solved

I'd like to be able to hit a key in Windows Explorer and have it create a new Notepad2 text file (C:\Program Files\Notepad2\Notepad2.exe) then open that file so I can start typing.

Can anyone help?

Go to advanced search