Sorry for the newb question but I'm trying to add dissolve effect to
accordion component and the application component. I sorta need both.
But neither ways I've attempted seem to work. I set showEffect on the
application to my dissolve and that did not work and then set the
visibility to false in the css.

<mx:Application
        xmlns:mx="http://www.adobe.com/2006/mxml";
        layout="vertical"
        height="100%"
        backgroundColor="#FFFFFF"
        paddingLeft="10" paddingBottom="10" paddingTop="10" paddingRight="10"
        showEffect="{dissolveIn}">

<mx:Style>
Application {
        backgroundImage: " ";
        visible:false;
visibility:false;
}
</mx:Style>

<!--Effects-->
<mx:Dissolve id="dissolveOut" duration="2000" alphaFrom="1.0" alphaTo="0.0"/>
<mx:Dissolve id="dissolveIn" duration="2000" alphaFrom="0.0" alphaTo="1.0"/>


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/flexcoders/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:[EMAIL PROTECTED] 
    mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to