Shai, I wanted to be clear on this, if I took my code and the JavaSE.jar to make a homemade build for the pc/mac and sold it as a program I would be within the licensing agreement?
--To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/ac0e5ea3-8475-46fc-8edd-b91511d58f0a%40googlegroups.com.
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/iOsTe0sDZSs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to codenameone-discu...@googlegroups.com.
Visit this group at http://groups.google.com/group/codenameone-discussions.
JavaSEPort.setNativeTheme("/iPhoneTheme.res");
package com.cno.example;
import com.codename1.impl.javase.JavaSEPort;import com.codename1.ui.Display;import com.naj.tmoi.TMOI;import java.awt.BorderLayout;import java.awt.Dimension;import javax.swing.JFrame;
public class CNOJFrame extends JFrame {
public CNOJFrame() {
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
BorderLayout layout = new BorderLayout();
getContentPane().setLayout(layout); this.setSize(new Dimension(500, 500)); this.setPreferredSize(new Dimension(500, 500));
}
public static void main(String[] args) { final CNOJFrame f = new CNOJFrame(); final TMOI tmoi = new TMOI(); Display.init(f.getContentPane()); JavaSEPort.setNativeTheme("/iPhoneTheme.res"); Display.getInstance().callSerially(new Runnable() { @Override public void run() { tmoi.init(null); tmoi.start(); f.setVisible(true); } }); }
}
setExtendedState(JFrame.MAXIMIZED_BOTH);
setUndecorated(true);Code hier eingeben...--
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/iOsTe0sDZSs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to codenameone-discu...@googlegroups.com.
Visit this group at http://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/4bb2e10d-0856-4df4-83f6-e94d52181155%40googlegroups.com.
--
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/iOsTe0sDZSs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to codenameone-discu...@googlegroups.com.
Visit this group at http://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/7a99b00d-2cac-4099-af35-cbe2cff88f7d%40googlegroups.com.
If this specific issue of input mode in the JavaSE port is the one reason why you aren't using Codename One then I'm sure we can address that. Is there an issue associated with this?
--
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/iOsTe0sDZSs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to codenameone-discu...@googlegroups.com.
Visit this group at http://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/790f7800-a3d2-4c0e-8eb5-f248d3cbc461%40googlegroups.com.
I am opening an issue now.
On Sun, Nov 17, 2013 at 11:45 AM, Shai Almog <shai....@gmail.com> wrote:
If this specific issue of input mode in the JavaSE port is the one reason why you aren't using Codename One then I'm sure we can address that. Is there an issue associated with this?
--
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/iOsTe0sDZSs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to codenameone-discussions+unsub...@googlegroups.com.
Its not financially viable. A binary is 50mb since it includes the JRE just the cloud upload/storage costs would be prohibitive.
Basic subscriptions don't come close to cover the server hosting costs let alone salaries.
--
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/iOsTe0sDZSs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to codenameone-discu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/2f9e6ff5-4174-4d78-adec-6d398441eab0%40googlegroups.com.
public static void main(String[] args) {
//creating Frame f and the appInstance
Display.init(f.getContentPane());
for (int i = 0; i < NetworkMonitor.getFrames().length; i++) {
if (NetworkMonitor.getFrames()[i] != f) {
NetworkMonitor.getFrames()[i].dispose();
}
}
}