Ok afterburner, made some more thoughts on your requests
#1
Renaming the files within the listview would definitely be a problem at the moment. I need the textfiles with my predefined format because I extract a machine-readable date-time stamp which is put inside a hidden second column within the listview. I need this for sorting, because the listview control doesn't support sorting by dates without this workaround.
But what do you think about combining request #1 and #2 and creating an "Export" entry within the context menu. (I also think about adding your proposed edit menu witin the menu bar). Don't worry, I will explain how I mean this:
Let's assume you're looking at the CopyPassage GUI. You highlight one of the textfiles within the listview and right-click for the context menu. Here you would choose the new entry "Export..." This opens up a new, small GUI that lets you enter a sensemaking name.
After entering this new name, CopyPassage creates a new folder with this name, moves the highlighted textfile to this new folder, renames the textfile to the same name as the foldername (foldername.txt) and deletes the source textfile from the notes folder. After this, the ListView control will be rebuild and the entry has disappeared.
The new folder could be created within the notes subfolder just as you suggested. Another option might be to add an edit control to the preferences screen that lets the user specify an export directory where copy passage would create this new folder. This directory could be saved permanently to the CopyPassage .ini file.
So what do you think about it?
#3
Concerning "NewFolder" hotkey. I tried to make this little script:
Code:
#w::
Send, {Alt}{Down}{Enter 2}
Return
Could you please try if this creates a new folder. The shortcut is Win+W
btw. have you tried to uncheck
"Reuse windows for launching shortcuts" within IE?
Does the run command e.g.
Code:
Run, http://www.autohotkey.com
still open within an existing instance of IE or does it open a new window.
And one last thing. I think you won't need the whole path to the iexplore.exe within your little scripts because Windows already saved the path somewhere within its path variables.
Would you try to check if that works?
Code:
;Dictionary.com Lookup
!D::
clipboard =
Send, ^c
ClipWait, 2
word = %clipboard%
run, iexplore.exe http://dictionary.reference.com/search?q=%word%
return
_________________
Cheers
AGU
