Hey all:
Is it possible to use a javaScript method to change the font of a particular
TextField?
something like var object = doc.field;
object.property.font = <font>?
Thanks.
John.

Signature
John [MSFT].
This posting is provided "AS IS" with no warranties, and confers no rights.
Serge Baltic - 28 Sep 2005 17:14 GMT
Hello,
JS> Is it possible to use a javaScript method to change the font of a
JS> particular TextField?
JS>
JS> something like var object = doc.field;
var o = document.getElementById("field");
JS> object.property.font = <font>?
o.style.fontFamily = "Verdana";
(H) Serge