V
VK
Is there by any chance someone using IE 5.x under Mac OS 8.x - X ?
You would like to know if FileSystemObject ActiveX control is supported
under Mac OS.
MSDN is rather ambiguous on this matter, and I'm totally out of reach
of Macs right now.
A simple harmless (as you can see) test below would give an OK or an
error.
Equally well would be to point me instead to some MSDN page where it
would be said clearly that FileSystemObject is Windows only.
Thank you for your help (or for reading at least).
<html>
<head>
<title>MacText</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<script type="text/javascript">
function test() {
try {
var fso = new ActiveXObject('Scripting.FileSystemObject');
alert('FileSystemObject created OK');
}
catch(e) {
alert(e.description);
}
}
</script>
</head>
<body onload="test()">
<p>Test</p>
</body>
</html>
You would like to know if FileSystemObject ActiveX control is supported
under Mac OS.
MSDN is rather ambiguous on this matter, and I'm totally out of reach
of Macs right now.
A simple harmless (as you can see) test below would give an OK or an
error.
Equally well would be to point me instead to some MSDN page where it
would be said clearly that FileSystemObject is Windows only.
Thank you for your help (or for reading at least).
<html>
<head>
<title>MacText</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<script type="text/javascript">
function test() {
try {
var fso = new ActiveXObject('Scripting.FileSystemObject');
alert('FileSystemObject created OK');
}
catch(e) {
alert(e.description);
}
}
</script>
</head>
<body onload="test()">
<p>Test</p>
</body>
</html>