I have found several solutions for this,but non of those solutions work for me.Can someone help me with this please. here is my code :
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" name="app_clock"
minWidth="150" minHeight="150" width="150" height="150" backgroundAlpha="0.0">
<fx:Script>
<![CDATA[
]]>
</fx:Script>
<fx:Declarations>
</fx:Declarations>
<s:Graphic id="clock_graphics">
<s:Ellipse width="90" height="90" x="5" y="5">
<s:stroke>
<s:LinearGradientStroke weight="50" rotation="60">
<s:entries>
<s:GradientEntry color="#B5B5B5">
</s:GradientEntry>
<s:GradientEntry color="#494949">
</s:GradientEntry>
</s:entries>
</s:LinearGradientStroke>
</s:stroke>
</s:Ellipse>
</s:Graphic>
</s:Application>
And I have setup in js to this params.wmode = "transparent";
and in object
<param name="bgcolor" value="transparent" />
<param name="wmode" value="transparent" />
Does anybode have a solution that work ? Tnx in advance.