锘??xml version="1.0" encoding="utf-8" standalone="yes"?>国产成人精品999在线观看,欧美精品一二三区,麻豆国产在线播放http://www.aygfsteel.com/geminiyu/category/35520.html鏃犺亰鏁板瓧涓栫晫zh-cnThu, 30 Oct 2008 03:07:16 GMTThu, 30 Oct 2008 03:07:16 GMT60- [Flex]Flash Player debug鐗堟湰闂瑙e喅http://www.aygfsteel.com/geminiyu/archive/2008/10/30/237539.html瀛ゅ獎瀛ゅ獎Thu, 30 Oct 2008 02:51:00 GMThttp://www.aygfsteel.com/geminiyu/archive/2008/10/30/237539.htmlhttp://www.aygfsteel.com/geminiyu/comments/237539.htmlhttp://www.aygfsteel.com/geminiyu/archive/2008/10/30/237539.html#Feedback0http://www.aygfsteel.com/geminiyu/comments/commentRss/237539.htmlhttp://www.aygfsteel.com/geminiyu/services/trackbacks/237539.html鍒犻櫎娉ㄥ唽琛ㄤ腑涔嬪墠瀹夎鐨勭増鏈褰曞氨鍙互浜?/span>
娉ㄥ唽琛?HKEY_LOCAL_MACHINE\SOFTWARE\Macromedia\FlashPlayer\SafeVersions
鍒犻櫎鏈楂樼増鏈殑閿?

]]>- [Flex]璁劇疆Alert鐨勫搷搴旂瓑寰呮椂闂?/title>http://www.aygfsteel.com/geminiyu/archive/2008/10/28/236996.html瀛ゅ獎瀛ゅ獎Mon, 27 Oct 2008 16:21:00 GMThttp://www.aygfsteel.com/geminiyu/archive/2008/10/28/236996.htmlhttp://www.aygfsteel.com/geminiyu/comments/236996.htmlhttp://www.aygfsteel.com/geminiyu/archive/2008/10/28/236996.html#Feedback0http://www.aygfsteel.com/geminiyu/comments/commentRss/236996.htmlhttp://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
<
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 GMThttp://www.aygfsteel.com/geminiyu/archive/2008/10/27/236815.htmlhttp://www.aygfsteel.com/geminiyu/comments/236815.htmlhttp://www.aygfsteel.com/geminiyu/archive/2008/10/27/236815.html#Feedback0http://www.aygfsteel.com/geminiyu/comments/commentRss/236815.htmlhttp://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 GMThttp://www.aygfsteel.com/geminiyu/archive/2008/10/27/236811.htmlhttp://www.aygfsteel.com/geminiyu/comments/236811.htmlhttp://www.aygfsteel.com/geminiyu/archive/2008/10/27/236811.html#Feedback0http://www.aygfsteel.com/geminiyu/comments/commentRss/236811.htmlhttp://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

]]>
主站蜘蛛池模板:
洛隆县|
冀州市|
遂川县|
元阳县|
新建县|
定远县|
张家港市|
广饶县|
长顺县|
土默特左旗|
大埔区|
花莲县|
株洲市|
蒙自县|
张掖市|
海淀区|
澎湖县|
治多县|
临洮县|
泸定县|
洞口县|
虎林市|
藁城市|
横山县|
甘肃省|
吉水县|
大理市|
海门市|
伊宁县|
神农架林区|
韶关市|
邢台县|
桂阳县|
阿荣旗|
济源市|
砚山县|
南江县|
乐东|
林甸县|
凌源市|
韶山市|