Messages by Tofu

No topic yet, 157 messages
Kuix technical support » In a List with items more than the screen size

ScrollPane do not offer this possibility. It only clip scrolled content.

Kuix technical support » Video widget

Did you use the lastest Kuix sources in you project instead of a jar file ?

Else the class is on the svn : here.

Kuix technical support » How to close or hide the popup

Actualy the popupBox is created in your Java code, then you can keep the popupBox instance and invoke the .remove() method.

PopupBox myPopupBox = Kuix.showPopup(...);

...

public boolean onMessage(Object name, Object[] arguments) {

       if ("popupclicked".equals(name)) {

            myPopupBo.remove();
       }

    }

Kuix technical support » Any way of using system menus instead of buttons in popup box

Use the firstIsLeft attribute of Screen widget.

<screen firstIsLeft="false">

...

</screen>

Kuix technical support » Significance and meeting of xml content

It means that if you press the back (present only on SonyEricsson phones) or left keys the askQuit action is invoked in the frameHandler.

Kuix technical support » Application Hanged when any Exception occurs

What kind of exception ? Could you please send us a stack trace ?

Kuix technical support » Slide transition and ScrollPane bug

Right, can you please report this bug into the tracker ?

Kuix bug report » CSS with urls having / are ignored

Temporarily, you can double the /. Like :

desktop {
    bg-color: #003d3d;
    bg-image: url( //mainbg.jpg );
    color: white;
}

Kuix technical support » Video widget

Tkae a look at this snippet.

Kuix bug report » CSS url values not trimmed

To simplify the parsing code, the parser first split on space and after it check each token ... then it couldn't manage space in tokens.

Kuix general board » KUIX midlet does not start on Nokia phones

MIDlet A and B are KuixMIDlet or simply a javaME MIDlet ?

Kuix general board » Significance of Frame

Else There's no other UI hierarchy than the Desktop is the root widget and can contains only Screens. Other widget are completly flexibles. You can refer to the Widget Reference the see some specific internal widget hirarchy.

Kuix general board » Significance of Frame

A Frame DOESN'T concerne the display. A Frame is only a sort of controler that permit to catch some specific action. A frame is called a frame because it could be organized into a stack (the framehandler).

By convention it could be good to associate a frame to a Screen but it's NOT the only one way to use frames.

Kuix general board » Active and Inactive List Item Icon

listitem {

bg-image: url(<normal picture>);

}

listitem:disabled {

bg-image: url(<disabled picture>);

}

Kuix general board » KUIX support local languages

Everywhere Kuix invoke Graphics.drawString(...) and Font.stringWidth(...) and Font.charWidth(...) methods.