newfolder -_- create a new folder with ctrl + n

[download newfolder.ahk]

the code requiers an active explorer window

you must use the following code @ the end of the APP files or in a different script file.
the APP is able to write stuff underneath this code, but you can't use the new written shortcuts

#IfWinActive, ahk_class CabinetWClass

^n:: ; or ~ctrl & n::
send !f
loop ;wait until on new menu item
{
StatusBarGetText, status
IfInString, status, new
{
break
}
send {down}
}
send {right}{enter}
return

Leave a Reply