Andrew Frost

Results 919 comments of Andrew Frost

The best option might be to do some drive mappings or use VMs with shared folders so that you can just have your Windows set-up being able to access the...

We might be able to do that... are you able to zip up that linker output folder and upload it to the below? We can then post back an executable...

Thanks. Probably don't need to use the exact same AIR SDK version but it de-risks it in case there is some incompatibility or change (mostly in ADT I guess, so...

That extra option would need to come at the end, or at least, after the signing options... are you able to call it from the command-line and rework the order...

Did you get anything in the adt.log file?

Yes, that linkerscript needs to be generated to ignore the passed-in SDK and stubs location, and just output the default values per the changes we'd made manually. So 2x bugs...

Ah - yes, that definitely sounds like a symbolic link issue. There should be a way of fixing that, depending on how you copied it over. If you zipped it,...

Just to add some more details: - if the object is not null, and the method exists, this syntax works fine - if the object is not null, and the...

I think this may be a compiler issue. With a function: ``` private function testNullMethodCall(obj : Object) : void { obj?.test(); } ``` we get the bytecode: ``` 0 getlocal0...

So, we're able to fix this, by making the compiler take the right-hand token that could be a function call rather than just an identifier ... but, this exposes another...