Is there any way of making Directory Opus open a "GoTo" dialog with a field in which you can paste or type a known path, so that, on pressing a button or key, the current lister goes to that location? I often have paths in the clipboard and want a quick way to visit the location. I think Powerdesk, which I no longer use, had this feature. I haven't found it on DOpus.
Thank you and I am sorry I didn't come back to this thread being busy elsewhere. I didn't have any luck with the suggestions but worked out an easy fix when I have a path in my clipboard (a common occurrence) and want to go to the folder.
In an autohotkey script I put the following lines :-
^+G:: ; my hotkey is Control+Shift+G
InputBox, PathToGoTo, Enter Path, , , 1200, 150 ,100, 600,
run %PathToGoTo%
return
Since DOpus is my default explorer it goes straight the path I paste into the field.
Other users may find this useful, and you could use other scripting languages of course.
Don't know why you would have had any problems with Leo's suggestion. Glad you found a way that works for you - but as a "for instance"... the Go "{clip}" method Leo suggested will take you to whatever path is in your clipboard, and it'll do it without even bothering to popup an input box/dialog.
Thanks Steje. Once again I have only just come back on to the forum. Just as feedback -
I don't know why Leo's suggestion doesn't work either. For me the DOpus does not go to the location of the path or do anything else when I press Ctrl+Shift+G together, when I know I have a valid path in the clipboard, and when the following shortcut exists:
Dialog: Command Editor - Directory Opus
Name: Go to path
Hotkey: Ctrl + Shift + G
Function: Go "{clip}"