Webstart GUI demos

Hi Gregg,



Eric and I are working on getting everything webstartable. This requires that any file be loaded via URL. So, where you loaded a WidgetFont, there should be a method to load via string and one to load via URL.



basically, replacing any:



File f = new File(string);

FileInputStream stream = new FileInputStream(f);



with



InputStream stream = url.openStream();



With these changes we can get all the demos up on the webpage as webstarted apps.

Sounds good, do you want me to do it or are you guys going to do it?



Either way works for me.



Gregg

Is font the only place you are loading data? If so, I can do it real quick.

That’s the only place I can think of. Of course the ole neurons aren’t what they used to be. :slight_smile:

Ok, I’ll take care of it then. Then we’ll try to get your stuff webstarted.

committed.