fixing bunches of stuff for html5, adding some html5 texture loading and html5 getText implementations, forwarding a lot more events from nme to host applications, adding some of the events from html5 forwarding as well, adding html5 compatible bytearrays

This commit is contained in:
underscorediscovery
2013-06-29 22:49:48 -02:30
parent 0ba5e04e6f
commit 6cc4631ada
14 changed files with 2139 additions and 895 deletions

View File

@@ -54,6 +54,30 @@ class Main {
}
//Called by lime
public function onmousemove(_event:Dynamic) {
// trace(_event);
}
//Called by lime
public function onkeydown(_event:Dynamic) {
trace(_event);
}
//Called by lime
public function onkeyup(_event:Dynamic) {
// trace(_event);
}
//Called by lime
public function onmousedown(_event:Dynamic) {
// trace(_event);
}
//Called by lime
public function onmouseup(_event:Dynamic) {
// trace(_event);
}
//Called by lime
public function render() {