ブラウザをフルスクリーンにするために、単純なアプリケーションを試しています。これは Internet Explorer では機能しますが、Firefox では機能しません。また、Mac OC でも同じことができるのか知りたいです。Mac OS 用に変更する必要がありますか (Safari、Firefox などを使用)
以下のコード。
<html>
<head>
<script type="text/javascript">
function fullScreen()
{
var obj = new ActiveXObject("Wscript.shell");
obj.SendKeys("{F11}");
}
</script>
</head>
<body>
<form>
<input type="button" value="Click me!" onclick="fullScreen()" />
</form>
<p>By pressing the button above, a function will be called. The function will alert a message.</p>
</body>
</html>
よろしくジーシャン