[codenameone-discussions] Re: What is overflow menu component

2016-05-21 Thread Shai Almog
Command works for me:

[codenameone-discussions] Re: What is overflow menu component

2016-05-22 Thread Shai Almog
Works as well. Just make sure to set the opacity to 255. Override the border to be "Empty" and override the background to be "None".

[codenameone-discussions] Re: How to get the position (latitude and longitude) of a map in a WebBrowser component when pressed click

2016-05-22 Thread Shai Almog
Hi, that's more of a JavaScript question than a Codename One question and that's not one of our stronger suits. -- 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

[codenameone-discussions] Re: Click sound

2016-05-22 Thread Shai Almog
Hi, try using setTactileTouch(false) on the tabs. -- 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

[codenameone-discussions] Re: Changing Command icon on state changes

2016-05-23 Thread Shai Almog
Unlike other parts of the toolbar the overflow was implemented as a List which doesn't support state changes (it's specific to Button subclasses). I think this is a mistake but it's non-trivial to fix. -- You received this message because you are subscribed to the Google Groups "CodenameOne D

[codenameone-discussions] Re: Click sound

2016-05-23 Thread Shai Almog
Try the same with: Container c = findTabs(f).getTabsContainer(); for(Component cmp : c) { cmp.setTactileTouch(false); } -- 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

[codenameone-discussions] Re: Overflow Menu commands render differently on device and simulator

2016-05-23 Thread Shai Almog
That's an Android 2.x simulator and I'm guessing an Android 4+ device. Try the Xoom skin to reproduce this as closely as possible. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emai

Re: [codenameone-discussions] adding Webview to iOS app

2016-05-23 Thread Shai Almog
Sorry for the delay in responding, Google groups shoved this into the moderation queue without warning... You can just use a BrowserComponent in the application and it will use the native web component on each platform see: https://www.codenameone.com/blog/phonegap-cordova-compatibility-for-codena

Re: [codenameone-discussions] Using BrowserComponent after run showing error Connection refused by server

2016-05-23 Thread Shai Almog
Can you paste the actual error? Do you have a network connection in place? On Sat, May 21, 2016 at 5:12 PM, wrote: > I am using BrowserComponent to open a web page but showing error > Connection refused by server > afer start > Form hi = new Form("Browser", new BorderLayout()); > >

[codenameone-discussions] Re: Programatically hide open overflow menu

2016-05-24 Thread Shai Almog
The close is automatic but sometimes these things happen because of the event chain which is still processing. Just postpone your call to the next EDT cycle by wrapping it in a callSerially call. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussi

Re: [codenameone-discussions] Deal with null value in sqlite database

2016-05-24 Thread Shai Almog
I haven't tried this but did you try getting the value as a String? If null will be returned you can know it's null and then you don't need to get the integer value. I'm not sure if it will work across devices though... -- You received this message because you are subscribed to the Google Group

[codenameone-discussions] Re: Toolbar and back command issues

2016-05-24 Thread Shai Almog
There is a regression there which we've fixed already. It will be in this Friday release. -- 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

[codenameone-discussions] Re: Deriving Theme entries

2016-05-24 Thread Shai Almog
Yes themeing is difficult in pretty much any elaborate platform. Derive is relatively simplistic and gets the properties of the base. However, there are pitfalls: You can't recurse. E.g. it's very likely that the selected CommandList derives from CommandList and so you will end up with a conf

[codenameone-discussions] Re: Toolbar and back command issues

2016-05-25 Thread Shai Almog
Did you override the setBackCommand method? -- 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. Visi

[codenameone-discussions] Re: Singular problem in ConnectionRequest object

2016-05-25 Thread Shai Almog
Hi, is this happening on the simulator or only on the device? You can reproduce a background behavior by using the suspend/resume functionality of the simulator and also track the incoming/outgoing network calls vial the network monitor tool. -- You received this message because you are subscri

[codenameone-discussions] Re: Deal with null value in sqlite database

