Hi Baris.
Baris YILMAZ:
> I try to create the following text data with the package org.w3c.dom. But I
> couldn't succeed.
> I couldn't add the "?" to the content.
You’re on the right track…
> <text x="55" y="26" style="font-size:16pt;font-family:'Arial';stroke:black">
> ?
> </text>
>
> I tried;
> Element text=document.createElementNS(null,"text");
> text.setAttributeNS(null,"x","55");
> text.setAttributeNS(null,"y","26");
> text.setAttributeNS(null,"style","font-size:16pt;font-family:'Arial';stroke:black");
text.appendChild(document.createTextNode("?"));
--
Cameron McCormack, http://mcc.id.au/
xmpp:[EMAIL PROTECTED] ▪ ICQ 26955922 ▪ MSN [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]