Disabling the mouse scroll wheel on a Spark VideoPlayer control scrub bar in Flex 4

by Peter deHaan on December 10, 2009

in VideoPlayer (Spark), beta2

The following example shows how you can disable the mouse scroll wheel on a Spark VideoPlayer control scrub bar in Flex 4 by setting the Boolean mouseFocusEnabled property on the VideoPlayer control’s 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/10/disabling-the-mouse-scroll-wheel-on-a-spark-videoplayer-control-scrub-bar-in-flex-4/ -->
<s:Application name="Spark_VideoPlayer_scrubBar_mouseFocusEnabled_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="mouseFocusEnabled?"
                selected="true"
                change="vid1.scrubBar.mouseFocusEnabled = chBx.selected;" />
    </s:controlBarContent>
 
    <s:VideoPlayer id="vid1"
            source="http://helpexamples.com/flash/video/caption_video.flv"
            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.

Leave a Comment

Sorry, this blog is terrible at eating HTML comments.
If you're pasting any HTML/XML/MXML code, you need to convert your < characters to &lt; and your > characters to &gt; .

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Anti-Spam Protection by WP-SpamFree

Previous post:

Next post: