magnificent-caravan-75149
11/25/2020, 3:59 PMmagnificent-caravan-75149
11/25/2020, 4:00 PMbright-gpu-74537
11/25/2020, 4:01 PMmost-caravan-45834
11/25/2020, 4:36 PMError: Source path "C:/HaxeToolkit/haxe/lib/lime/git/ndll/Windows/lime.hdll" does not exist
And I have no idea where this path is coming from, but judging from the content it should be
C:/HaxeToolkit/haxe/lib/lime/git/ndll/Windows64/lime.hdllmost-caravan-45834
11/25/2020, 4:43 PMcastle: [1.6.1]
entithax: [git]
flixel-addons: 2.8.0 [2.9.0]
flixel-demos: [2.7.3]
flixel-studio: [git]
flixel-templates: [2.6.5]
flixel-tools: [1.4.4]
flixel-ui: 2.3.2 2.3.3 [git]
flixel: 4.7.0 [4.8.1]
format: [3.5.0]
haxe-utils: [git]
haxeui-core: 1.0.25 [git]
haxeui-flixel: 1.1.3 [git]
haxeui-openfl: [git]
hscript: [2.4.0]
hx3compat: [1.0.3]
hxbit: [1.5.0]
hxcpp-debug-server: 1.2.4 [dev:c:\Users\Guifes\.vscode\extensions\vshaxe.hxcpp-debugger-1.2.4\hxcpp-debug-server]
hxcpp: 4.1.1 [4.1.15]
hxjsonast: [1.0.1]
hxmath: 0.16.0 [0.18.0]
hxnodejs: [12.1.0]
hxp: [1.1.4]
json2object: [3.8.1]
lime-samples: [7.0.0]
lime-tools: [1.5.7]
lime: 7.7.0 7.8.0 [git]
openfl: 8.9.6 9.0.2 [git]
polygonal-core: [1.0.4]
polygonal-ds: [2.1.1]
polygonal-printf: [1.0.2-beta]
thx.core: [0.44.0]
tink_await: [0.6.0]
tink_core: 1.26.0 [2.0.0-rc.1]
tink_json: [0.10.5]
tink_macro: 0.19.1 0.19.3 [0.21.1]
tink_priority: [0.1.4]
tink_syntaxhub: [0.4.3]
tink_typecrawler: [0.7.0]powerful-morning-89
11/25/2020, 4:48 PM-32 to make it generate 32 bit lime.hdll
2. Use hashlink 1.10, 1.11 won't work as it's 64bit, and lime only bundles 32 bit hashlink.most-caravan-45834
11/25/2020, 4:49 PMmost-caravan-45834
11/25/2020, 5:05 PMmost-caravan-45834
11/25/2020, 5:19 PMlime build hl -clean -32most-caravan-45834
11/25/2020, 5:19 PMError: Source path "C:/HaxeToolkit/haxe/lib/lime/git/ndll/Windows/lime.hdll" does not existmost-caravan-45834
11/25/2020, 5:46 PMbright-gpu-74537
11/25/2020, 5:51 PMbright-gpu-74537
11/25/2020, 5:52 PMpowerful-morning-89
11/25/2020, 6:08 PMlime rebuild hl -32.
Or just swith back to 7.8.0 and add the dir with the hdll's to your path.powerful-morning-89
11/25/2020, 6:10 PMmost-caravan-45834
11/25/2020, 6:30 PMmost-caravan-45834
11/25/2020, 6:30 PMError: OutsideBounds
Called from ? line 1
Called from CommandLineTools.hx line 1895
Called from CommandLineTools.hx line 22
Called from a C function
Called from CommandLineTools.hx line 126
Called from CommandLineTools.hx line 641
Called from lime/tools/PlatformTarget.hx line 107
Called from WindowsPlatform.hx line 258
Called from lime/tools/IconHelper.hx line 189
Called from lime/tools/IconHelper.hx line 360
Called from lime/tools/ImageHelper.hx line 126
Uncaught exception - Invalid field access : bufferbright-gpu-74537
11/25/2020, 6:35 PMbright-gpu-74537
11/25/2020, 6:36 PMbright-gpu-74537
11/25/2020, 6:36 PMmost-caravan-45834
11/25/2020, 6:36 PMmost-caravan-45834
11/25/2020, 6:37 PMbright-gpu-74537
11/25/2020, 6:37 PMbright-gpu-74537
11/25/2020, 6:37 PMdry-hydrogen-97705
11/25/2020, 7:00 PMonchange event?bright-gpu-74537
11/25/2020, 7:03 PMxml
<slider onchange="trace(this.pos)" />
or
haxe
mySlider.onChange = function(e) { ... }
or
haxe
mySlider.registerEvent(UIEvent.CHANGE, function(e) { ... });dry-hydrogen-97705
11/25/2020, 7:04 PMdry-hydrogen-97705
11/25/2020, 8:18 PMhaxe
class SliderBuilder extends CompositeBuilder {
public override function create() {
if (_component.findComponent("range") == null) {
var v = createValueComponent();
v.scriptAccess = false;
v.id = "range";
v.addClass("slider-value");
v.start = v.end = 0;
_component.addComponent(v);
}
createThumb("end-thumb");
}
...
private function createValueComponent():Range {
return null;
}
I get a v is null type error, and createValueComponent always returns nullmost-caravan-45834
11/25/2020, 8:18 PMmost-caravan-45834
11/25/2020, 8:19 PM