I need to know if I can make a html file open a lua file, like open it with the default program the computer is set to open those files with. (Alternatively could I say "Open this file with this .exe" and I can just have the exe be the program I have set to open lua files with.) This is what I have, it opens it like a text file though.
<html>
<head>
<title>
MaGa
</title>
</head>
<body>
<a href=".\MaGa.html" target="_self">Go to MaGa</a>
<a href=".\MaGa.lua" target="_self">Open MaGa</a>
</body>
</html>