I don't think this is a bug. I think I'm doing something wrong. But in this example you can see a flicker when you use the showEffect and the hideEffect.

When you go from one tab to the other the controls are shown briefly and then the showEffect starts.

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="horizontal">
    <!-- There is a flicker that happens with these effects-->
    <!-- Reproduce - Click between the All tab and the Recent tab. The datagrid header appears suddenly then disappears and then the showEffect starts-->
    <mx:Dissolve id="dissolveOut" color="0xFFFFFF" duration="1000" alphaFrom="1.0" alphaTo="0.0"/>
    <mx:Dissolve id="dissolveIn" color="0xFFFFFF" duration="1000" alphaFrom=" 0.0" alphaTo="1.0"/>
    <mx:TabNavigator width="100%" height="100%">
        <mx:Canvas label="Recent" width="100%" height="100%"
             showEffect="{dissolveIn}" hideEffect="{dissolveOut}">
            <mx:DataGrid x="0" y="0" width="100%" height="100%" borderStyle="none" verticalGridLines="false">
                <mx:columns>
                    <mx:DataGridColumn headerText="Name" dataField="col1" width="325"/>
                    <mx:DataGridColumn headerText="Date" dataField="col2" width="64"/>
                    <mx:DataGridColumn headerText="E" dataField="col3" width="48"/>
                    <mx:DataGridColumn headerText="D" dataField="col3" width="48"/>
                </mx:columns>
            </mx:DataGrid>
        </mx:Canvas>
        <mx:Canvas label="All" width="100%" height="100%"
             showEffect="{dissolveIn}" hideEffect="{dissolveOut}">
            <mx:Image source="http://www.adobe.com/images/globalnav/adobe.png" id="adobe" verticalCenter="0" horizontalCenter="0"/>
        </mx:Canvas>
    </mx:TabNavigator>
</mx:Application>
__._,_.___

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





SPONSORED LINKS
Software development tool Software development Software development services
Home design software Software development company

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

Reply via email to