2016-05-25 Thread Shai Almog
What I was trying to say is this: Use your number code as before without a problem. However, when you need to check if a value is null use the getString() method to check that special case. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" g

[codenameone-discussions] Re: Display another dialog when closing one

2016-05-25 Thread Shai Almog
Don't open a dialog from a thread that isn't the EDT. If you show the next dialog before disposing the previous dialog then the previous form for the next dialog is the first dialog... So when you dispose the next dialog it "goes back" to the previous form... -- You received this message becaus

[codenameone-discussions] Re: Class.forName and class.getConstructor

2016-05-25 Thread Shai Almog
Correct. The main problem is that even on devices like Android we obfuscate the binaries as Google explicitly recommends so the class names will be garbled. Since iOS doesn't allow dynamic code download there will be no class that is "unknown" on build time and thus there is no reason for class

[codenameone-discussions] Re: How to set up and connect to sql database backend for my app & how to bill app users

2016-05-25 Thread Shai Almog
I suggest posting a new question with a more detailed explanation of what it is you are trying to do and where you are stuck. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emails fr

[codenameone-discussions] Re: LikeButton

2016-05-25 Thread Shai Almog
A like button will only work if you are authenticated to Facebook. Did you go thru the FacebookConnect authentication? -- 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,

Re: [codenameone-discussions] Why foreign key support is not enable (SQLite) ?

2016-05-25 Thread Shai Almog
Sqlite is REALLY unportable. We use the native implementation which is the epitome of device fragmentation... Just googling "PRAGMA FOREIGN_KEYS ios" indicated that foreign keys is problematic on Android and on iOS it seems to only work when executed outside of a transaction. Ideally we'd just

[codenameone-discussions] Re: Class.forName and class.getConstructor

2016-05-26 Thread Shai Almog
Hi, can you be more clear about what specifically you are trying to accomplish? Using class.forName() won't give you an advantage of abstraction as you can't link code dynamically anyway. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" gro

[codenameone-discussions] Re: Need help with headers and cookies.

2016-05-26 Thread Shai Almog
I answered this here: http://stackoverflow.com/questions/37470283/need-examples-headers-and-cookies -- 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 c

[codenameone-discussions] Re: Network not working with iphone_new

2016-05-26 Thread Shai Almog
Probably not. I think the limitation only applies to http POST but I'm not sure about that... -- 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 codena

[codenameone-discussions] Re: Can't check for updates

2016-05-26 Thread Shai Almog
Hi, you are using a long defunct update center URL. Uninstall the plugin and remove that URL. Then reinstall the plugin from the official NetBeans repository. https://www.codenameone.com/download.html -- You received this message because you are subscribed to the Google Groups "CodenameOne Disc

[codenameone-discussions] Re: Class.forName and class.getConstructor

2016-05-27 Thread Shai Almog
Hi, so the way we do an abstraction of implementation is thru class literals. E.g. see the native interface support: https://www.codenameone.com/manual/advanced-topics.html#_native_interfaces This works by using code such as: MyNative my = NativeLookup.create(MyNative.class); if(my != null &&

[codenameone-discussions] Re: Wrapping Text on Checkboxe and RadioButtons

2016-05-29 Thread Shai Almog
Hi, right now we don't have SpanRadio or SpanCheckBox classes. I think both should be pretty easy to write based on the SpanButton class. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receivi

[codenameone-discussions] Re: connection request

2016-05-29 Thread Shai Almog
I'm afraid I don't know PHP so I can't really tell what you are trying to accomplish. I suggest defining what you need from the server? Cookie? Token? Something else? -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe fr

[codenameone-discussions] Re: Plugin installation problem

2016-05-30 Thread Shai Almog
They had planned downtime yesterday. Notice that we have our own update center for such cases https://www.codenameone.com/blog/netbeans-plugin-update-center.html -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from th

[codenameone-discussions] Re: Constructor vs InitVars

