Hi Everyone,
We've a button in our display GUI. On clicking that button, it should open a window containing the location of template files. Those template files are stored in a directory say K:. How can I modify the arguments inside window.open function to provide the path of these template files in K: and users can store these files in their local machine?
Will below syntax work?
For eg:
function openTemplate(){ | ||
window.open("file://///K:/Folder_Name","Template","menubar=0"); | ||
} |
Thanks,
Rajeev