The following example shows how you can toggle the data tip on a Spark VideoPlayer control scrub bar in Flex 4 by setting the Boolean showDataTip property on the scrubBar skin part.
Full code after the jump.
The following example(s) require Flash Player 10 and the Adobe Flex 4 SDK. To download the Adobe Flash Builder 4 beta, check out the Adobe Flash Builder 4 page on the Adobe Labs site. To download the latest build of the Flex 4 SDK, see http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4. For instructions on using the beta Flex 4 SDK in Flex Builder 3, see "Using the beta Flex 4 SDK in Flex Builder 3".
<?xml version="1.0" encoding="utf-8"?> <!-- http://blog.flexexamples.com/2009/12/12/toggling-data-tips-on-the-spark-videoplayer-control-scrub-bar-in-flex-4/ --> <s:Application name="Spark_VideoPlayer_scrubBar_showDataTip_test" xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"> <s:controlBarContent> <s:CheckBox id="chBx" label="showDataTip" selected="true" change="chBx_changeHandler(event);" /> </s:controlBarContent> <fx:Script> <![CDATA[ protected function chBx_changeHandler(evt:Event):void { vidPlyr.scrubBar.showDataTip = chBx.selected; } ]]> </fx:Script> <s:VideoPlayer id="vidPlyr" source="http://helpexamples.com/flash/video/caption_video.flv" autoPlay="false" loop="true" horizontalCenter="0" verticalCenter="0" /> </s:Application>
This entry is based on a beta version of the Flex 4 SDK and therefore is very likely to change as development of the Flex SDK continues. The API can (and will) change causing examples to possibly not compile in newer versions of the Flex 4 SDK.
