Bonjour,
je n'ai pas réussi à donner un effet fade à l'objet Application de mon programme:
Merci poru le coup de main
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" usePreloader="false" mouseDown="stage.nativewindow.startMove()" layout="absolute" width="304" height="527" alpha="0" creationComplete="init()"> <mx:Script> <![CDATA[ private function init():void { application.setStyle("showEffect",fade) } ]]> </mx:Script> <mx:Fade id="fade" duration="1000" /> </mx:Application>
Partager