惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
罗磊的独立博客
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI
云风的 BLOG
云风的 BLOG
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog
A
About on SuperTechFans
WordPress大学
WordPress大学
B
Blog
Martin Fowler
Martin Fowler
Jina AI
Jina AI
I
InfoQ
P
Proofpoint News Feed
小众软件
小众软件
S
SegmentFault 最新的问题
V
V2EX
B
Blog RSS Feed
量子位
大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
MongoDB | Blog
MongoDB | Blog
美团技术团队

博客园 - FireYang

blog搬家 AS3的png图片编码器 Flex的全局变量(原创翻译) 关于flex皮肤 设计模式 Adobe Flex 2: Training from the Source 电子书下载 欢迎加入RIA SEED ! as 3.0一百个小技巧 有趣的自制卡通软件 Flex 2.0.1中css的新用法 flex 资源 Advanced ActionScript 3 with Design Patterns 北京记事:老刘的珍贵礼物 一个n的flex组件(SpringGraph Flex Component) flex中datagrid中的过滤功能 一些常用的javascript函数(方法) Apollo测试通知登记 ms的小技巧 actionscript代码练习作品
能移动的RichTextEdit - FireYang - 博客园
FireYang · 2007-01-16 · via 博客园 - FireYang

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" height="100%">
    
<mx:Style>    
        TitleWindow    
        {        
                backgroundAlpha: 0.9;
                backgroundColor: #9199A4;        
                borderColor: #9199A4;        
                borderAlpha: 1.0;        
                borderStyle: "none";        
                borderThickness: 0;        
                paddingBottom: 0;        
                paddingLeft: 0;        
                paddingRight: 0;        
                paddingTop: 0;        
         }
     
</mx:Style>    
     
<mx:Script>
         
<![CDATA[    
             import mx.managers.*;    
             private function floatControlBar() : void    
             {        
                 rteControl.parent.removeChild(rteControl);        
                 rteControl.addChild(DisplayObject(rte.toolbar));        
                 rte.showControlBar=false;        
                 mx.managers.PopUpManager.addPopUp(rteControl, rte, false);    
             }
]]>
     
</mx:Script>    
     
<mx:RichTextEditor id="rte" htmlText="" headerHeight="5"         
         creationComplete
="floatControlBar()"/>    
    
<mx:TitleWindow id="rteControl" width="325" title="ToolBar"/>    
</mx:Application>