Ludovic Bas

Results 37 comments of Ludovic Bas

@player-03 something like that? https://try.haxe.org/#9299BBA6 Sadly I don't know how to avoid `var t = p.toObject();` for the new way but old way use implicit cast

Oh I think I got it: https://try.haxe.org/#47279a34 ``` class Test { static function main() { var p:ADropFile = new ADropFile({path:"http://", type: "png", name: "plop"}); onOldDropFile(p); onDropFile(p); } static function onOldDropFile(p:String){...

Sadly I can't use an abstract in a lime event. It just doesn't work. So I propose to use the TDropFile typedef. I can still use a conditional to keep...

Sorry I'm currently in holyday so I'll answer when I'll be back.

Thanks for your answer. It seems that "center" or center give the same error : characters 28088-28094 : Unknown identifier : center characters 2-49 : Called from macro here

I've looked into the code. It seems that at first initialization all childs of the ListView has a height equal to 0. For now, to avoid this bug, I'm doing...

Thanks! So after executing `build-hl.hxml` I tried to execute Makefile.hl.ammer in the output directory with `nmake /F Makefile.hl.ammer` to create the **hdll** but it doesn't seem to work. Here are...

No it doesn't work. But I have warning when invoking haxe: ``` haxe -D ammer.hl.hlInclude=C:\Development\hl-1.11.0-win\include -D ammer.hl.hlLibrary=C:\Development\hl-1.11.0-win build-hl.hxml nmake [/f,Makefile.hl.ammer] Microsoft (R) Program Maintenance Utility Version 14.16.27030.1 Copyright (C) Microsoft...

Thank you for the details. I'll check this with Brashmonkey's if they can help on the best way to implement this.

I think I can implement this by only modifying the parsing on MainlineKey without doing anything else in the engine. I'm just waiting for some details from Brashmonkey's to avoid...