@Anonymous wrote:
I agree with you on not using spaces in folder names. Unfortunately I don't have control over that in this office. So I had to learn how spaces can work:
Format the command string as a simple macro, drop the parenthesis and word command, and use the semi colon as enter at the end. replace all backslach (\) with foreslash (/). This will open folders or file depending what is last
^C^C_start "explorer" "M:/nnnnn - RUNWAY 9-27 - REHAB - AF Previous Project Plans";
^C^C_start "explorer" "M:/nnnnn - RUNWAY 9-27 - REHAB - AF Previous Project Plans/8479 - Runway Lighiting.pdf";
Nor am I in charge of spell checking the servers 
Hi cwr,
This is a better approach. Thanks for sharing this code to us. I like this new solution well done.
You can open a pdf via Tool Palette
(command "start" "C:/docs/TEST.pdf")
You can open a docx via Tool Palette
(command "start" "C:/docs/TEST.docx")
Better Approach (This will work even if you have space in folder or in file name) Just make sure you got ; at the end after last "
^C^C_start "explorer" "C:/docs/folder space bar/test help file.pdf";
^C^C_start "explorer" "C:/docs/folder space bar/test help file.docx";
Cheers,
Jowenn