Flex flex-config.xml

Flex/Flex 1.5 2009. 2. 22. 22:28





 




    

         

    false


    

    

        

        true


        

        

        true


        

        

        true


        

        

        false


        

        false


        

        

        true


        

        

        false


        

        false


        

        true


        

        false


        

        false


        

        false


        

        true


        

        true


        false

    


    

        


        

        /WEB-INF/flex/global.css


        

        

        false


        

        

        


        

        false


        

        

            

                /WEB-INF/flex/mxml-manifest.xml

            

                    


        

        

            /WEB-INF/flex/user_classes

            /WEB-INF/flex/Brady_classes

        


        

        

        /WEB-INF/flex/system_classes


        

        

        

        

            /WEB-INF/flex/frameworks

            /WEB-INF/flex/user_classes

        


        

        

        

        

            /WEB-INF/flex/frameworks_debug

        


        

        

    


    

        

        

        

        true


        

        true


        

        500


        

        500


        

        1


        

        

        1

    


    

        

        true


        


        

        7


        

        0


        

        14


        

        

        true


        

        {context.root}/flex-internal/detection-kit/upgrade_flash/upgrade_flash.html

        {context.root}/flex-internal/secure/detection-kit/upgrade_flash/upgrade_flash.html


        

        http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab

        https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab


        

        http://www.macromedia.com/go/getflashplayer

        https://www.macromedia.com/go/getflashplayer

    




    

        


        

        client


        

        {context.root}/flashproxy

        

        

        {context.root}/flashproxy

  

        

        false


        

        false


        

        

        

            

            

                http://{localserver}/*

                https://{localserver}/*

                http://www.xmethods.net/sd/2001/TemperatureService.wsdl

                http://services.xmethods.net:80/soap/*

                

                

            

            


            


                

                    {context.root}/services/CatalogWS?wsdl

                    

                        {context.root}/services/CatalogWS

                    

                    true

                    false

                


                

                    {context.root}/services/EmployeeWS?wsdl

                    

                        {context.root}/services/EmployeeWS

                    

                    true

                    false

                


                

                    {context.root}/services/SalaryWS?wsdl

                    

                        {context.root}/services/SalaryWS

                    

                    true

                    false

                


            


        


    




    

        


        

        client


        


        

        {context.root}/flashproxy

        

        

        {context.root}/flashproxy


        

        false


        

        false


        

        


        

            

            

                http://{localserver}/*

                https://{localserver}/*

                http://www.markme.com/*

                http://theserverside.com/rss/*

                http://www.klynch.com/*

                http://www.infoworld.com/rss/*

                http://news.bbc.co.uk/rss/*

                

                

            


            

            

                

                

                

                    

                    /samples/employeeService

                    

                    

                    true

                    

                    

                    false

                


                

                    {context.root}/explorer/data/employees.jsp

                    true

                    false

                


            


        

    


    

        


        

        

        

        {context.root}/amfgateway

        

        

        {context.root}/amfgateway




        

        

        {context.root}/flex-ws/FlexRemoteObjectService

        

        

        {context.root}/flex-ws/FlexRemoteObjectService

             

        

        false


        

        

        

            

            

                samples.*

                samples

                *

            

            

            

            


                

                    samples.explorer.EmployeeManager

                    stateful-class

                    false

                    true

                


                

                    samples.explorer.SalaryManager

                    stateful-class

                    true

                    false

                


            


        

    


    

        

        

            

            true

            

            

            info

        


        

        

            

            true

            

            

            info

            

            

            

            /WEB-INF/flex/logs/flex.log

            

            

            200KB

            

            

            3

        

    


    

    

        

        20

        

        

        1000


        

            

   

            

            

                en

                U+0020-U+007E

            

        

    





 


posted by 느릅나무™

Flex interval 살리고 죽이기

Flex/Flex 1.5 2009. 2. 22. 22:26
var obj = new Object();              // interval을 돌리기 위한 Object
var interval:Number = 0;            // interval을 담는 변수   

obj.interval = function() {          // interval 될 함수 
   _root.MRE0300s.mreDBRO.getSelectList(sType, sItem, sLine);   // Java함수 호출
}

clearInterval( interval );         // 기존의 돌고있는 interval을 죽인다.

interval = setInterval( obj, "interval",5000);    
posted by 느릅나무™

Flex DateField Default 값 Setting

Flex/Flex 1.5 2009. 2. 22. 22:23
var day:Date = new Date();
day.getDate();
dateSelect.selectedDate= new Date (day.getFullYear(),day.getMonth(),day.getDate()); 
or
dateSelect.selectedDate = new Date();
posted by 느릅나무™