bright-gpu-74537
03/12/2021, 10:07 PMbright-gpu-74537
03/12/2021, 10:08 PMbright-gpu-74537
03/12/2021, 10:08 PMbright-gpu-74537
03/12/2021, 10:09 PMmagnificent-caravan-75149
03/12/2021, 10:10 PM// this area is for the bindings for the components
@:bind(gc_lot, MouseEvent.CLICK)
@:bind(gc_fun, MouseEvent.CLICK)
@:bind(gc_money, MouseEvent.CLICK)
@:bind(gc_opts, MouseEvent.CLICK)magnificent-caravan-75149
03/12/2021, 10:10 PMbright-gpu-74537
03/12/2021, 10:11 PMbright-gpu-74537
03/12/2021, 10:11 PMmagnificent-caravan-75149
03/12/2021, 10:11 PMbright-gpu-74537
03/12/2021, 10:11 PMbright-gpu-74537
03/12/2021, 10:12 PMhaxe
@:bind(myButton, MouseEvent.CLICK)
private function doIt(e:MouseEvent) {
myButton.text = "World";
}
@:bind(myOtherButton, MouseEvent.CLICK)
private function doOtherThing(e:MouseEvent) {
myOtherButton.text = "World";
}bright-gpu-74537
03/12/2021, 10:13 PMbright-gpu-74537
03/12/2021, 10:14 PMhaxe
@:bind(myButton, MouseEvent.CLICK)
@:bind(myOtherButton, MouseEvent.CLICK)
private function doOtherThing(e:MouseEvent) {
switch (e.target.id) {
...
}
}bright-gpu-74537
03/12/2021, 10:14 PMbright-gpu-74537
03/12/2021, 10:14 PMmagnificent-caravan-75149
03/12/2021, 10:16 PMbright-gpu-74537
03/12/2021, 10:17 PMbright-gpu-74537
03/12/2021, 10:17 PMmagnificent-caravan-75149
03/12/2021, 10:18 PMmagnificent-caravan-75149
03/12/2021, 10:18 PMbright-gpu-74537
03/12/2021, 10:18 PMbright-gpu-74537
03/12/2021, 10:19 PMbright-gpu-74537
03/12/2021, 10:20 PMhaxe
@:bind(myButton, MouseEvent.CLICK)
private function doIt(e:MouseEvent) {
doAllTheThings("thing1");
}
@:bind(myOtherButton, MouseEvent.CLICK)
private function doOtherThing(e:MouseEvent) {
doAllTheThings("thing2");
}bright-gpu-74537
03/12/2021, 10:20 PMmagnificent-caravan-75149
03/12/2021, 10:27 PM// this area is for the bindings for the components
@:bind(gc_lot, MouseEvent.CLICK)
@:bind(gc_fun, MouseEvent.CLICK)
@:bind(gc_money, MouseEvent.CLICK)
@:bind(gc_opts, MouseEvent.CLICK)
function processClick(e:MouseEvent) {
switch(e.target.id) {
case "gc_lot":
trace("gc_lot Button clicked");
case "gc_fun":
trace("gc_fun Button clicked");
default:
trace("other");
};
}magnificent-caravan-75149
03/12/2021, 10:28 PMbright-gpu-74537
03/12/2021, 10:28 PMbright-gpu-74537
03/12/2021, 10:28 PMbright-gpu-74537
03/12/2021, 10:29 PMmagnificent-caravan-75149
03/12/2021, 10:29 PM