2016-05-30 Thread Shai Almog
Hi, it is confusing. I'm guessing your code looked like this: private Object myVar = null; initVars() { myVar = new ...; } Then you were surprised that myVar is null because the null assignment happens AFTER the new statement! -- You received this message because you are subscribed to the

[codenameone-discussions] Re: Open GPS settings sampe needed

2016-05-30 Thread Shai Almog
Hi, this was a common practice during the days of Android 2.x. Today with Google play services (which work on older versions of Android too) this is no longer recommended. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscr

[codenameone-discussions] Re: Open GPS settings sampe needed

2016-05-31 Thread Shai Almog
There already is one: http://www.codenameone.com/how-do-i---access-native-device-functionality-invoke-native-interfaces.html I think this question was asked before and you can probably find the answer by searching this group -- You received this message because you are subscribed to the Google

[codenameone-discussions] Re: Moving from screen to another screen in Codename one

2016-05-31 Thread Shai Almog
In the theme constants there is a formTransitionOut constant: https://www.codenameone.com/manual/advanced-theming.html -- 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, s

[codenameone-discussions] Re: Developing a matrix component

2016-05-31 Thread Shai Almog
Hi, table will work with checkboxes by default if you use booleans in the model. You can also hust use a table layout and create that UI from components. There are samples of customizing table cell rendering in the developer guide under the table section: https://www.codenameone.com/manual/compo

[codenameone-discussions] Re: Why are images I don't need still there?

2016-05-31 Thread Shai Almog
Hi, there is a discrepancy due to the disconnect between the res folder and the res file. The workaround is to delete the images. Delete the res dir and then press save. It will be recreated without the deleted images. -- You received this message because you are subscribed to the Google Groups

[codenameone-discussions] Re: Stray Audio permission on Android

2016-05-31 Thread Shai Almog
When you get a phone call android keeps playing the audio (seriously!!!). This is a HUGE Android bug that they consider to be a "feature"... So we need to listen to incoming phone calls to pause the audio. -- You received this message because you are subscribed to the Google Groups "CodenameOne

[codenameone-discussions] Re: Java Desktop Application to Codename One

2016-05-31 Thread Shai Almog
Hi, you will need to create a new project in Codename One and transfer files one by one. In the interest of being portable and small Codename One removed many things from Java SE proper. If you used Swing the transition should be really easy as Codename One is very similar to that. -- You rece

[codenameone-discussions] Re: Stray Audio permission on Android

2016-06-01 Thread Shai Almog
Are you using Android 4.x? If so the permissions of Google Play Services appear below in a somewhat confusing way and should mostly be ignored. If not make sure you don't have an errant cn1lib somewhere. -- You received this message because you are subscribed to the Google Groups "CodenameOne

[codenameone-discussions] Re: Screen flickers on new iPad Pro 9.7" after orientation change

2016-06-01 Thread Shai Almog
Hi, is this with a simple unmodified version of the hello world? -- 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...@g

[codenameone-discussions] Re: ios build error whiel in android works

2016-06-01 Thread Shai Almog
Hi, it looks like you integrated the google maps cn1lib incorrectly. If you switched to the latest implementation you need to wipe some build hints and start fresh with some of them. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. T

[codenameone-discussions] Re: graphics glitch on some devices

2016-06-01 Thread Shai Almog
Either way we'll need a test case so we can reproduce that. -- 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...@googl

[codenameone-discussions] Re: Screen flickers on new iPad Pro 9.7" after orientation change

2016-06-01 Thread Shai Almog
Can you test it with the iphone_new build? https://www.codenameone.com/blog/ios-server-migration-plan.html -- 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

[codenameone-discussions] Re: Dialog.show() doesn't get dismissed when I hit the back button

2016-06-01 Thread Shai Almog
I think we need to set these dialogs to dispose when the pointer is out of bounds. The Dialog in Codename One is a separate Form so the back arrow has nothing to do with it. However, if a user taps outside of the dialog it should be like pressing cancel. Please file an RFE we'll look into it:

[codenameone-discussions] Re: error: cannot find symbol

