锘??xml version="1.0" encoding="utf-8" standalone="yes"?>韩国一区二区三区视频,亚洲精品精品亚洲,国产精品午夜一区二区欲梦 http://www.aygfsteel.com/geminiyu/鏃犺亰鏁板瓧涓栫晫 zh-cn Fri, 20 Jun 2025 16:17:00 GMT Fri, 20 Jun 2025 16:17:00 GMT 60 [Flex]Flash Player debug鐗堟湰闂瑙e喅 http://www.aygfsteel.com/geminiyu/archive/2008/10/30/237539.html瀛ゅ獎 瀛ゅ獎 Thu, 30 Oct 2008 02:51:00 GMT http://www.aygfsteel.com/geminiyu/archive/2008/10/30/237539.html http://www.aygfsteel.com/geminiyu/comments/237539.html http://www.aygfsteel.com/geminiyu/archive/2008/10/30/237539.html#Feedback 0 http://www.aygfsteel.com/geminiyu/comments/commentRss/237539.html http://www.aygfsteel.com/geminiyu/services/trackbacks/237539.html 鍒犻櫎娉ㄥ唽琛ㄤ腑涔嬪墠瀹夎鐨勭増鏈褰曞氨鍙互浜?/span>
娉ㄥ唽琛?HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\FlashPlayer\SafeVersions
鍒犻櫎鏈楂樼増鏈殑閿?
]]>[Flex]ToolTip鍜屽嚭閿欎俊鎭瓧浣撴敼鍙?/title> http://www.aygfsteel.com/geminiyu/archive/2008/10/29/237400.html瀛ゅ獎 瀛ゅ獎 Wed, 29 Oct 2008 08:24:00 GMT http://www.aygfsteel.com/geminiyu/archive/2008/10/29/237400.html http://www.aygfsteel.com/geminiyu/comments/237400.html http://www.aygfsteel.com/geminiyu/archive/2008/10/29/237400.html#Feedback 0 http://www.aygfsteel.com/geminiyu/comments/commentRss/237400.html http://www.aygfsteel.com/geminiyu/services/trackbacks/237400.html
1 <mx:Style>
2 .errorTip { } {
3 fontSize: 12 ;
4 }
5 TooleTip{ } {
6 font-size=12pt;
7 }
8
9 </mx:Style>
10
11
]]> [Flex]鐩稿唽 http://www.aygfsteel.com/geminiyu/archive/2008/10/28/236999.html瀛ゅ獎 瀛ゅ獎 Mon, 27 Oct 2008 16:58:00 GMT http://www.aygfsteel.com/geminiyu/archive/2008/10/28/236999.html http://www.aygfsteel.com/geminiyu/comments/236999.html http://www.aygfsteel.com/geminiyu/archive/2008/10/28/236999.html#Feedback 3 http://www.aygfsteel.com/geminiyu/comments/commentRss/236999.html http://www.aygfsteel.com/geminiyu/services/trackbacks/236999.html
Source:鐐規垜涓嬭澆
]]>[Flex]璁劇疆Alert鐨勫搷搴旂瓑寰呮椂闂?/title> http://www.aygfsteel.com/geminiyu/archive/2008/10/28/236996.html瀛ゅ獎 瀛ゅ獎 Mon, 27 Oct 2008 16:21:00 GMT http://www.aygfsteel.com/geminiyu/archive/2008/10/28/236996.html http://www.aygfsteel.com/geminiyu/comments/236996.html http://www.aygfsteel.com/geminiyu/archive/2008/10/28/236996.html#Feedback 1 http://www.aygfsteel.com/geminiyu/comments/commentRss/236996.html http://www.aygfsteel.com/geminiyu/services/trackbacks/236996.html 1 <? xml version="1.0" encoding="utf-8" ?>
2 <!-- http://blog.flexexamples.com/2008/10/17/disabling-an-alert-control-in-flex/ -->
3 < mx:Application name ="Alert_enabled_test"
4 xmlns:mx="http://www.adobe.com/2006/mxml"
5 layout="vertical"
6 verticalAlign="middle"
7 backgroundColor="white" >
8
9 < mx:Script >
10 <![CDATA[
11 import mx.events.FlexEvent;
12 import mx.utils.ObjectUtil;
13 import mx.controls.Alert;
14 import mx.managers.PopUpManager;
15
16 private const ENABLE_DELAY:uint = 3000; // 3 縐?br />
17 private var a:Alert;
18
19 private function showAlert():void {
20 a = Alert.show("You have been logged out.", "Goodbye");
21 toggleButtons(a, false);
22 setTimeout(enableAlert, ENABLE_DELAY, a);
23 }
24
25 private function enableAlert(target:Alert):void {
26 toggleButtons(target, true);
27 }
28
29 private function toggleButtons(target:Alert, isEnabled:Boolean):void {
30 var buttonArr:Array = target.mx_internal::alertForm.mx_internal::buttons;
31 var btn:Button;
32 for each (btn in buttonArr) {
33 btn.enabled = isEnabled;
34 }
35 }
36 ]]>
37 </ mx:Script >
38
39 < mx:Button id ="button"
40 label="Logout"
41 click="showAlert();" />
42
43 </ mx:Application >
鏁堟灉濡備笅錛?br />
]]> [Flex]鍒╃敤FileReference鏉ヨ繃婊ょ壒瀹氬悗緙鍚嶆枃浠?/title> http://www.aygfsteel.com/geminiyu/archive/2008/10/27/236815.html瀛ゅ獎 瀛ゅ獎 Mon, 27 Oct 2008 02:42:00 GMT http://www.aygfsteel.com/geminiyu/archive/2008/10/27/236815.html http://www.aygfsteel.com/geminiyu/comments/236815.html http://www.aygfsteel.com/geminiyu/archive/2008/10/27/236815.html#Feedback 0 http://www.aygfsteel.com/geminiyu/comments/commentRss/236815.html http://www.aygfsteel.com/geminiyu/services/trackbacks/236815.html 1 <? xml version="1.0" ?>
2 < mx:Application xmlns:mx ="http://www.adobe.com/2006/mxml" >
3 < mx:Script >
4 <![CDATA[
5 private var oneFileFileFilter:FileFilter = new FileFilter("sample.pdf", "sample.pdf");
6 private var pdfFileFileFilter:FileFilter = new FileFilter("PDF Files", "*.pdf");
7
8 private function oneFile():void{
9 var fileRef:FileReference = new FileReference();
10 fileRef.browse([oneFileFileFilter]);
11 }
12
13 private function pdfFiles():void{
14 var fileRef:FileReference = new FileReference();
15 fileRef.browse([pdfFileFileFilter]);
16 }
17 ]]>
18 </ mx:Script >
19 < mx:Button label ="One File - sample.pdf" click ="oneFile()" />
20 < mx:Button label ="All pdf Files" click ="pdfFiles()" />
21 </ mx:Application >
22
23
]]> [Flex]鍒╃敤PopUpManger鍒涘緩寮瑰嚭Image鎺т歡 http://www.aygfsteel.com/geminiyu/archive/2008/10/27/236811.html瀛ゅ獎 瀛ゅ獎 Mon, 27 Oct 2008 02:26:00 GMT http://www.aygfsteel.com/geminiyu/archive/2008/10/27/236811.html http://www.aygfsteel.com/geminiyu/comments/236811.html http://www.aygfsteel.com/geminiyu/archive/2008/10/27/236811.html#Feedback 0 http://www.aygfsteel.com/geminiyu/comments/commentRss/236811.html http://www.aygfsteel.com/geminiyu/services/trackbacks/236811.html
1 <? xml version="1.0" encoding="utf-8" ?>
2 < mx:Application xmlns:mx ="http://www.adobe.com/2006/mxml"
3 layout="vertical"
4 verticalAlign="middle"
5 backgroundColor="white" >
6
7 < mx:Style >
8 global {
9 modalTransparencyBlur: 0;
10 modalTransparency: 0.9;
11 modalTransparencyColor: black;
12 modalTransparencyDuration: 500;
13 }
14 </ mx:Style >
15
16 < mx:Script >
17 <![CDATA[
18 import mx.controls.Image;
19 import mx.managers.PopUpManager;
20
21 private const IMG_PREFIX:String = "http://www.helpexamples.com/flash/images/";
22
23 private function popIt(src:String):void {
24 var img:Image = new Image();
25 img.addEventListener(MouseEvent.CLICK, img_click);
26 img.addEventListener(Event.COMPLETE, img_complete);
27 img.load(IMG_PREFIX + src);
28 img.toolTip = img.source.toString();
29 PopUpManager.addPopUp(img, this, true);
30 }
31
32 private function img_complete(evt:Event):void {
33 var img:Image = evt.currentTarget as Image;
34 img.width = img.contentWidth;
35 img.height = img.contentHeight;
36 PopUpManager.centerPopUp(img);
37 }
38
39 private function img_click(evt:MouseEvent):void {
40 var img:Image = evt.currentTarget as Image;
41 PopUpManager.removePopUp(img);
42 }
43 ]]>
44 </ mx:Script >
45
46 < mx:ApplicationControlBar dock ="true" >
47 < mx:Button label ="image 1" click ="popIt('image1.jpg');" />
48 < mx:Button label ="image 2" click ="popIt('image2.jpg');" />
49 < mx:Button label ="image 3" click ="popIt('image3.jpg');" />
50 </ mx:ApplicationControlBar >
51
52 </ mx:Application >
53
]]> 鍏充簬WEB搴旂敤紼嬪簭鐨勫紑鍙戝墠鍙頒笌鍚庡彴 http://www.aygfsteel.com/geminiyu/archive/2008/10/26/236751.html瀛ゅ獎 瀛ゅ獎 Sun, 26 Oct 2008 13:04:00 GMT http://www.aygfsteel.com/geminiyu/archive/2008/10/26/236751.html http://www.aygfsteel.com/geminiyu/comments/236751.html http://www.aygfsteel.com/geminiyu/archive/2008/10/26/236751.html#Feedback 0 http://www.aygfsteel.com/geminiyu/comments/commentRss/236751.html http://www.aygfsteel.com/geminiyu/services/trackbacks/236751.html 鏈韓鏄仛Java Web Appliction鐨勶紝璋佺煡閬撴崲浜嗕釜鍩庡競闅忎箣鑰屾潵鐨勪篃鎹簡宸ョ錛屽仛璧鋒潵鍓嶅彴浜嗭紝Flex...鏂頒笢瑗匡紝鐪嬩簡3澶╁畼鏂筊eference澶村ぇ錛屽張瑕佽鏂扮殑API浜嗐傜畻浜嗭紝鑷垜瀹夋叞涓嬶紝瀵逛簬Flex鐨勫墠鏅繕綆椾笉閿欑殑錛屾湭鏉ラ殢鐫緗戦熺殑鎷撳錛孎lex緇堢┒浼氱О涓轟富嫻佺殑錛屽氨褰撴槸鏂版椂浠f潵涓村墠鐨勭(緇冨惂錛屽姫鍔涗笅璁╄嚜宸卞鐔熸倝鐐逛笢瑗挎湁浠涔堜笉濂姐傚姞娌瑰惂~
]]>
主站蜘蛛池模板:
东山县 |
夹江县 |
昆山市 |
溆浦县 |
丹寨县 |
钟祥市 |
台中市 |
南召县 |
西乌珠穆沁旗 |
镇坪县 |
宽城 |
海盐县 |
高唐县 |
财经 |
交口县 |
肇州县 |
东阳市 |
海盐县 |
和林格尔县 |
平湖市 |
固镇县 |
邮箱 |
彰化县 |
峨眉山市 |
宜君县 |
南城县 |
娱乐 |
泸溪县 |
静乐县 |
新丰县 |
杭锦旗 |
汽车 |
梅州市 |
张家川 |
周口市 |
纳雍县 |
新源县 |
瑞安市 |
安阳市 |
宁远县 |
洛川县 |