handsome-processor-40961
11/02/2020, 9:51 PMhandsome-processor-40961
11/02/2020, 9:57 PMhandsome-processor-40961
11/02/2020, 9:57 PMhandsome-processor-40961
11/02/2020, 9:57 PMhandsome-processor-40961
11/02/2020, 9:58 PMhandsome-processor-40961
11/02/2020, 9:58 PMbright-gpu-74537
11/02/2020, 9:59 PMhandsome-processor-40961
11/02/2020, 10:00 PMhandsome-processor-40961
11/02/2020, 10:02 PMhandsome-processor-40961
11/02/2020, 10:02 PMbright-gpu-74537
11/02/2020, 10:03 PMhandsome-processor-40961
11/02/2020, 10:04 PMdry-hydrogen-97705
11/02/2020, 10:25 PMhaxe
package client;
import haxe.ui.containers.HBox;
@:xml('
<hbox style="padding:5px;">
<dropdown text="Select Item">
<data>
<item text="Item 1" />
<item text="Item 2" />
<item text="Item 3" />
<item text="Item 4" />
<item text="Item 5" />
<item text="Item 6" />
<item text="Item 7" />
<item text="Item 8" />
<item text="Item 9" />
</data>
</dropdown>
<dropdown text="Select Date" type="date" />
</hbox>')
class TestComponent extends HBox
{
public function new(x:Int, y:Int)
{
super();
// this.left = x;
// this.top = y;
this.updateHitbox();
}
}dry-hydrogen-97705
11/02/2020, 10:26 PMbright-gpu-74537
11/02/2020, 10:27 PMdry-hydrogen-97705
11/02/2020, 10:44 PMbright-gpu-74537
11/02/2020, 11:12 PMbright-gpu-74537
11/02/2020, 11:13 PMbright-gpu-74537
11/02/2020, 11:14 PMdry-hydrogen-97705
11/03/2020, 12:19 AMbright-gpu-74537
11/03/2020, 6:15 AMbright-gpu-74537
11/03/2020, 6:25 AMbright-gpu-74537
11/03/2020, 6:25 AMbright-gpu-74537
11/03/2020, 8:29 AMbright-gpu-74537
11/03/2020, 8:29 AMbright-gpu-74537
11/03/2020, 8:30 AMbright-gpu-74537
11/03/2020, 8:33 AMbright-gpu-74537
11/03/2020, 9:03 AMbright-gpu-74537
11/03/2020, 9:04 AMhtml
<style>
#outlineText1 {
filter: outline;
color: white;
}
#outlineText2 {
filter: outline(#880000);
color: red;
}
#outlineText3 {
filter: outline(#000088, 3);
color: blue;
font-size: 20px;
}
</style>
<vbox>
<label id="outlineText1" text="Outline 1" />
<label id="outlineText2" text="Outline 2" />
<label id="outlineText3" text="Outline 3" />
<label text="Outline 4" style="filter: outline(black, 2);color: yellow;font-size: 20px;" />
</vbox>bright-gpu-74537
11/03/2020, 9:04 AM