 zissakos
Participant
|
Hi there,
I would like to set an extension as the default extension when saving (e.g. “*.txt”).
Currently, I always have to type in the complete filename (e.g. “blabla.txt”) when saving.
Is that possible??
|
 NickDMax
Member
|
Sorry no. Although choosing a default based upon the current scheme would be possible it is not currently implemented. You might add a feature request.
|
 Annihilannic
Participant
|
A little AutoHotKey script could do that nicely in the mean time.
ETA: This one seems to do the trick:
Loop {
WinWaitActive, Save As,
WinGet, processname, ProcessName
If processname = pn.exe
Send, .txt{HOME}
WinWaitNotActive, Save As,
}
|