DateChooser Rollover Skin Bug

Summary: When applying rollOverIndicatorSkin, selectionIndicatorSkin, todayIndicatorSkin styles to a DateChooser component, only the selectionIndicatorSkin style appears to be working - the other two settings are ignored.
Detail:
Using Flex 4
I'm extending the DateChooser component for an application. I''ve created a custom class, which is instantiated as follows:
            calendar = addChild(new McbdDateChooser()) as McbdDateChooser;
            calendar.Init(Config);
            calendar.displayedMonth = currentMonth;
            calendar.displayedYear = currentYear;
            calendar.selectedRanges = selectedDates;
Within my custom datechooser, the important functions are:
        public function Init($config:Configuration_Manager):void
            Console.AlwaysDebug("McbdDateChooser Init: "  + build);
            Config = $config;
            setStyles();
            setParameters();
        protected function setStyles():void
            Console.Debug("McbdDateChooser setStyles");
            this.setStyle("fontSize", 10);
            this.setStyle("todayColor", 0xFFFFFF);
            this.setStyle("selectionColor", 0xFFFFFF);
            this.setStyle("rolloverColor", 0xFFFFFF);
            this.setStyle("rollOverIndicatorSkin", (getDefinitionByName(getQualifiedClassName(new McbdRolloverSkin())) as Class));
            this.setStyle("selectionIndicatorSkin", (getDefinitionByName(getQualifiedClassName(new McbdRolloverSkin())) as Class));
            this.setStyle("todayIndicatorSkin", (getDefinitionByName(getQualifiedClassName(new McbdRolloverSkin())) as Class));
        protected function setParameters():void
            //Console.Debug("McbdDateChooser setParameters");
            this.monthNames = ["JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"];
            this.showToday = true;
McbdRolloverSkin is just a test class at the moment. It extends UIComponent and simply overrides the visible parameter so all the rollover / selection / today highlights should be hidden:
        public override function set visible(value:Boolean):void
            Console.Debug("SET VISIBLE: " + value);
            super.visible = false;
I'm getting some odd behaviour, however. The selection indicator is being hidden correctly, but the rollover and today indicators remain visible. When I trace down the children of the DateChooser control, I find the following:
DEBUG: Tracing Children: CalendarTest0.McbdDateChooser5
DEBUG: CalendarTest0.McbdDateChooser5
DEBUG: > CalendarTest0.McbdDateChooser5.UIComponent6
DEBUG: > CalendarTest0.McbdDateChooser5.UIComponent7
DEBUG: > CalendarTest0.McbdDateChooser5.CalendarLayout8
DEBUG: >> CalendarTest0.McbdDateChooser5.CalendarLayout8.McbdRolloverSkin80
DEBUG: >> CalendarTest0.McbdDateChooser5.CalendarLayout8.McbdRolloverSkin79
DEBUG: >> CalendarTest0.McbdDateChooser5.CalendarLayout8.McbdRolloverSkin78
DEBUG: >> CalendarTest0.McbdDateChooser5.CalendarLayout8.McbdRolloverSkin77
DEBUG: >> CalendarTest0.McbdDateChooser5.CalendarLayout8.DateChooserRollOverIndicatorSkin59
DEBUG: >> CalendarTest0.McbdDateChooser5.CalendarLayout8.DateChooserTodayIndicatorSkin58
I have four selected dates on my calendar. These have been correctly replaced with the McbdRolloverSkin. The Today indicator and RollOver indicator, however, remain at their default settings.
Can anyone suggest what is going wrong here? Am I missing a step in applying the skin or is my work somehow being done and then undone?
Many thanks in advance for any assistance.
JcFx
JcFx Ltd.
http://www.jcfx.eu

I partly answered this myself - if you override the createChildren() method and set the properties before it is called, then everything works as expected:
          protected override function createChildren():void
            Console.Debug("McbdDateChooser createChildren");
            this.setStyle("rollOverIndicatorSkin", (getDefinitionByName(getQualifiedClassName(new McbdRolloverSkin())) as Class));
            this.setStyle("selectionIndicatorSkin", (getDefinitionByName(getQualifiedClassName(new McBdSelectionSkin())) as Class));
            this.setStyle("todayIndicatorSkin", (getDefinitionByName(getQualifiedClassName(new McbdTodaySkin())) as Class));
            super.createChildren();
