bright-gpu-74537
03/15/2021, 4:32 PMbright-gpu-74537
03/15/2021, 4:33 PMhaxe
public override function set_onClick(value:MouseEvent->Void):MouseEvent->Void {
theButton.onClick = value;
return value;
}magnificent-caravan-75149
03/15/2021, 4:33 PMmagnificent-caravan-75149
03/15/2021, 4:34 PMbright-gpu-74537
03/15/2021, 4:47 PMbright-gpu-74537
03/15/2021, 4:48 PMmagnificent-caravan-75149
03/15/2021, 4:50 PMbright-gpu-74537
03/15/2021, 4:50 PMbright-gpu-74537
03/15/2021, 4:54 PMbright-gpu-74537
03/15/2021, 4:55 PMxml
<hbox>
<button text="Dont want event" />
<button id="theButton" text="The Button" />
<button text="Dont want event" />
<button text="Clear" onclick="status.text=''" />
<label id="status" text="" />
</hbox>bright-gpu-74537
03/15/2021, 4:55 PMbright-gpu-74537
03/15/2021, 4:55 PMhaxe
test1.onClick = function(e) {
test1.status.text = "clicked";
}bright-gpu-74537
03/15/2021, 4:55 PMbright-gpu-74537
03/15/2021, 4:56 PMmagnificent-caravan-75149
03/15/2021, 4:57 PMbright-gpu-74537
03/15/2021, 4:58 PMmagnificent-caravan-75149
03/15/2021, 5:03 PM<hbox id="lotSize" with lotSize.onClick but <custom-button /> with custom-button.onClick has an error with no field 'onClick'magnificent-caravan-75149
03/15/2021, 5:04 PMbright-gpu-74537
03/15/2021, 5:04 PMbright-gpu-74537
03/15/2021, 5:04 PMmagnificent-caravan-75149
03/15/2021, 5:04 PMbright-gpu-74537
03/15/2021, 5:04 PMmagnificent-caravan-75149
03/15/2021, 5:04 PMbright-gpu-74537
03/15/2021, 5:05 PMmagnificent-caravan-75149
03/15/2021, 5:07 PMpackage gui;
import haxe.ui.containers.HBox;
import haxe.ui.events.MouseEvent;
@:build(haxe.ui.macros.ComponentMacros.build("res/gui/indButton.xml",
{id: "gc_fun", icon: "images/icons/gc/gc_fun.png"} ))
class HudFunButton extends HBox {
public function new() {
super();
}
}magnificent-caravan-75149
03/15/2021, 5:07 PM<hbox style="horizontal-spacing: 0;">
<button id="${id}" icon="${icon}" styleName="ui" />
<image id="indicator" resource="images/icons/gc/arrow.png" height="32" width="5" />
</hbox>bright-gpu-74537
03/15/2021, 5:08 PMmagnificent-caravan-75149
03/15/2021, 5:09 PMbright-gpu-74537
03/15/2021, 5:09 PM