topical media & game development
[] readme course(s) preface I 1 2 II 3 4 III 5 6 7 IV 8 9 10 V 11 12 afterthought(s) appendix reference(s) example(s) resource(s) _

talk show tell print

professional-flex-code-21-Main.mx

professional-flex-code-21-Main.mx (swf ) [ flash ]


  <?xml version="1.0" encoding="utf-8"?>
  <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
          xmlns:business="com.wiley.proflex2.chapter21.business.*"
          xmlns:view="com.wiley.proflex2.chapter21.view.*"
          xmlns:control="com.wiley.proflex2.chapter21.control.*">
          
          <mx:Style>
                  
                  Application
                  {
                          backgroundColor: #000000;
                  }
                  
                  Label
                  {
                          fontFamily: Arial;
                          fontSize: 11;
                  }
                  
                  Button, ComboBox
                  {
                          highlightAlphas: 0.37, 0.73;
                          fillAlphas: 0.6, 0.53, 0.88, 0.63;
                          borderColor: #EEEEEE;
                          themeColor: #0099cc;
                          cornerRadius: 3;
                  }
                  
                  LinkButton
                  {
                          color: #FFFFFF;
                          borderStyle: solid;
                          borderColor: #FFFFFF;
                  }
                  
                  black-face
                  {
                      src: url(assets/fonts/arial_fonts.swf);
                      fontFamily: Arial;
                  }
                  
                  black-face
                  {
                      src: url(assets/fonts/arial_fonts.swf);
                      fontFamily: Arial;
                      fontWeight: bold;
                  }
                  
          </mx:Style>
          
          <!-- ========================================================================== -->
          
          <!-- the ServiceLocator where we specify the remote services -->
          <business:Services id="loginServices" />
          
          <!-- the FrontController, containing Commands specific to this appliation -->
          <control:ApplicationController id="controller" />
          
          <!-- ========================================================================== -->
          
          <view:MainView />
          
  </mx:Application>
  


(C) A. Eliëns 2/9/2007

You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.