Does this mean you have to create a custom class to override these style settings? If so then I don't see anything about that in the livedocs. Otherwise, is there something I am missing?
JcFx
JcFx Limited
http://www.jcfx.eu

Similar Messages

  • [svn:fx-trunk] 13298: Remove FIXMEs from DateChooser wireframe skins

    Revision: 13298
    Revision: 13298
    Author:   [email protected]
    Date:     2010-01-05 17:59:32 -0800 (Tue, 05 Jan 2010)
    Log Message:
    Remove FIXMEs from DateChooser wireframe skins
    Wireframe skins don't need over and down states.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: -
    Tests run: -
    Is noteworthy for integration: -
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/wireframe/src/mx/skins/wireframe/DateChooserNextMonthS kin.mxml
        flex/sdk/trunk/frameworks/projects/wireframe/src/mx/skins/wireframe/DateChooserNextYearSk in.mxml
        flex/sdk/trunk/frameworks/projects/wireframe/src/mx/skins/wireframe/DateChooserPrevMonthS kin.mxml
        flex/sdk/trunk/frameworks/projects/wireframe/src/mx/skins/wireframe/DateChooserPrevYearSk in.mxml

  • [svn:fx-trunk] 14199: ToolTip border skin bug fix

    Revision: 14199
    Revision: 14199
    Author:   [email protected]
    Date:     2010-02-16 13:59:53 -0800 (Tue, 16 Feb 2010)
    Log Message:
    ToolTip border skin bug fix
    http://bugs.adobe.com/jira/browse/SDK-24282 - SliderDataTip instantiates it?\226?\128?\153s border class before it?\226?\128?\153s style can be set by Slider
    Modified a patch submission to follow the pattern in TextInput. When the borderSkin style changes, the border was not recreated with the new border class.
    Thanks go to David Spanton for the original submission
    QE notes: yes, need tests for this use case
    Doc notes: n/a
    Bugs: SDK-24282
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24282
        http://bugs.adobe.com/jira/browse/SDK-24282
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ToolTip.as

  • [svn:fx-trunk] 9892: Panel skin changes per XD spec, and a few other Panel Skin bugs.

    Revision: 9892
    Author:   [email protected]
    Date:     2009-09-01 16:06:51 -0700 (Tue, 01 Sep 2009)
    Log Message:
    Panel skin changes per XD spec, and a few other Panel Skin bugs.  Default Panel size changed to match spec.  Panel titles are now single-line and show ellipsis.
    QE Notes: Panel-related bitmap compares will need upgrading
    Panel_Properties_title5
    Panel_Properties_DfrdInst_none
    Panel_Properties_DfrdInst_auto
    Doc Notes: None
    Bugs: SDK-21680, SDK-21671, SDK-21666, SDK-19962, SDK-19959
    Reviewer: Ryan
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/managers/Panel
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21680
        http://bugs.adobe.com/jira/browse/SDK-21671
        http://bugs.adobe.com/jira/browse/SDK-21666
        http://bugs.adobe.com/jira/browse/SDK-19962
        http://bugs.adobe.com/jira/browse/SDK-19959
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Panel.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/ApplicationSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/PanelSkin.mxml
        flex/sdk/trunk/frameworks/projects/wireframe/defaults.css
        flex/sdk/trunk/frameworks/projects/wireframe/src/WireframeClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/PanelSkin.mxml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/ApplicationSkin.mx ml

    New forum: http://forums.adobe.com/community/flash_builder

  • Flex Bug - Programmatic Skinning!

    I believe I found a Programmatic Skinning bug in Flex.
    Whenever I set the "borderSkin" property to a custom skin
    class, the flash player hangs in all browsers, the CPU peaks around
    95% and memory is consumed rapidly.
    After waiting for about 10 minutes I get the following...
    [SWF] C:\Documents and Settings\Chris.Simeone\My
    Documents\Flex Builder 2\Skinning-Lessons\bin\gridBorders-debug.swf
    - 408,071 bytes after decompression
    undefined
    at
    mx.core::UIComponent/getClassStyleDeclarations()[C:\dev\GMC\sdk\frameworks\mx\core\UIComp onent.as:6810]
    at
    mx.styles::StyleProtoChain$/mx.styles:StyleProtoChain::addProperties()[C:\dev\GMC\sdk\fra meworks\mx\styles\StyleProtoChain.as:142]
    at
    mx.styles::StyleProtoChain$/mx.styles:StyleProtoChain::addProperties()[C:\dev\GMC\sdk\fra meworks\mx\styles\StyleProtoChain.as:173]
    (FYI: The previous error line is repeated 191 times)
    I tried tracing my custom skin class (by setting breakpoints)
    but none of the code ever fires - the debugger never goes into the
    code.
    When I remove this line from my CSS file -
    borderSkin:ClassReference('GridBorders'); - the application
    runs fine.
    To test this further I grabbed the example on the bottom of
    this
    page
    and the same exact error occurs. Note it the "borderSkin" property
    is set on the VBox tag.
    I tested other programmatic skinning examples that use
    upSkin, downSkin, etc and they all work fine. I only have this
    problem when assigning a skin class to the "borderSkin" property.
    Would someone please confirm this is bug? I followed the
    Programmatic skins recipe to the letter.
    Thanks
    Chris Simeone

    I found the problem. It's in my CSS file. If there's a
    "borderStyle"
    property as defined below the application hangs. Take out the
    "borderStyle" property and the app runs.
    See my test code below (FYI: it does not do much. My first
    attempt at
    border skinning using code)...
    GRIDBORDERS.CSS » HERE'S THE PROBLEM
    Application
    background-color: #FFFAC7;
    GridItem
    borderStyle: solid;
    borderSkin: ClassReference('GridBorders');
    GRIDBORDERS.MXML
    <?xml version="1.0"?>
    <mx:Application pageTitle="Grid Borders"
    xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Style source="GridBorders.css"/>
    <mx:Grid height="640" width="940">
    <mx:GridRow width="100%" height="66%">
    <mx:GridItem width="66%" height="100%" >
    </mx:GridItem>
    <mx:GridItem width="33%" height="100%" >
    </mx:GridItem>
    </mx:GridRow>
    <mx:GridRow width="100%" height="33%" >
    <mx:GridItem colSpan="2" width="100%" height="100%" >
    </mx:GridItem>
    </mx:GridRow>
    </mx:Grid>
    </mx:Application>
    GRIDBORDERS.AS
    package
    import mx.skins.*;
    import mx.containers.Grid;
    import flash.display.*;
    import flash.utils.*;
    public class GridBorders extends Border
    public function GridBorders()
    super();
    override protected function updateDisplayList( w:Number,
    h:Number
    ):void
    graphics.lineStyle( 15, 0xFFFF00, 0 );
    graphics.beginFill( 0xFFFF00, 1.0 );
    graphics.drawRect( 0, 0, 10, height );
    graphics.endFill();
    private var _borderMetrics:EdgeMetrics = new EdgeMetrics(1,
    1, 1, 1);
    override public function get borderMetrics():EdgeMetrics
    return _borderMetrics;

  • Combining Rollover Caption and Click Box?

    Hi all,
    I wonder if anybody can solve this problem please.
    I am creating an interactive simulation to familarize users
    with a clients new web app.
    For each button, I have created a roll over caption (which
    describes the button when rolled over). I have also put a click box
    in the exact same place. When clicked, it takes the user to a
    different slide which shows the effects of the click.
    After the user is done with the slide, I have created a
    button which wil take them back to the original slide.
    The problem is, on going back to the original slide, the
    rollover caption still appear on screen. It disappears eventually
    after a user rolls over and out of the button.
    I have figured out that it must be because:
    1)the user rolls over the area and the caption appears
    2)if he rolls out, then it disappears
    3)BUT if the user rolls over the hotspot and clicks the click
    box, then the Rollover caption never registers the mouse rolling
    out of the hotspot, because the presentation jumps to another
    slide.
    So when you return to the original slide, the caption
    remains. As I said, it disappears eventually but looks very
    unprofessional.
    Please please can anybody help? This is driving me crazy! Is
    there any way around it at all?

    Rollover Persistence Bug?
    Can't post my project unfortunately. But trust me, I know
    what I am doing :) kind of...
    My rollover + buttons have a bug with the rollover, much the
    same as isanmiguel. Going "up" is no problem, works as expected.
    Going back to previous slides is a problem in that the rollover
    from the previous screen is displayed under the "new" rollover.
    This happens even when I move the rollover (ala Captiv8r's
    recommendation). The "bad" rollover does NOT display when
    navigating, it simply "appears" underneath (or in plain view when I
    moved rollover away from button) when arriving at earlier slide.
    Structure: 5 Slide project explaining website GUI. Three tabs
    have rollovers + click boxes allowing interactive explanation. All
    clips are 3.0 seconds, with an invisible button to side pausing
    clip at 1.5 sec.
    This behavior is not what I would expect, any recommendations
    please? Perhaps I should be doing something different?
    BTW, I just checked the "hover previous slide" thread, and
    noted that going "back in time" is not handled well by Captivate 2.
    So much for interactive sandboxes where user could "construct"
    learning at their own pace by interacting with a non-linear
    workspace. Sigh, it works in PowerPoint. (I did not import from
    ppt)

  • [svn:fx-trunk] 15078: Merging revision 15046 from 4.x to trunk

    Revision: 15078
    Revision: 15078
    Author:   [email protected]
    Date:     2010-03-26 14:41:14 -0700 (Fri, 26 Mar 2010)
    Log Message:
    Merging revision 15046 from 4.x to trunk
    Mirroring wireframe skin bug fixes
    https://bugs.adobe.com/jira/browse/SDK-26004 - ComboBox does not align text to right when direction = rtl and Wireframe theme is used
    Removed textAlign="left" from ComboBox's textInput.
    https://bugs.adobe.com/jira/browse/SDK-26003 - CheckBox check mark is mirrored in wireframeskin when layoutDirection=rtl
    Added layoutDirection=ltr to wireframe checkbox skin
    QE notes: n/a
    Doc notes: n/a
    Bugs: SDK-26003, SDK-26004
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-26004
        http://bugs.adobe.com/jira/browse/SDK-26003
        http://bugs.adobe.com/jira/browse/SDK-26003
        http://bugs.adobe.com/jira/browse/SDK-26004
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/CheckBoxSkin.mxml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/ComboBoxSkin.mxml
    Property Changed:
        flex/sdk/trunk/

  • [svn:cairngorm3:] 15920: Adding the use of Spark component into ModuleC to add the scenario where a Module must be able to get its default spark skin  (currently this is failing due to a bug in the Module Lib)

    Revision: 15920
    Revision: 15920
    Author:   [email protected]
    Date:     2010-05-06 02:11:21 -0700 (Thu, 06 May 2010)
    Log Message:
    Adding the use of Spark component into ModuleC to add the scenario where a Module must be able to get its default spark skin (currently this is failing due to a bug in the Module Lib)
    Modified Paths:
        cairngorm3/trunk/libraries/ModuleTest/src/example/moduleC/ModuleC.mxml

    As the server.xml is big enough, I took the minimum portion of it. Hope u can proceed with it.
    <!-- Tomcat Root Context -->
    <Context path="" docBase="ROOT" debug="0"/>
    <!-- New contexts -->
    <Context path="/xyz" docBase="pathTo_xyz" debug="0" crossContext="true"/>
    <Context path="/pqr" docBase="pathTo_pqr" debug="0" crossContext="true"/>
    <!-- Tomcat Examples Context -->
    <Context path="/examples" docBase="examples" debug="0"
    reloadable="true" crossContext="true">
    You should also provide a WEB-INF folder under pqr or xyz folder.
    You should also provide a web.xml file under each WEB-INF folder.
    The minimal web.xml is
    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/j2ee/dtd/web-app_2_3.dtd">
    <web-app>
    </web-app>
    That's it. Try it out. Hope it is OK.
    Hafizur Rahman
    SCJP

  • [svn:fx-trunk] 5170: Round 2 of bug fixes for the Spark skins for Halo components.

    Revision: 5170
    Author: [email protected]
    Date: 2009-03-04 17:50:32 -0800 (Wed, 04 Mar 2009)
    Log Message:
    Round 2 of bug fixes for the Spark skins for Halo components. Thanks to Alex for help with the data grid issues.
    Bugs fixed:
    SDK-19655 - Setting rowCount property on DataGrid causes extra blank row to be displayed
    SDK-19652 - Items in a DataGrid do not line up after scrolling.
    SDK-19605 - disabled Halo ColorPicker with Gumbo skin draws too dark
    SDK-19596 - When you have a single button on an Alert, the left edge looks flatter than the right
    SDK-19585 - Menus compiled with the halo theme in Flex 4 have a different backgroundColor than in Flex 3
    SDK-19665 - Halo List with Gumbo skin doesnt draw the alternating item color all the way to the right edge of the control if VScrollBar is present
    SDK-19651 - odd header rendering issue on Halo DataGrid with Gumbo skin
    QA Notes: The alert layout code was positioning the buttons/text on sub-pixel boundaries if the width or height of the alert was an odd number of pixels. We always snap to pixel boundaries now, but this may cause bitmap compare issues with Alert.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19655
    http://bugs.adobe.com/jira/browse/SDK-19652
    http://bugs.adobe.com/jira/browse/SDK-19605
    http://bugs.adobe.com/jira/browse/SDK-19596
    http://bugs.adobe.com/jira/browse/SDK-19585
    http://bugs.adobe.com/jira/browse/SDK-19665
    http://bugs.adobe.com/jira/browse/SDK-19651
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DataGrid.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/alertClasses/AlertForm.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/ScrollControlBase.as
    flex/sdk/trunk/frameworks/projects/halo/defaults.css
    flex/sdk/trunk/frameworks/projects/sparkskins/src/mx/skins/spark/ColorPickerSkin.mxml

  • Rollover bug in 10.1.1? and where to download 10.1.0?

    There appears to be a bug in Adobe Reader X 10.1.1 for Macs. Rollover states of buttons don't work, they just flash temporarily and go immediately back to the UP state. The click state works fine. Am assuming this is not the way buttons should behave and therefore most likely to be a bug. Since the images in my PDF ebooks are before-afters of retouching, based on rollover buttons this ruins the whole book. It works fine in 10.1.0 on the same machines. So far we have had 2 support cases on this but am expecting a barrage!
    We have tried to download from the Adobe site but am always taken to 10.1.1 so if you know of a link to earlier versions this would be a temporary workaround. Please Adobe have a look at this and release a new fixed update asap!

    A known bug we've been watching for some time, see my post for a workaround. The next Acrobat Family patch is due Jan 10.
    You cannot remove a dot patch in isolation, you would have to uninstall Adobe Reader completely and reinstall the previous build. Adobe don't host previous builds of Reader on their main site, but their FTP site (and the FTP mirror service) holds copies going back at least 4 major versions.

  • My computer is clean, bug-free, with the most current updates on AdBlock & Firefox, yet I still get rollover ads and "fake" links embedded into websites:( Help!

    I have Firefox 18.0, AdBlock 2.2.1, am up-to-date on my Windows 7, have no bugs nor viruses, but still there are "fake" hyperlinks embedded in websites. Also, rollover ads are making a presence again. Any suggestions? Tweaking the Java settings doesn't help. I haven't done Flashblock it blocks a lot of my work crud, but would be willing to deal with that annoyance if someone feels that it would be the resolution to my problem.

    There are a lot of IntelliTXT like ''ad'' pop-ups possible.
    If your current Adblock Plus filter settings aren't blocking some pop-ups then it is best to take this to the Adblock Plus forum.
    * https://adblockplus.org/forum/
    * http://en.wikipedia.org/wiki/Category:Internet_advertising_services_and_affiliate_networks
    * http://en.wikipedia.org/wiki/IntelliTXT

  • Bug in HALO skin ????

    Hallo, i posted already in the DW Forum but they told me to
    post it here because HALO Skin for DW MX 2004 ist a "Flash" thing?
    Here my Problem:
    i think i found a Bug in the Dreamweaver MX 2004 PLugin
    (Flash Video) and i think in Dreamweaver 8 (TRAIL) it looks like
    the same. When i put some fine Video Content (FLV) in a HTML Doc.
    by using the Flash Video Button. I saw that by using the HALO Skin
    my Video was cropped in wrong ways, but in the other Skins (Clear
    and Corona) everything was OK.
    Did anyone have the same trouble ?
    Link
    to my Testsite
    If you cant see the
    Bug , please take a closer view here!
    Kind Regards - Rouven Kasten

    I don't understand the difference either. The HALO page
    layout would not
    affect the appearance of inserted media.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Ken Binney" <[email protected]> wrote
    in message
    news:e6998i$p1k$[email protected]..
    > Sorry, I don't see the difference...
    >
    > "RouvenKasten" <[email protected]>
    wrote in message
    > news:e690rg$ekp$[email protected]..
    >>
    >>
    >> Hallo,
    >>
    >> i think i found a Bug in the Dreamweaver MX 2004
    PLugin (Flash Video) and
    >> i
    >> think in Dreamweaver 8 (TRAIL) it looks like the
    same. When i put some
    >> fine
    >> Video Content (FLV) in a HTML Doc. by using the
    Flash Video Button. I saw
    >> that
    >> by using the HALO Skin my Video was cropped in wrong
    ways, but in the
    >> other
    >> Skins (Clear and Corona) everything was OK.
    >>
    >> Did anyone have the same trouble ?
    >>
    >> Kind Regards - Rouven Kasten
    >>
    >
    >

  • Flash Video - Bug in HALO Skin ???

    Hallo,
    i think i found a Bug in the Dreamweaver MX 2004 PLugin
    (Flash Video) and i think in Dreamweaver 8 (TRAIL) it looks like
    the same. When i put some fine Video Content (FLV) in a HTML Doc.
    by using the Flash Video Button. I saw that by using the HALO Skin
    my Video was cropped in wrong ways, but in the other Skins (Clear
    and Corona) everything was OK.
    Did anyone have the same trouble ?
    Kind Regards - Rouven Kasten

    I don't understand the difference either. The HALO page
    layout would not
    affect the appearance of inserted media.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Ken Binney" <[email protected]> wrote
    in message
    news:e6998i$p1k$[email protected]..
    > Sorry, I don't see the difference...
    >
    > "RouvenKasten" <[email protected]>
    wrote in message
    > news:e690rg$ekp$[email protected]..
    >>
    >>
    >> Hallo,
    >>
    >> i think i found a Bug in the Dreamweaver MX 2004
    PLugin (Flash Video) and
    >> i
    >> think in Dreamweaver 8 (TRAIL) it looks like the
    same. When i put some
    >> fine
    >> Video Content (FLV) in a HTML Doc. by using the
    Flash Video Button. I saw
    >> that
    >> by using the HALO Skin my Video was cropped in wrong
    ways, but in the
    >> other
    >> Skins (Clear and Corona) everything was OK.
    >>
    >> Did anyone have the same trouble ?
    >>
    >> Kind Regards - Rouven Kasten
    >>
    >
    >

  • [svn:fx-trunk] 5152: First pass of bug fixes for the Spark skins for Halo components.

    Revision: 5152
    Author: [email protected]
    Date: 2009-03-03 13:18:45 -0800 (Tue, 03 Mar 2009)
    Log Message:
    First pass of bug fixes for the Spark skins for Halo components.
    Bugs:
    SDK-19963 - themeColor should not affect rollOverColor or selectionColor in flex 4
    SDK-19654 - Spark skin for the Halo ComboBox dropdown needs a drop shadow
    SDK-19637 - Halo HScrollBar/VScrollBar controls dont render correctly when specifying includeIn states
    SDK-19634 - Halo ProgressBar default size is very different when using Halo vs Gumbo theme
    SDK-19626 - Flicker when toggling enabled property on Halo TabBar control with Gumbo skin
    SDK-19556 - selected Halo CheckBox and RadioButton icons briefly flicker when you roll over them
    SDK-19658 - Halo ComboBox with Gumbo skin has an odd flicker
    Doc/QA Notes: The fix for SDK-19963 includes a compatibility-version check. When compatibility-version < 4, setting themeColor implicitly sets rollOverColor and selectionColor, if they have not been set. When compatibility-version >= 4, you must explicitly set rollOverColor and selectionColor, even when using the Halo theme.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-19963
    http://bugs.adobe.com/jira/browse/SDK-19654
    http://bugs.adobe.com/jira/browse/SDK-19637
    http://bugs.adobe.com/jira/browse/SDK-19634
    http://bugs.adobe.com/jira/browse/SDK-19626
    http://bugs.adobe.com/jira/browse/SDK-19556
    http://bugs.adobe.com/jira/browse/SDK-19658
    http://bugs.adobe.com/jira/browse/SDK-19963
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxApplication.as
    flex/sdk/trunk/frameworks/projects/framework/defaults.css
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Button.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/ComboBase.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Application.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/RectangularDropShadow.as
    flex/sdk/trunk/frameworks/projects/sparkskins/src/mx/skins/spark/BorderSkin.mxml
    flex/sdk/trunk/frameworks/projects/sparkskins/src/mx/skins/spark/ProgressBarTrackSkin.mxm l

  • Bug? Mouse wheel doesn't work on Firefox and Chrome when added an application skin

    I added a customized skin to make the background of Flex to transparent. The skin is created by the "new file wizard" and only changed the "backgroundRect" 's alpha to "0".
    It works with no problem in IE8.0.6001 and Opera11.6 but doesn't respond to any mouse wheel event in FireFox 11.0 and Google Chrome 17.0.963.79.
    Is it a BUG?
    The flash player's versions are: IE:11.1.102.55; FireFox:11.1.102.55; Chrome:11.1.102.63; Opera:11.1.102.55

    I opened a new Flex project and then tried again. I finally found that it's not a problem of flash but div rendering.
    It seems Firefox and Chorme don't pass mouse wheel event automatically if div layout is set to "absolute".
    Although this is not a Flex issue, any idea of passing that event to flash will be appriciated. I haven't find a way to do it so far :-(
    What I'm doing is editing the "index.tamplate.html" to test. I added a div to contain the div of "flashContent" and set it's style to:
        position: absolute;
        top: 150px; left: 150px;
        height: 250px; width: 250px;
        z-index: 10;
    Another div's z-index is set to 1 to test the overlay effect.
    The reason why I added a div to contain the original div of flash, is I cannot figure out a way to effectively edit the CSS of the "flashContent" div.
    Any help will be thankful!!

Maybe you are looking for

  • ITunes 8 Will Not Play Specific Songs

    Alright so, this has happened to me a few times, but it just happened again and is beginning to anger me. Yesterday I imported a CD, as .MP3 into my iTunes Library. I start playing it, and everything is going fine. This morning I open up iTunes and n

  • I need help adding alias to keystore

    Hello! I'm have a project, is to generate digital signs, for this project I have create a Keystore, add Alias to the Keystore, generate his digital signs, sign files and certificates. Also I need that the Certificate fingerprints be unique for each u

  • Substitution of GL account during MIRO?

    Hi, Is it possible to substitute an gl account during posting to FI with the MIRO transaction? If so, what are the steps? Thank you very much, Eric van Zundert

  • Systinet UDDI - SOA SUITE 11G (Dynamic SOAP end point lookup Issues)

    Hi, We are using Systinet as our UDDI product and trying to use UDDI lookup in our BPEL process as well. I have completed the below tasks 1) Configured the Systinet UDDI Inquiry URL and the development soap endpoint in the SOA Infrastructure Common p

  • Only one authenticated user at time in Enterprise Portals

    Hi, The standard installation of SAP Enterprise Portals lets to enter the same user to the portal in more than one session. If the user is already logged in the portal, when it login again, a message appears telling the user that he´s already logged