--
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-discu...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/c44ec84c-f6f8-4a3d-aa93-625ba5574ea3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
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-discu...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/996b521d-2e1c-4e70-9b3b-2e55f9124f5d%40googlegroups.com.
BryanThanks,None of the Display.getInstance() functions seem to work.If you click the overflow menu and choose a store, then on the Store form, the overflow menu there gives these options:Thanks Steve, that worked fine - very, very impressive what you've done.A couple of things don't work.
getToolbar().addMaterialCommandToOverflowMenu("Call " + CommonContext.INSTANCE.getAddresses()[storeindex].getName(), FontImage.MATERIAL_CONTACT_PHONE, new Command("") {
@Override
public void actionPerformed(ActionEvent evt) {
Display.getInstance().callSerially(() -> {
Display.getInstance().dial(CommonContext.INSTANCE.getAddresses()[storeindex].getCallnumber());
});
}
});
getToolbar().addMaterialCommandToOverflowMenu("Directions", FontImage.MATERIAL_DIRECTIONS, new Command("") {
@Override
public void actionPerformed(ActionEvent evt) {
Display.getInstance().callSerially(() -> {
Display.getInstance().openNativeNavigationApp(CommonContext.INSTANCE.getAddresses()[storeindex].getLatitude(),
CommonContext.INSTANCE.getAddresses()[storeindex].getLongitude());
});
}
});
getToolbar().addMaterialCommandToOverflowMenu("Location Map", FontImage.MATERIAL_MAP, new Command("") {
@Override
public void actionPerformed(ActionEvent evt) {
Display.getInstance().callSerially(() -> {
Display.getInstance().execute("https://www.nst.net.au/maps/" + CommonContext.INSTANCE.getAddresses()[storeindex].getName() + ".html");
});
}
});On 28 June 2016 at 00:52, Steve Hannah <steve....@codenameone.com> wrote:This installed and runs on my Lumia 640 with no problem. I'm guessing it must be something to do with the dependencies. Try this:instead of including the dependencies in the dependencies section of the upload form. Try adding them (the .appx files) individually as if you were installing them as apps. I.e. for each .appx dependency, add it in the "App package" section (choose file) rather than the "Dependencies" section.Then after you have installed both dependencies, try to install your app again.SteveOn Fri, Jun 24, 2016 at 11:07 PM, Bryan Buchanan <bry...@webbtide.com> wrote:Attached. If it's too big for your email I'll put it somewhere you can ftp it.
You received this message because you are subscribed to a topic in the Google Groups "CodenameOne Discussions" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/codenameone-discussions/nFaxWOi9m8g/unsubscribe.
To unsubscribe from this group and all its topics, send an email to codenameone-discu...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/CAGOYrKV2pPKJAv7OSETm0tEd9iYDKcD3Etk4%3DPjdzvmSCmkBNw%40mail.gmail.com.