1

Can HTML Applications (.hta) run in Firefox, Chrome and Safari (Windows OS Version)?

I understand that HTML Applications(.hta) require Windows (because of the requirement for the engine mshta.exe) and are not Cross-Platform. But are HTML Applications Cross-Browser?

If they are not natively Cross-Browser are there maybe 3rd party libraries that allow you to run HTML Applications on other browsers other than IE? For example maybe there are browser plugins that enable this?

Charles
  • 50,943
  • 13
  • 104
  • 142
sazr
  • 24,984
  • 66
  • 194
  • 362
  • 1
    See previous question here: http://stackoverflow.com/a/10623962/754456 - doesn't sound like they'll run except in IE. See also: http://stackoverflow.com/a/992751/754456 that explains about permissions (.htas normally have system access, a no-go from IE). – mfitzp Apr 15 '13 at 00:01

1 Answers1

2

HTAs are not cross-browser, as mshta.exe always instantiates the IE rendering engine.

You may be able to open HTAs in some browsers by renaming their extensions, but they may have reduced functionality due to unsupported HTA tags or the lack of things like VBScript, OS permissions, etc., if the HTA is using it.

Related question: HTA's; use other browser to host?

Community
  • 1
  • 1
phoebus
  • 14,673
  • 2
  • 33
  • 35