Latest messages

582 topics, 1884 messages
Kuix technical support » how to create table view using KUIX?

i wanna make a table which consist of 4 column and 1 row using KUIX. Could anybody help me? the SOONER THE BETTER. THANKS!

Kuix technical support » Different screenfirstmenu in each tab items

If you want simply to change the text on a menu you can something like that:

First, enclose the text into a text widget:

 

<screenSecondMenu onAction="cancel">

    <text id="secondMenuText">%CANCEL%</text>

</screenSecondMenu>

Change the onAction called in onMessage():
this.screen.getSecondMenu().setOnAction("next");
Change the text displayed on second menu:
((Text) this.screen.getWidget("secondMenuText")).setText(Kuix.getMessage("NEXT"));

 

Kuix technical support » Changing second menu

Hi,

how to changing second menu? I also need to do it. Can BigNude detailed instructions?

Kuix technical support » Read and write to XML file

what is Kxml?

 

 

iso

Kuix technical support » Dynamic Data Provider - Class and Array

yes im need it too.. some body help for this :D

Kuix technical support » XML Multi Languange Help i18n

Hello... Im not understand how to loading multi languange, from forlder i18n, how to open spesific languange? like just en, fr, ina or wathever... please help me :D thank u

 

 

 

from Bali

Kuix technical support » Create a Simple TextField

Add some value to the textfield and then see....

Kuix technical support » Add dynamic textfield in tabs

Hello all,

I need to add textfields in one tab where the data will be displayed after reading from the file.I'm not able to get access to the current screen of the tab so that I can the required textfield.I tried to get the desired tabitem by desktop.getwidget(" ") method but it shows up null pointer exception everytime.Can somebody tell me what I'm doing wrong and in which part of the program exactly I should call this method.I have a deadline to submit,so it would be great if you can reply asap.

Kuix technical support » HTML rendering

also .. dir="rtl" is not working for text area. could anyone please tell me what to do?

 

Thanks

Kuix technical support » screen.setCurrent() from a 2nd thread

Yes,memory leaks realy exist!,please read this code snipped in Worker.java:


                        for (runningTaskIndex = 0; runningTaskIndex < tasks.size(); ++runningTaskIndex)
                        {
                            task = (WorkerTask) tasks.elementAt(runningTaskIndex);
                            if (task.run())
                            {
                                tasks.removeElementAt(runningTaskIndex);
                                runningTaskIndex--;
                            }
                        }

We can see,if task.run() returns false,then the task will NEVER remove from the tasks list!!
but the setCurrent() method just modified can NOT direct return true,it will result some incomplete redrawing concern!
            WorkerTask repaintTask = new WorkerTask() {

                public boolean run() {
                    Kuix.getCanvas().repaint();
                    return false;
                }
            };
            Worker.instance.pushTask(repaintTask);

so, I give the following solution:

            Worker.instance.pushTask(new WorkerTask()
            {
                public boolean run()
                {
                    Kuix.getCanvas().repaint();
                    if (!isInWidgetTree())
                    {
                        return true;
                    }
                    return false;
                }
            });

if the screen widget not in widget tree(maybe removed from its parent),then the task can safely remove from tasks list.

BTW:pls forgive my poor English ;-)

Kuix technical support » Can not use in Eclipse 3.5.1 or higher

I want to use KUIX plug-in with eclipse 3.5.1 or higher. but i can not run with my project.

and show error like this below:

java.lang.NoClassDefFoundError: HelloWorld: org/kalmeo/kuix/core/KuixMIDlet 

at com.sun.midp.midlet.MIDletState.createMIDlet(+29)

at com.sun.midp.midlet.Scheduler.schedule(+52)

at com.sun.midp.main.Main.runLocalClass(+28)

at com.sun.midp.main.Main.main(+116)

 

Please, help me solve this problem.

Thank you for your supporting.

Kuix technical support » TextField editOnAllKeys attribute

Hello Guys,

 

I've been trying to use the attribute editOnAllKeys to create a TextField without the textarea buffer when I click at widget...

According the javadoc from this component,

 

The attribute  editOnAllKeys defines if the J2ME native edit dialog is opened 

when some key is pressed when the widget has the focus.

 

I'm checking the source code to try to find how to fix that bug, but, I didn't

find yet.

 

Can anybody help me?

 

Thanks,

Lucas

Kuix technical support » How we create Kuix Application in eclips

Hi All,

any one help me about eclips? how we create project in eclips with kuix frame work.

thanks

Kuix technical support » I can't create an application with Kuix (With Eclipse)

hi Tofu

I do the same, but still i have problem .Its show error like "The hierarchy of the type Project inconsistent"

and for KuixMidlet build path or cofigure path, but I already build path.

Thanks

Ayesha

 

Kuix technical support » How to use qwerty with kuix?

Dear all,

I using kuix to deploy app in my phone (Nokia E61i) but i keyboard not work. Please help me.

Thanks for all reply and sorry for my english.

MCR