<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()" width="605" height="376" backgroundImage="{bg}">
    
<mx:Script>
        
<![CDATA[
            [Bindable]
            [Embed(source="/assets/srcImg.jpg")]
            private var bg:Class;
            
            [Bindable]
            private var filter:DropShadowFilter = new DropShadowFilter(5,5);
            
            private function init():void{
                
                label1.setStyle("fontSize",50);
            }
            
        
]]>
    
</mx:Script>
    
<mx:Label id="label1" x="35" y="79" text="Label" filters="{[filter]}"/>
</mx:WindowedApplication>

相关文章:

  • 2021-08-12
  • 2022-02-08
  • 2022-12-23
  • 2022-12-23
  • 2021-08-28
  • 2021-05-24
  • 2021-12-30
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-19
  • 2021-05-20
  • 2022-12-23
相关资源
相似解决方案