K-Meleon
KMeleonWiki > Resources > MacroLibrary > MacroLibrary2 > Open Directory
Submitted by: Yan Weng - yweng»cs - http://www.cs.uoregon.edu/~yweng
Notes:
When you finish downloading some files, you may want to open a specific folder to read it (pdf, ps, source code, latex) or execute it (software). This script tries to save your time for this scenario.
exec_explorer {
menu=Explorer
exec("explorer /e, D:\\download")
}
&Tools {
macros(exec_flashget)
macros(exec_flashfxp)
macros(exec_wincvs)
-
macros(open_UltraEdit)
macros(exec_leo)
macros(exec_explorer)
macros(exec_Python)
macros(exec_cmd)
}
Comment from Larry Quaglia:
This macro didn't work for me under Windows XP Pro. I found that I could execute just about any application in this macro but not explorer. What did work for me was the following variation:
exec_explorer {
menu=Explorer
exec("D:\\download")
}