StablexUI icon indicating copy to clipboard operation
StablexUI copied to clipboard

UI engine for Haxe OpenFL designed to give as much freedom as possible in customizing UI

Results 74 StablexUI issues
Sort by recently updated
recently updated
newest added

I have updated to last version, I am getting this error: ``` Class is not registered for runtime xml: VBox ``` I know that I have to register that class...

I am trying to register an xml class type in a macro as: UIBuilder.buildClass("src/ui/inspectors.xml", "com.clientside.ui.ComponentsInspectorsXML"); then, when I try to access it as var inspectors:com.clientside.ui.ComponentsInspectorsXML = new com.clientside.ui.ComponentsInspectorsXML(); I get...

There is a way to access object which is implemented in xml from haxe class? upload.xml ``` ``` UploadScreen.hx: ``` package view.screen; import ru.stablex.ui.UIBuilder; import view.screen.base.BaseScreen; class UploadScreen extends BaseScreen{...

I had to comment this out to prevent crashing in Button.hx on an Android samsung phone. //#if mobile // this.addEventListener(flash.events.TouchEvent.TOUCH_OUT, Button._onHout); // this.addEventListener(flash.events.TouchEvent.TOUCH_OUT, Button._onRelease); //#end Not sure about IOS and...

Is there a limit on how many option boxes you can have on screen? As soon as I add a 7th box to my I get the error: `Uncaught exception...

Hi RealyUniqueName, i like your stablexui system and am currently using it for my project. i am running into a problem, where the Scroll Widget complains about not having at...

In html5, at `defaults.xml` I've noticed that on-display is not working, however, on-change working fine: ``` on-display="PropsBinder.setCurrentField($this);" on-create="$this.addEventListener(WidgetEvent.CHANGE, PropsBinder.OnPropertyChange);" ``` It seems that `openfl.events.Event.ADDED_TO_STAGE` is not working on html5? I...

I have a project with complicated ui in xml-files. Number of xml-files is over than 130. Now compile time is over than 40 seconds. Can I reduce compile-time?

How can I use XML attributes to set InputText to password? I saw an earlier issue how to do it programmatically, but not the XML way.

Hi, Why do you suggest to implement a scrollable grid layout that will contain boxes aligned horizontally and auto wrap to the next row .. ? what shall I use?