Re: Issue when extending mx.Core.Application

2020-07-23 Thread Piotr Zarzycki
"], > > "html-template": "index-template.html", > > "js-compiler-option": [ > > "--skip_type_inference" > > ], > > "js-external-library-path": ["libs"], > >

RE: Issue when extending mx.Core.Application

2020-07-23 Thread Yishay Weiss
"js-compiler-option": [ "--skip_type_inference" ], "js-external-library-path": ["libs"], }, "copySourcePathAssets": true, "files": [ "src/Examples.mxml" ] } From: tranquiliste<mailto:nicolas.agut...@gm

Re: Issue when extending mx.Core.Application

2020-07-23 Thread tranquiliste
Hello Carlos, Thanks for your answer. I don't knwow which part o f the configuration may be faulty I am using Visual Studio Code as IDE and the BowlerHatLLC extension My compiler options is as followed { "compilerOptions": { "targets": ["JSRoyale"], "source-path": ["src"],

RE: Issue when extending mx.Core.Application

2020-07-23 Thread Yishay Weiss
Looks like a bug to me. Can you file it on GitHub [1]? [1] https://github.com/apache/royale-asjs/issues From: tranquiliste<mailto:nicolas.agut...@gmail.com> Sent: Wednesday, July 22, 2020 8:54 AM To: users@royale.apache.org<mailto:users@royale.apache.org> Subject: Issue wh

Re: Issue when extending mx.Core.Application

2020-07-22 Thread Carlos Rovira
Hi Nicolas, although I have 0 experience with emulation your class seems right to me. Maybe the problem is something else in your configuration or setup? El mié., 22 jul. 2020 a las 7:54, tranquiliste () escribió: > Hello all, > > I have a strange issue with my code. > > I have a class that

Issue when extending mx.Core.Application

2020-07-21 Thread tranquiliste
Hello all, I have a strange issue with my code. I have a class that extends mx.core.Application and which is use in my main mxml. It compiles without any error but do not displays anything. There must be somtething wrong but I can't see it Here is the code below Thanks for your help