Re: [codenameone-discussions] Re: Unable to restart the IEHS App

2021-06-08 Thread Steve Hannah
What IDE ate you using? you may need to enable error reporting (-e) in the maven command to see the full stack trace of the error. On Tue, Jun 8, 2021 at 11:11 AM Dennis Rogers wrote: > Tried that but no joy. Any other suggestions? > > On Monday, June 7, 2021 at 9:20:59 PM UTC-4 Shai Almog

[codenameone-discussions] Re: Layout involving BrowserComponents revalidates when typing

2021-06-08 Thread Shai Almog
I don't think we revalidate the browser component while typing but I'll confirm that. On Tuesday, June 8, 2021 at 11:33:47 AM UTC+3 P5music wrote: > > I am testing my CN1 app in the iOS simulator. On my OSX system performance > is variable according to what device is simulated. They are

Re: [codenameone-discussions] How to create simple buttons with text wrap in BoxLayout.y ?

2021-06-08 Thread Shai Almog
I don't understand how you expect this to work? You have a button with long text that breaks lines. How do you expect this to be centered? If you explicitly line break with \n then there will be room for centering. Alternatively just use a bit of margin on the side to limit the space available

[codenameone-discussions] Re: Unable to restart the IEHS App

2021-06-08 Thread Shai Almog
Is this the full output you see in the console? Steve? On Tuesday, June 8, 2021 at 9:11:40 PM UTC+3 a2nd...@gmail.com wrote: > Tried that but no joy. Any other suggestions? > > On Monday, June 7, 2021 at 9:20:59 PM UTC-4 Shai Almog wrote: > >> Try killing Java processes and see if it solves

[codenameone-discussions] Re: Unable to restart the IEHS App

2021-06-08 Thread Dennis Rogers
Tried that but no joy. Any other suggestions? On Monday, June 7, 2021 at 9:20:59 PM UTC-4 Shai Almog wrote: > Try killing Java processes and see if it solves the issue. > > On Tuesday, June 8, 2021 at 1:05:53 AM UTC+3 a2nd...@gmail.com wrote: > >> Suddenly I've not been able to send builds to

[codenameone-discussions] Layout involving BrowserComponents revalidates when typing

2021-06-08 Thread 'P5music' via CodenameOne Discussions
I am testing my CN1 app in the iOS simulator. On my OSX system performance is variable according to what device is simulated. They are pretty slow, I can notice something. My app has buttons, textfields and BrowserComponents in the layout. I see that when a textfield is edited, even in a

[codenameone-discussions] Re: Suggestion about changing the location of cn1storage folder

2021-06-08 Thread 'P5music' via CodenameOne Discussions
So, I used the ios.newStorageLocation=false hint and String documentsRoot=FileSystemStorage.getInstance().getRoots()[0]; yields a different path of course, I had to change the code for retrieving the "Application Support" and the "Documents" folders path. It seems to work. Regards Il giorno

Re: [codenameone-discussions] How to create simple buttons with text wrap in BoxLayout.y ?

2021-06-08 Thread Javier Anton
https://www.codenameone.com/javadoc/com/codename1/ui/layouts/FlowLayout.html use the constructor with the orientation param and use CENTER On Tue, 8 Jun 2021 at 07:26, 'P5music' via CodenameOne Discussions < codenameone-discussions@googlegroups.com> wrote: > Thanks > I already tried with

Re: [codenameone-discussions] How to create simple buttons with text wrap in BoxLayout.y ?

2021-06-08 Thread 'P5music' via CodenameOne Discussions
Thanks I already tried with FlowLayout and the size is correct, but the button is on the left. So I added the FlowLayout container to a BorderLayout in the CENTER position, but the button still is on the left. Regards Il giorno martedì 8 giugno 2021 alle 00:00:58 UTC+2 javier...@gmail.com ha