bright-gpu-74537
12/26/2022, 5:50 PMrefined-laptop-39041
12/26/2022, 5:50 PMbright-gpu-74537
12/26/2022, 5:50 PMfull-journalist-82607
12/26/2022, 5:54 PMFirst attested in 1683, as a name applied disparagingly by Dutch settlers in Nieuw Amsterdam (New York) to English colonists in neighboring Connecticut. It may be from Dutch Janke (βLittle Johnβ), the old diminutive form of the common personal name Jan, or it may be from Jan Kees, the familiar form of "Johan Cornelius", or a variant of Jan Kaas, literally "John Cheese", the generic nickname the Flemings used for Dutchmen. It originally seems to have been applied insultingly to the Dutch, especially freebooters, before they turned around and applied it to the English. In English it was a term of contempt (1750s) before it came to be used as a general term for "a native of New England" (1765). The shortened form Yank was first recorded in reference to "an American" in 1778. James Fenimore Cooper suggested that it was a corruption of "English" via the intermediate form "Yengeese."
full-journalist-82607
12/26/2022, 6:07 PMbright-gpu-74537
12/26/2022, 6:14 PMfull-journalist-82607
12/26/2022, 6:18 PMhaxe
@:xml('
<hbox width="100%" height="100%">
<hbox width="25%" height="100%" backgroundColor = "0xFF0000">
</hbox>
<hbox width="25%" height="100%" backgroundColor = "0x00FF00">
</hbox>
<textarea id="textArea" width="25%" height="100%" />
<hbox id="lbox" width="25%" height="20%" backgroundColor = "0x00FFFF">
</hbox>
</hbox>')
class A006 extends HBox {
public function new() {
super();
}
@:bind(this, MouseEvent.CLICK)
private function leftclick(e) {
trace("left click");
}
@:bind(this, MouseEvent.RIGHT_CLICK)
private function rightclick(e) {
trace("right click"); // doesn't work
}
@:bind(textArea, MouseEvent.CLICK)
private function leftclickA(e) {
trace("left click text area");
}
@:bind(textArea, MouseEvent.RIGHT_CLICK)
private function rightclickA(e) {
trace("right click textarea"); // doesn't work
}
@:bind(lbox, MouseEvent.CLICK)
private function leftclickB(e) {
trace("left click text box");
}
@:bind(lbox, MouseEvent.RIGHT_CLICK)
private function rightclickB(e) {
trace("right click box"); //works
}
}
full-journalist-82607
12/26/2022, 6:19 PMbright-gpu-74537
12/26/2022, 6:21 PMfierce-soccer-8550
12/26/2022, 9:15 PMrefined-laptop-39041
12/27/2022, 12:26 AMambitious-knife-25690
12/27/2022, 12:35 AMambitious-knife-25690
12/27/2022, 12:36 AMambitious-knife-25690
12/27/2022, 1:58 AMstraight-insurance-13961
12/27/2022, 2:09 AMstraight-insurance-13961
12/27/2022, 2:09 AMrefined-laptop-39041
12/27/2022, 2:51 AMpurple-businessperson-14467
12/27/2022, 8:56 PMbright-gpu-74537
12/27/2022, 8:58 PMfamous-alarm-22563
12/27/2022, 9:07 PMbright-gpu-74537
12/27/2022, 9:11 PMpurple-businessperson-14467
12/27/2022, 10:54 PMbright-gpu-74537
12/28/2022, 7:58 AMbright-gpu-74537
12/28/2022, 7:59 AMbright-gpu-74537
12/28/2022, 9:43 AMbright-gpu-74537
12/28/2022, 9:45 AMbright-gpu-74537
12/28/2022, 9:46 AMbright-gpu-74537
12/28/2022, 10:18 AMbright-gpu-74537
12/28/2022, 10:19 AMhaxe
@:bind(this, MouseEvent.RIGHT_CLICK)
private function rightclick(e:MouseEvent) {
trace("right click main");
e.cancel();
var menu = new MainMenu();
menu.show();
}
@:bind(textArea, MouseEvent.RIGHT_CLICK)
private function rightclickA(e:MouseEvent) {
trace("right click textarea");
e.cancel();
var menu = new TextFieldMenu();
menu.show();
}
@:bind(redBox, MouseEvent.RIGHT_CLICK)
private function rightclickRed(e:MouseEvent) {
trace("right click redBox");
e.cancel();
var menu = new RedMenu();
menu.show();
}
@:bind(blueBox, MouseEvent.RIGHT_CLICK)
private function rightclickBlue(e:MouseEvent) {
trace("right click blueBox");
e.cancel();
var menu = new BlueMenu();
menu.show();
}
bright-gpu-74537
12/28/2022, 10:19 AMhaxe
@:xml('
<menu>
<menu-item text="Text field menu 1" />
<menu-item text="Text field menu 2" />
<menu-item text="Text field menu 3" />
</menu>
')
class TextFieldMenu extends Menu {}