Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
Locked
0

What does FlexUnitCompilerApplication.mxml do?

New Here ,
Oct 22, 2009 Oct 22, 2009

FlexUnitCompilerApplication.mxml is generated by Flash Builder Beta 2, not sure why. It contains this code, which declares a variable but doesn't do anything else:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/halo" minWidth="1024" minHeight="768">   
<fx:Script>
    <![CDATA[

            import mainstreet.WidgetTest;

            private var mainstreet_WidgetTest_obj:mainstreet.WidgetTest;
    ]]>
</fx:Script>
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
</s:Application>

TOPICS
FlexUnit
1.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Oct 23, 2009 Oct 23, 2009
LATEST

It is just there way of ensuring that WidgetTest is linked into the SWF they execute.

Mike

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines