|
Q |
On Mar 19, 11756981, Developer 15900 asked: The AFM files will not be immediately possible. However I have a small program that will take a snapshot of each textual character in a TrueType font, provided you specify a size and bold/italics, and it generates a files, very small in size, around 5K... This method can be used to provide more fonts than available as standard Java.
Is the extra 5K acceptable? |
A |
An extra 5k per font would be fine. If applet size becomes an issue we can also limit ourselves to a single case (say, upper case) and a single font (size, style, face). I'd have to talk to the web site designers to find a font they were comfortable with.
|
Q |
On Mar 22, 11756981, Developer 15264 asked: Dos the applet need to worry about the CGI ? |
A |
The only "worry" is to know how to post to the CGI.
The two missing PARAMs for the applet are:
cgiURL and cgiParamName
For example:
param name="cgiURL" value="/cgi-bin/search.cgi" param name="cgiParamName" value="words"
would create a GET such as: http://hostname/cgi-bin/search.cgi?words=Stuff+I+Typed+in
Note:
(1) cgiURL without an explicy "http://" part should use the same hostname as the host that supplied the applet. But the full host could be supplied in the cgiURL parameter
(2) The Applet has to encode the parameter appropriately (spaces to +, etc)
|
Q |
On Mar 22, 11756981, Developer 15201 asked: There is a parameter missing for the actual URL to go to, once the button is pressed.
We have something we would like you to look at.
Please send an email to ashutosh@narhari.com for the URL
Thanks |
A |
Good spot. See the answer above.
|
|