[codenameone-discussions] Re: Windows Phone 10 - fonts not working

2016-07-04 Thread Bryan Buchanan
Done. On Tuesday, July 5, 2016 at 2:40:38 PM UTC+10, Shai Almog wrote: > > Can you file an issue on that? > It's OK to include just one TTF file that's free e.g. Roboto with the test > case. > -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussion

[codenameone-discussions] Re: Using iOS native interface to create video thumbnail always returning empty byte array

2016-07-04 Thread Shai Almog
I've commented on your question here: http://stackoverflow.com/questions/38177114/ios-code-to-generate-video-thumbnail-returning-0-byte -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving

[codenameone-discussions] Re: Windows Phone 10 - fonts not working

2016-07-04 Thread Shai Almog
Can you file an issue on that? It's OK to include just one TTF file that's free e.g. Roboto with the test case. -- 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 a

Re: [codenameone-discussions] Re: Windows build only runs as background app

2016-07-04 Thread Shai Almog
Try running the project from command line using java -jar with your jar file name. It should be somewhere in the installation hierarchy. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receivin

[codenameone-discussions] Re: InfiniteProgress not showing in simulator or on android

2016-07-04 Thread Shai Almog
Your sample opens the progress dialog and closes it immediately without letting it show. The progress dialog is not modal and doesn't block the execution thread. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from th

[codenameone-discussions] Using iOS native interface to create video thumbnail always returning empty byte array

2016-07-04 Thread kazza186
I'm creating an app using CodenameOne and have to use an ios native interface to generate some video thumbnails. I can't see the iOS logs as I don't have a Mac but as far as anyone has said the iOS code is correct so I feel that it's something to do with either the passing of file paths from

[codenameone-discussions] Windows Phone 10 - fonts not working

2016-07-04 Thread Bryan Buchanan
final Form hi = new Form("Fonts"); hi.setLayout(new BoxLayout(BoxLayout.Y_AXIS)); hi.setScrollableX(false); hi.setScrollableY(true); int[] sizes = {2, 3, 4, 6, 8}; String[] fonts = {"ArchitectsDaughter", "Cabin-Regular", "Cab

Re: [codenameone-discussions] UWP appxupload fail on submit to store

2016-07-04 Thread Steve Hannah
I have been working with you on Stack overflow on this issue: http://stackoverflow.com/questions/38161421/codename-one-windows-uwp-build-in-compliance-test-on-windows-store?noredirect=1#comment63773023_38161421 I'm just walking through the certification process in a sample app right now to try to

[codenameone-discussions] UWP appxupload fail on submit to store

2016-07-04 Thread Thomas Wix
When i send a windows uwp build to codenameone it generates the appxupload file and i can upload this file to windows store and the file gets true validation but when i click submit to store i run in to a problem after a little time because it fail at the Certification part of the submit the er

Re: [codenameone-discussions] Re: Fonts on Windows Phone

2016-07-04 Thread Steve Hannah
I have opened an issue for this. https://github.com/codenameone/CodenameOne/issues/1821 On Sun, Jul 3, 2016 at 9:08 PM, Shai Almog wrote: > The port is based on an older port that predated the native: font scheme. > This is probably something we need to add. > > -- > You received this message

Re: [codenameone-discussions] Re: Windows build only runs as background app

2016-07-04 Thread Steve Hannah
I had some ideas, but I wasn't able to reproduce this problem, so couldn't really follow them through. Perhaps your app is throwing an exception that is causing the window to hide. On Mon, Jul 4, 2016 at 5:42 AM, wrote: > I uninstalled the previous MSI version then I changed my "build hint" fro

[codenameone-discussions] Re: InfiniteProgress not showing in simulator or on android

2016-07-04 Thread howudodat1
This is easily reproduced: new project theme:business template: hello world (bare bones) add the following code to start() com.codename1.ui.Button gui_Button_1 = new com.codename1.ui.Button(); hi.addComponent(gui_Button_1); com.codename1.ui.Command cmd_btnLogin = new com.codename1

[codenameone-discussions] Re: Windows build only runs as background app

2016-07-04 Thread barrytsnl
I uninstalled the previous MSI version then I changed my "build hint" from MSI to EXE, built and downloaded about 15 minutes ago. I received the same result, although it did install to a different location, it stills runs as a background process. On Sunday, July 3, 2016 at 6:21:16 AM UTC+1, Sh