2016-06-02 Thread Shai Almog
Hi, answered here: http://stackoverflow.com/questions/37590391/codename-one-error-cannot-find-symbol -- 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] Re: Dialog.show() doesn't get dismissed when I hit the back button

2016-06-02 Thread Shai Almog
Both of those solutions are irrelevant for the static dialog methods. BTW I would use the new Toast error messages for many of the cases I formerly used dialogs: https://www.codenameone.com/blog/zip-and-toast.html In the case of a standard dialog instance you can turn on the pointer out of boun

[codenameone-discussions] Re: android Access to res folder using native interfaces

2016-06-02 Thread Shai Almog
Hi, we don't provide access to that at this time. The solution is to create your activity in an Android AAR file which is completely standalone and integrate that. I'm not much of an expert on that so Chen might have some feedback to correct me here... https://www.codenameone.com/manual/advance

[codenameone-discussions] Re: graphics glitch on some devices

2016-06-02 Thread Shai Almog
Sure. I'm not saying it isn't out problem, I'm saying that I have no way to debug theories. -- 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 codenameo

Re: [codenameone-discussions] Re: Screen flickers on new iPad Pro 9.7" after orientation change

2016-06-02 Thread Shai Almog
Can one of you guys please file an issue so we don't lose track of this: https://www.codenameone.com/blog/issue-submission-guideline.html -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receivi

[codenameone-discussions] Re: createContact with more arguments

2016-06-02 Thread Shai Almog
Hi, mobile contacts API's are a HUGE mess across devices. We narrowed it down to the least amount of pain we could. You can use native interfaces to do this but it's a world of pain which is why we didn't do it ourselves. The main issue is that getting something to work on one device is OK, but

[codenameone-discussions] Re: Stray Audio permission on Android

2016-06-02 Thread Shai Almog
Media or capture to my knowledge but Chen should know more about that. -- 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+unsubsc

[codenameone-discussions] Re: Dialog.show() doesn't get dismissed when I hit the back button

2016-06-03 Thread Shai Almog
If you are referring to the hardware back button then this is a regression. This used to work fine. -- 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 c

[codenameone-discussions] Re: Bluetooth Broadcast / Beacon Support

2016-06-03 Thread Shai Almog
Hi, I don't know and I don't think Chen or Steve know. I suggest trying. -- 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+unsu

[codenameone-discussions] Re: facebook log in issue

2016-06-04 Thread Shai Almog
Hi, on simulator/device? Both? What's the error? -- 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.

[codenameone-discussions] Re: Put two lines of titles

2016-06-04 Thread Shai Almog
Hi, the Toolbar allows you to call setTitleComponent() where you can place any arbitrary component as the title including TextField and Containers... -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and

[codenameone-discussions] Re: Problem looking for CN1 updates

2016-06-04 Thread Shai Almog
You shouldn't use any repository address. The default netbeans settings should include community plugins. You should remove the codenameone update center from netbeans, uninstall the plugin then reinstall it from the default location. -- You received this message because you are subscribed to

[codenameone-discussions] Re: Bluetooth Broadcast / Beacon Support

2016-06-05 Thread Shai Almog
Maybe Steve has an idea. What sort of problems? -- 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.

[codenameone-discussions] Re: graphics glitch on some devices

2016-06-05 Thread Shai Almog
Nope. We use the native jpeg decoding ability and have no control over that. I wouldn't even trust PNG decoding to be 100% accurate on devices. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop re

[codenameone-discussions] Re: graphics glitch on some devices

2016-06-06 Thread Shai Almog
Since this requires OS changes on devices even if you could report it there will probably be no answer. We reported issues in Android and they generally just go into the pile never to be heard of again... When you load an image on the device it is loaded into a native surface object which trans

[codenameone-discussions] Re: Bluetooth missing methods

2016-06-07 Thread Shai Almog
Hi, it's probably an accidental omission. You can probably submit a pull request relatively easily to the project as it's a standalone cn1lib. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop re

[codenameone-discussions] Re: Toolbar on the Desktop version

