[codenameone-discussions] Re: JavaFX used by Windows and Mac OS Desktop builds outdated.

2019-03-12 Thread Shai Almog
We're working on it but as suspected it's harder than just switching the JDK implementation. We added new build hints: win.desktop-vm=zuluFx8 mac.desktop-vm=zuluFx8 The Windows version seems to work. I haven't testing it other than checking that it compiled. The mac version doesn't seem to

[codenameone-discussions] Re: Strip html from string

2019-03-12 Thread diamondobama
Container contCenter = new Container(BorderLayout.absolute()); splash.add(BorderLayout.CENTER, contCenter); int time = 3000; // 3 seconds InfiniteProgress ip = new InfiniteProgress(); ip.setAnimation(logo);

Re: [codenameone-discussions] Strip html from string

2019-03-12 Thread Steve Hannah
Use the RE class for regular expressions. https://www.codenameone.com/javadoc/com/codename1/util/regex/RE.html#subst-java.lang.String-java.lang.String- On Tue, Mar 12, 2019 at 7:30 AM wrote: > If you are experiencing an issue please mention the full platform your > issue applies to: > IDE:

[codenameone-discussions] Re: JavaFX used by Windows and Mac OS Desktop builds outdated.

2019-03-12 Thread remonkroep
Any updates on this? -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emails from it, send an email to codenameone-discussions+unsubscr...@googlegroups.com. Visit this group at

[codenameone-discussions] Strip html from string

2019-03-12 Thread shop . service . assistant
If you are experiencing an issue please mention the full platform your issue applies to: IDE: NetBeans/Eclipse/IDEA NetBeans 8.2 Desktop OS Windows 10 Pro Simulator Latest Device PC, Android, IOS I am using StringUtil.replaceAll(html, "\\<.*?>", ""); to strip out html However it is not working.