it is possible use this command ?
Falconi Silvio
it is possible use this command ?
Silvio,
CreateJSObject() creates a JavaScript object (or a JScript one, not sure about it).
What do you want it for ?
Windows scripting may be a starting point:
<%@language=vbscript%>
<!--#include file="fpdf.asp"-->
<%
Set pdf=CreateJsObject("FPDF")
pdf.CreatePDF()
pdf.SetPath("fpdf/")
pdf.SetFont "Arial","",16
pdf.Open()
pdf.AddPage()
pdf.Cell 40,10,"Hello Word!"
pdf.Close()
pdf.Output()
%>Hi Silvio,
how can you use php with fwh ?
No I ask to Antonio if possible use javascript with fwh
and the fpdf is a java lib
Silvio,
Yesterday I used "Shell.Explorer" to load a HTML page with javascript into it and worked fine (calling a javascript function, using alert(), etc).
But some functions are not available for "Shell.Explorer". In fact, CreateJSObject() was the one that I tried to use and failed.
Thats why I think Microsoft scripting is the way to go. But the only way is to google for info and read and read ![]()