I know how to program a button to get a URL loaded:
on (release) {
getURL(“url.htm”, “_blank”);
}
But how would I tell the button to do the same thing for a file located on the hard drive? I want the file to load in the web browser, but I am making a presentation CD and I want it to grab a file off the CD as opposed the internet in case the person viewing the CD does not have internet access.
keeping the file path structure similar on the server this should work on the CD as well as the server, correct?
any help appreciated…Thanks!