orange-van-60470
09/10/2022, 2:59 PMplain-portugal-5564
09/10/2022, 9:37 PMUpdate Project.xml and add . This will tell lime to process your gif files as binary, so you can load them via Assets.getBytes.
. However the stuff that's supposed to go in the XML is missing. Does anyone know what this attribute is?bulky-exabyte-6537
09/10/2022, 9:46 PM<assets path="assets">
maybe?plain-portugal-5564
09/10/2022, 9:51 PMbulky-exabyte-6537
09/10/2022, 9:52 PM<assets path="assets" type="binary">
perhaps?bulky-insurance-39338
09/11/2022, 9:26 PMmysterious-oil-14535
09/13/2022, 1:44 PMmysterious-oil-14535
09/13/2022, 1:44 PMelegant-twilight-61392
09/13/2022, 1:55 PMmysterious-oil-14535
09/13/2022, 1:59 PMmysterious-oil-14535
09/13/2022, 2:04 PMrhythmic-wolf-50922
09/13/2022, 2:04 PMmysterious-oil-14535
09/13/2022, 2:05 PMbulky-insurance-39338
09/13/2022, 2:05 PMhaxe
package;
import lime.app.Application;
import lime.ui.WindowAttributes;
import lime.ui.Window;
class Main extends Application
{
public function new () {
super ();
}
override public function createWindow(attributes:WindowAttributes):Window
{
trace("Hello World");
return null;
}
}
mysterious-oil-14535
09/13/2022, 2:05 PMmysterious-oil-14535
09/13/2022, 2:05 PMmysterious-oil-14535
09/13/2022, 2:06 PMhx
package;
import lime.ui.WindowAttributes;
import lime.app.Application;
class Main extends Application {
public function new() {
super();
trace("Init");
}
public override function createWindow(attributes:WindowAttributes) {
return null; //* Should never create window
}
}
mysterious-oil-14535
09/13/2022, 2:06 PMmysterious-oil-14535
09/13/2022, 2:07 PMbulky-insurance-39338
09/13/2022, 2:09 PMtink_cli
and together with the poor haxe-parts of your applicationbulky-insurance-39338
09/13/2022, 2:09 PMambitious-knife-25690
09/13/2022, 2:10 PMmysterious-oil-14535
09/13/2022, 2:10 PMmysterious-oil-14535
09/13/2022, 2:10 PMambitious-knife-25690
09/13/2022, 2:10 PMambitious-knife-25690
09/13/2022, 2:10 PMmysterious-oil-14535
09/13/2022, 2:10 PMambitious-knife-25690
09/13/2022, 2:10 PMmysterious-oil-14535
09/13/2022, 2:11 PMmysterious-oil-14535
09/13/2022, 2:11 PM