[java-dev] Re: rendering HTML in Jitter
Jonny
jmail at nospaces.net
Thu Jan 10 10:03:11 MST 2008
- Previous message: [java-dev] Re: Re: Arbitrary binary data with TcpSender?
- Next message: [java-dev] Re: rendering HTML in Jitter
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I've got it working well for me now but with a couple of issues i was wondering if you had come across.
I seem to be getting crashes when quitting if my html objects (on jit.gl.videoplanes flying about in 3D). I noticed there was no notifyDelete() function - i've added one but i'm not sure i'm releasing everything properly - routine below)
The other problem i have is that most websites now use UTF-8 encoding, but this only seems to handle LATIN-1 (ISO 8859-1) properly - have you come across a way of using different text encodings? Or do i have to convert everything?
Thanks for the great start though, i'll probably work these things out eventually & will post back here if i do.
jonny
//---------------------------------
public void notifyDeleted() {
if (bi != null) { bi.flush(); }
if (rendererContext != null) { rendererContext.close(); }
if (htmlPanel != null) { htmlPanel.removeAll(); }
}
//---------------------------------
- Previous message: [java-dev] Re: Re: Arbitrary binary data with TcpSender?
- Next message: [java-dev] Re: rendering HTML in Jitter
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
