[codenameone-discussions] Re: Problem with reproduising Steve Hannah chat app base on websocket sample

2016-09-27 Thread Chen Fishbein
The impl class is com.codename1.io.websocket,WebSocketNativeImplImpl and not com.mhsoft.mhtalk.WebSocketNativeImplImpl Try to move the WebSocket and the WebSocketNativeImpl to the com.codename1.io.websocket package -- You received this message because you are subscribed to the Google Groups "C

[codenameone-discussions] Re: Problem with reproduising Steve Hannah chat app base on websocket sample

2016-09-27 Thread Housseini Moussa
HERE IS THE TREE OF THE PROJET -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this

[codenameone-discussions] Re: Problem with reproduising Steve Hannah chat app base on websocket sample

2016-09-27 Thread Housseini Moussa
Hi, MHTalk is my class. It is where I design all the application interface and fonctionnality. I do not change anything about the projet The MHTalk projet is created using the new project wizard. No l did not pick the Codename One demos. What l did is l reproduise the Steve Hannah chat app base

[codenameone-discussions] Re: MapComponent

2016-09-27 Thread Bryan Buchanan
My understanding (which may be incorrect) is that all the tooling around OpenStreetMap serves tiles. Do you know if it's possible to use custom data sources (i.e. your own OpensStreetMap data server) with native maps ? On Wednesday, September 28, 2016 at 2:11:08 PM UTC+10, Shai Almog wrote: >

[codenameone-discussions] Re: MapComponent

2016-09-27 Thread Shai Almog
We recommend most developers use the native maps implementation moving forward. Ideally we'll also add a fallback there that would use the web version of the API which is better maintained by Google. Most map providers are moving away from tiling API's for maps so doing that would be prudent. -

[codenameone-discussions] Re: How remove all side commands in Toolbar

2016-09-27 Thread Shai Almog
Hi, removeAllCommands() should work. Is it leaving all commands or just some of them? Did you call revalidate() after? -- 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,

[codenameone-discussions] Re: ToastBar questions

2016-09-27 Thread Shai Almog
There is a long standing issue with the theming of progress bar in the iOS theme. We need to make some widgets more consistent across platforms. Hopefully this will finally land for 3.6. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group

[codenameone-discussions] Re: Problem with reproduising Steve Hannah chat app base on websocket sample

2016-09-27 Thread Shai Almog
What's MHTalk Websocket? Is that your class? What do you do in line 83? Did you change something about the project? Is it an old project or one that you created using the new project wizard? Did you pick one of the Codename One demos? -- You received this message because you are subscribed to th

[codenameone-discussions] Re: How to force width / height of a dialog

2016-09-27 Thread Shai Almog
I'm guessing that doesn't work because you didn't place it in the center of a border layout. BorderLayout implicitly disables scrollability and sizes based on preferred size. If you placed it in the dialog as is without changing the layout or disabling scrolling then the scrolling might impact

[codenameone-discussions] MapComponent

2016-09-27 Thread Bryan Buchanan
In the Developer Guide, it says "The MapComponent uses a somewhat outdated tiling API which is not as rich as modern native maps." Can you elaborate on that, and whether it is still usable with a custom TiledProvider to use across all platforms (Android, iOS, UWP) ? -- You received this messag

[codenameone-discussions] How remove all side commands in Toolbar

2016-09-27 Thread Ulises Escobar
Hi, how I can remove all commands in a Toolbar? The removeAllCommands function in Form doesn't work. Also I need delete only one command of the SideBar, how I can do it? Thanks. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To un

[codenameone-discussions] Re: ToastBar questions

2016-09-27 Thread howudodat1
ok, nice I mimicked the ToastBar showConnectionProgress in my class and it worked fine. I'll look into interactiondialog to see about spinning my own that blocks user input finally I noticed that the progress bar never becomes visible using the native theme in the simulator with ios 7 On Mond

[codenameone-discussions] Re: Problem with reproduising Steve Hannah chat app base on websocket sample

2016-09-27 Thread Housseini Moussa
Hi l did what you suggested to me ( <> ). But l still have thesame problem. l don't know what to do.