To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=42985
------- Additional comments from [EMAIL PROTECTED] Thu Feb 17 07:06:22 -0800
2005 -------
To pl: found solution. We can use "Document Level" javascripts to check for
fonts availability on users system and use font substitutions for each form
field.
Since I'm not a programmer -- all coding I left for you :)
Algorythm: "Check for available fonts on current system"> Declare variable for
available font> use available Unicode font for form fields.
Document level javascripts:
this.getField("FieldName").textFont = "On users system found Unicode Font name";
this.getField("FieldName").textSize = 10;
And some enhancements for field browsing:
Document level javascripts:
function OnFieldFocus()
{
var txtField = event.target;
txtField.borderStyle = border.i;
txtField.linewidth = 2;
}
function OnFieldBlur()
{
var txtField = event.target;
txtField.borderStyle = border.s;
txtField.linewidth = 0;
txtField.strokeColor = color.transparent;
}
Form fields javascripts:
On Focus > OnFieldFocus()
On Blur > OnFieldBlur()
Everything works since Acrobat 5.0, font embedding not required
That's all
:)
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]