tranquiliste opened a new issue #891:
URL: https://github.com/apache/royale-asjs/issues/891
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
I use the 0.9.7 release
Thanks for your help
*TestClass.as*
package application
{
import mx.core.Application;
public class TestClass extends Application
{
/**
* Constructeur
*/
public function TestClass()
{
super();
}
}
}
and my entry
*Test.mxml*
<appli:TestClass
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:appli="application.*"
xmlns:mx="library://ns.apache.org/royale/mx"
width="600" height="400" layout="horizontal">
<mx:VBox>
<mx:Label id="Toto" text="Toto"/>
</mx:VBox>
</appli:TestClass>
compile options
{
"compilerOptions": {
"targets": ["JSRoyale"],
"source-path": ["src"],
"source-map": true,
"library-path": [
"${royalelib}/js/libs/MXRoyaleJS.swc"
],
"js-library-path": [
"${royalelib}/js/libs/MXRoyaleJS.swc"
],
"html-output-filename": "TestBinding.html"
},
"mainClass": "TestBinding"
}
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]