OK, I have topmost.exe in my fscommand folder.

I can't get it to open any webpages though. All of the examples of topmost usage that I've found are for opening PDFs or other things.

I currently open my webpages with buttons something like this:

on (release) {
getURL("http://www.tacticalpowerplant.com", "_blank");
}
Would I need to write something like this?:




on (release) {
fscommand("EXEC", "topmost.exe" + chr(9) + "http://www.tacticalpowerplant.com");
getURL("http://www.tacticalpowerplant.com", "_blank");
}
I know that is way wrong...