Page 1 of 1

Listing of all Windows scrips

Posted: 26 Mar 2017, 13:31
by camtz1
Hi, I'm new here and also new to AHK. Wondering if somewhere on this forum there is a listing of scrips that others have created for Windows 10? In particular, I'm looking for a scrip that would go up one folder when in Explorer. In other words, suppose you open My Documents, then a folder within My Documents and now you want to go back to My Documents. There is an up arrow in Explorer to do this but I would like to do it with a scrip. It would also be interesting to see the various scrips that others have created using AHK with Windows. Many thanks in advance.

Re: Listing of all Windows scrips

Posted: 26 Mar 2017, 15:24
by guest3456
there's probably too many scripts to list

and did you know that if you hover over that up arrow, it tells you the built in Windows shortcut which is Alt + UP ? does that not work for you? are you you'd like to use a different hotkey for that action?

Re: Listing of all Windows scrips

Posted: 30 Mar 2017, 13:15
by camtz1
I did not know that. Thanks a lot for that. Are you saying there is not a listing of all the scrips on this site?

Re: Listing of all Windows scrips

Posted: 30 Mar 2017, 13:57
by camtz1
Additional comment. How would you write a scrip that substitute the Alt Up arrow keys for Control L keys? Thanks

Re: Listing of all Windows scrips

Posted: 30 Mar 2017, 15:17
by swagfag

Code: Select all

^l::
{
	Send, !{Up}
return
}