2016-06-08 Thread Shai Almog
Hi, with the current version we use the Toolbar in the desktop builds and the menu icon is there. I think it should be there for 3.4 as well... You can explicitly set the menu icon with a theme constant but I don't think that should be necessary. Did you style the background/foreground of the To

[codenameone-discussions] Re: Google Places AutoComplete Using AutoCompleteTextField

2016-06-08 Thread Shai Almog
Hi, you can set the completion strings. Currently automating this process is non-trivial and we have an issue on improving that: https://github.com/codenameone/CodenameOne/issues/1694 -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group.

[codenameone-discussions] Re: MapComponent Questions

2016-06-08 Thread Shai Almog
Hi, we put most of our efforts into the native maps which are what most developers prefer: https://github.com/codenameone/codenameone-google-maps/ 1. It should work but coordinates use a somewhat different space for measurement. I don't recall exactly but there should be discussion of this in

[codenameone-discussions] Re: Toolbar on the Desktop version

2016-06-09 Thread Shai Almog
Hi, yes. Try setting the MenuButton UIID to have distinct foreground/background colors. You can also set the image explicitly using the sideMenuImage theme constant. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe fr

[codenameone-discussions] Re: How to open link in external browser from BrowserComponent

2016-06-10 Thread Shai Almog
Hi, Blackberry is a coin toss when it comes to things working on it. You can bind a shouldNavigate callback like this: browser.setBrowserNavigationCallback(url -> { Display.getInstance().callSerially(() -> Display.getInstance(). execute(url)); return false;

[codenameone-discussions] Re: ios build error whiel in android works

2016-06-10 Thread Shai Almog
I suggest you download the latest library. Delete all the build hints starting with ios.* that you didn't add and doing a refresh libs. Then set the values for the google map keys again in the variables within the build hints. -- You received this message because you are subscribed to the Goog

[codenameone-discussions] Re: is Codename One a certified MADP for Airwatch?

2016-06-10 Thread Shai Almog
We already support a few MDM's like that and already work with VMWare to some extent. If you have an enterprise account please contact our support and we can work on incorporating airwatch support seamlessly into your build. -- You received this message because you are subscribed to the Google

[codenameone-discussions] Re: Convert SignatureComponent Image into Text

2016-06-10 Thread Shai Almog
Hand writing recognition requires complex OCR which is a pretty difficult and somewhat unsolvable task. -- 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

[codenameone-discussions] Re: Around the last Android build sent to server all default skins got deleted

2016-06-10 Thread Shai Almog
We announced that we are moving all the skins to the "More" menu: https://www.codenameone.com/blog/unskin-proxy-support.html We also reminded about that announcement yesterday: https://www.codenameone.com/blog/questions-of-the-week-ix.html This reduced our plugin size by more than 25MB not to m

[codenameone-discussions] Re: How to open link in external browser from BrowserComponent

2016-06-11 Thread Shai Almog
It should work but we haven't tested a blackberry for years by now. -- 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.

[codenameone-discussions] Re: theme looks wrong after a few months

2016-06-11 Thread Shai Almog
Hi, odd. It looks like you customized the font for unselected style and didn't customize it for selected/pressed style? I don't think that behavior changed much and it's hard to tell exactly what happened. FYI If you have a pro subscription you can set the build to 3.3 and update the libraries

[codenameone-discussions] Re: Apply license key and change email address

2016-06-12 Thread Shai Almog
Hi, just login to the build server: https://www.codenameone.com/build-server.html In the "Subscription" tab scroll to the bottom where you should see "If you received an upgrade code by email, paste it here: " and you can just paste the key there. It instantly activates the account so there is

[codenameone-discussions] Re: Around the last Android build sent to server all default skins got deleted

2016-06-12 Thread Shai Almog
Did you select the iphone5_os7 skin by any chance? It was broken on our servers due to the skin migration process. It should be fixed now. Just re-run the simulator which should revert to the default 3gs skin and re-download that skin in the more menu. -- You received this message because you a

[codenameone-discussions] Re: Whats the current plugin version?

2016-06-13 Thread Shai Almog
We released a newer version on Friday but NetBeans needs a verification process to approve every update. I see that one person already verified the plugin so we need another person to do so... -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions

[codenameone-discussions] Re: Running text in tool bar

2016-06-13 Thread Shai Almog
That's called tickering in Codename One and is available for every label. Since the Title component is a label you can effectively call the startTicker method on it. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe fro

[codenameone-discussions] Re: Codename One preference window - error message

2016-06-13 Thread Shai Almog
We'll look into that. Please file an issue: https://www.codenameone.com/blog/issue-submission-guideline.html The Codename One Settings is a new feature that was just launched. You can still use the old IDE native preferences UI at this time. -- You received this message because you are subscri

[codenameone-discussions] Re: Around the last Android build sent to server all default skins got deleted

2016-06-13 Thread Shai Almog
Do you have a direct internet connection? Did you define the proxy correctly? -- 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+

[codenameone-discussions] Re: resource envelope is obsolete (custom omit rules)

2016-06-13 Thread Shai Almog
I'm assuming you generated your own provisioning/p12. Generated debug builds can be installed either via the QR code, email or itunes sync. If you use our certificate wizard this should work "seamlessly" however we support doing this manually but there are many pitfalls see: http://www.codename

[codenameone-discussions] Re: I'm new to Codename One, quick question

2016-06-13 Thread Shai Almog
There are no limitations on working locally, distributing, selling etc. No nags etc. The limitations prevent free users from taking up server resources from paying users. So jar size is limited to 1mb which is quite a lot actually as it doesn't include Codename One libraries etc. You get 100 bui

[codenameone-discussions] Re: If you add a UDID do you regen certs?

2016-06-14 Thread Shai Almog
No to both. Don't regenerate certificates unless they expire. -- 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...@goog

[codenameone-discussions] Re: theme looks wrong after a few months

2016-06-14 Thread Shai Almog
Hi, no. 3.2 is retired by now and won't be available soon. Since it's been a long time since 3.2 it's hard to tell what has changed between 3.2 and 3.3 time period to affect this. I suggest updating the plugin to the latest and trying in the latest designer version, it should also display the sa

[codenameone-discussions] Re: Whats the current plugin version?

2016-06-14 Thread Shai Almog
We don't publish that as it breeds a lot of confusion. 99% of the cases where people care about the version refer to the library version which should always be the latest. The plugin version isn't as crucial. -- You received this message because you are subscribed to the Google Groups "Codenam

[codenameone-discussions] Re: Does Codenameone support MQTT ? I want to make MQTT Client

2016-06-14 Thread Shai Almog
Hi, we don't have any builtin support for this and I'm not familiar enough with it. I guess a library with support for this can be integrated or the protocol can be supported via the sockets API. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussi

Re: [codenameone-discussions] Re: Windows Phone 10 install

2016-06-14 Thread Shai Almog
We'll try to reproduce this on our end and post a guideline to getting the app onto the device. FYI you can probably build with "include source" and run the project in visual studio, this might allow you to run on the device or at least get a better error message... -- You received this messag

[codenameone-discussions] Re: Windows target build error

2016-06-15 Thread Shai Almog
This is the old Windows Phone build target and not the new UWP target. It has issues with multi-dimension arrays that we tried to workaround but it's a pretty problematic port. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsu

Re: [codenameone-discussions] Re: Windows Phone 10 install

2016-06-15 Thread Shai Almog
We were able to reproduce the problem and it's a bit of a layered problem with a few separate causes. I don't think we'll have a fix for this Friday but we're working on it. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscr

[codenameone-discussions] Re: OutOfMemory Error in OneDrive uploading file over a little large file

2016-06-15 Thread Shai Almog
Hi, all output streams in Codename One are buffered so you should never wrap them in another buffered output stream. You are allocating a single array of 150MB this will blow up on most devices... Writing it will usually trigger further allocations of similar size and will prevent the GC from d

[codenameone-discussions] Re: Unable to submit a build using IntelliJ

2016-06-15 Thread Shai Almog
Are you behind a proxy? try configuring the proxy with our new settings: https://www.codenameone.com/blog/unskin-proxy-support.html -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving ema

[codenameone-discussions] Re: Bluetooth LE library / Beacons / Cordova

2016-06-15 Thread Shai Almog
It should be relatively straightforward to convert since the bluetooth cn1lib is an almost direct port. -- 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

[codenameone-discussions] Re: Codenameone Settings

2016-06-15 Thread Shai Almog
Hi, is your IDE running on Java 8? (IDE itself not the project) Do you have special characters or spaces in the project name? -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emails fr

[codenameone-discussions] Re: Codename One preference window - error message

2016-06-16 Thread Shai Almog
I don't think he filed an issue and it slipped my mind with all of the tasks. Notice that the old preferences still exist as a workaround. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiv

[codenameone-discussions] Re: toolbar not in the place

2016-06-16 Thread Shai Almog
Did you manipulate command behavior or set the toolbar after showing the form? -- 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-discussion

[codenameone-discussions] Re: Android flash when you hit enter on keyboard (and other things)

2016-06-16 Thread Shai Almog
1. If you can reproduce this as a test case please file an issue. 2. There is a way to customize the submit buttons: https://www.codenameone.com/blog/keyboard-keys-android-pipeline.html Try using the go button option. 3. By huge do you mean exceed the boundaries of the text field? Do you have a

Re: [codenameone-discussions] Can i compile/create a cn1lib through an ANT target

2016-06-16 Thread Shai Almog
FYI we use CI with Codename One and blogged about this in the past. I'm working on a more detailed tutorial for integrating Codename One builds to the continuous integration flow. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To u

[codenameone-discussions] Re: What happened to mapping.txt

2016-06-16 Thread Shai Almog
I think this got lost with the migration to the new Gradle build process. We should probably add this back, please file an issue. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving email

[codenameone-discussions] Re: Android flash when you hit enter on keyboard (and other things)

2016-06-17 Thread Shai Almog
3. Is that while typing or after the typing is done and focus moved to a different field? Do those differ? -- 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 emai

[codenameone-discussions] Re: Codename One Send Build Error

2016-06-17 Thread Shai Almog
I've noticed you were able to solve it http://stackoverflow.com/questions/37883819/codename-one-send-build-error#37883819 I'm very curious as to why these steps are needed and how we can help in such cases. -- You received this message because you are subscribed to the Google Groups "CodenameO

[codenameone-discussions] Re: an IOS platform issue with images

2016-06-17 Thread Shai Almog
Assuming out is an ARGB array which you didn't state. This still isn't guaranteed to work as the colors are applied to a native surface which doesn't have to support all the colors. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To

[codenameone-discussions] Re: an IOS platform issue with images

2016-06-18 Thread Shai Almog
Where did you say you put in black and got back white in the question? I just re-read it and can't see that neither in the sample nor the wording. If the alpha component is transparent the color component is ignored. -- You received this message because you are subscribed to the Google Groups "

[codenameone-discussions] Re: Skins vanished out of IDE!

2016-06-18 Thread Shai Almog
That was the old list: /iphone3gs.skin;/nexus.skin;/ipad.skin;/iphone4.skin;/android.skin;/iphone5.skin;/feature_phone.skin;/xoom.skin;/torch.skin;/lumia.skin Nexus is there but I'm assuming you mean the android skin? I think that was removed as it's pretty old by now and mostly covered by the ne

[codenameone-discussions] Re: Cannot remove back button

2016-06-18 Thread Shai Almog
To remove the back command from all forms override: protected void setBackCommand(Form f, Command backCommand) { } This will effectively disable it completely. To remove it from a specific form destination override: protected boolean allowBackTo(String formName) { return

  1   2   3   4   5   6   7   8   9   10   >