Closed GoogleCodeExporter closed 9 years ago
thank you, I will verify
Original comment by ionel.alexandru@gmail.com
on 22 Oct 2010 at 5:06
Have the same issue when I create just a basic project.
The application have just a button to open a popup which only contain
mathmlEditor.
When I open the popup, it crash.
The popup only contain :
<?xml version="1.0" encoding="utf-8"?>
<mx:Panel xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
width="400" height="300" xmlns:fmath="http://www.fmath.info"
creationComplete="init();">
<mx:Script>
<![CDATA[
protected function initEditor():void
{
editorId.setConfiguration("defaultFont", "fraktur");
editorId.setConfiguration("defaultFontSize", "40");
editorId.setConfiguration("defaultBold", "true");
editorId.setConfiguration("defaultItalic", "true");
editorId.setConfiguration("defaultForegroundColor", "red");
//editorId.disableToolbar("toolbar_top1", "true");
//editorId.disableButton("toolbar_Equation1", "true");
}
protected function saveImageToServer(event:MouseEvent):void
{
editorId.saveImageOnServer(null);
}
]]>
</mx:Script>
<fmath:MathMLEditor id="editorId" editorWidth="800" editorHeight="500" initialize="initEditor()">
<fmath:mathML><![CDATA[<mrow><mtext>abc</mtext></mrow>]]></fmath:mathML>
</fmath:MathMLEditor>
</mx:Panel>
I juste do a PopUpManager.addPopUp.
Thank's
Tuan
Original comment by tantuan....@gmail.com
on 25 Oct 2010 at 9:29
Original comment by ionel.alexandru@gmail.com
on 3 Nov 2010 at 6:41
Original issue reported on code.google.com by
tantuan....@gmail.com
on 22 Oct 2010 at 3:08