I truely doubt this is possible from everything I've read (without some
sort of plugin), but can this simple script be made into a javascript
(instead of vbscript) that would work on Netscape 6+?
<html>
<head>
<title>Untitl ed Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<p>IE only Word export test - test - hi there</p>
<p> </p>
<script type="text/vbscript">
Set wObj = CreateObject("W ord.Application ")
Set doc = wObj.Documents. Add()
wObj.Selection. TypeText("Hi there!")
wObj.Visible = true
</script>
</body>
</html>
--
~kaeli~
Black holes were created when God divided by 0.
Comment