Google

Friday, November 28, 2008

Focus Tool Project Notes

In Netbeans, select Project Properties and set to CLDC 1.0 and
MIDP 1.0 SonyEricssion T610 needs this config.

Also in the same Properties settings, select the JAR settings and
uncheck the Compress JAR checkbox. Else, there will be a
"Not enough Storage " error when sending the jar to T610 later.
I later discovered that this is an intermittent error with T610.
T610 can handle large jar files, it is not necessary to disable
compression.


Exit Command for T610

exitCommand=new Command("Exit",Command.EXIT,2);

The above fails to put an Exit command on T610. There is
no dedicated exit key on T610. A workaround is:

exitCommand=new Command("Exit",Command.ITEM,2);

Insert as ITEM instead of EXIT.