Accordion container doesn't animate changes between containers

Hi, I've noticed that the Accordion container no longer animates the change from one container to another - the switch is now abrupt, rather than a sliding animation as in SDK 3. Is this a known issue, and is there a way of restoring the sliding behavior? I've tried changing to the Halo AeonGraphical theme but didn't see a difference.
Thanks,
David

David,
I believe we changed the default value for the openDuration style, so you may have to explicitly set it to whatever value you want.
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/halo">
    <s:layout>
        <s:VerticalLayout gap="20"
                paddingLeft="20" paddingRight="20"
                paddingTop="20" paddingBottom="20" />
    </s:layout>
    <mx:Form styleName="plain">
        <mx:FormItem label="openDuration:">
            <s:NumericStepper id="numStepper" minimum="0" maximum="10000" value="3000" stepSize="1000" />
        </mx:FormItem>
    </mx:Form>
    <mx:Accordion id="acc" openDuration="{numStepper.value}" creationPolicy="all" width="100%" height="100%">
        <mx:VBox label="Red" backgroundColor="red" width="100%" height="100%" />
        <mx:VBox label="Orange" backgroundColor="haloOrange" width="100%" height="100%" />
        <mx:VBox label="Yellow" backgroundColor="yellow" width="100%" height="100%" />
        <mx:VBox label="Green" backgroundColor="haloGreen" width="100%" height="100%" />
        <mx:VBox label="Blue" backgroundColor="haloBlue" width="100%" height="100%" />
    </mx:Accordion>
</s:Application>
Peter

Similar Messages

  • The html container doesn't change size according to the width of the website, but instead the width of the window.

    As stated. The html container doesn't change to match the content on the website (like Internet Explorer does), it changes to match the screen size. That way, when you scroll horizontally, elements disappear because the html container is the size of the screen and in a fixed position.
    Example (my problem): http://www.elitepvpers.com/forum/web-development/1847846-question-css-html-width-problem.html
    Happens with most websites such as...
    http://google.com/
    http://co.91.com/index/
    http://www.w3schools.com/
    http://stackoverflow.com

    locked by moderator as dulicate

  • Nature of relations between Containers and Components in AWT

    I don't know if this entitles me for Duke Dollars but I just wanted to contribute something anyway. Please let me know if it does. Here it's:
    import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    Name: Negib Mohamed
    Purpose: to show the relationship between Containers and Components is 1:n
    Software: JDK Standard Edition (build 1.4.2_05-b04)
    Date: 30/04/2005
    The following program shows that the relationship between Container and Component classes is 1:n (one to many). A Component object can only be added to one and only one Container object whereas a Container object can contain as many Component/Container objects as needed. The button b1 (a Component object) shows, as shown when the program below is run, in only panel p1 or p2 (Container objects) depending on whether which one of the objects (panels) is instantiated last. It seems that the one instantiated last snatches the button object from the one instantiated first. When the button is clicked either of the following is output by the program, depending on which lines are uncommneted:
    java.awt.Button[button0,29,5,37x23,label=One]
    java.awt.Button[button0,28,5,37x23,label=Two]
    The same button (button0) with two different labels (One and Two) which are set in their respective containers (panels). Comment and uncomment the lines indicated below to see the result.
    After compilation just run it at the prompt as an application as in say:
    c:\javadir\java Relations
    public class Relations extends Applet implements ActionListener {
    Button b1;
    Panel p1, p2;
    public static void main(String[] args) {
    Frame fr = new RelationsFrame("Relations Frame");
    fr.setSize(200, 100);
    fr.show();
    public void start(){
    b1 = new Button();
    b1.addActionListener(this);
    // p2 = new PanelTwo(b1); //p2- instantiated first
    // p1 = new PanelOne(b1); //p1- instantiated last
    //uncommnet the two lines above and comment above the two below to see the result
    p1 = new PanelOne(b1); //p1- instantiated first
    p2 = new PanelTwo(b1); //p2- instantiated last
    setLayout(new BorderLayout());
    add(p1, "North");
    add(p2, "South");
    public void actionPerformed(ActionEvent e){
    System.out.println(e.getSource());
    class RelationsFrame extends Frame {
    Applet applet;
    public RelationsFrame (String title) {
    super(title);
    applet = new Relations();
    applet.start();
    add(applet);
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    dispose();
    System.exit(0);
    class PanelOne extends Panel {
    Button b;
    PanelOne (Button b) {
    this.b = b;
    b.setLabel("One");
    add(b);
    add(new Label("I am panel one."));
    class PanelTwo extends Panel {
    Button b;
    PanelTwo(Button b) {
    this.b = b;
    b.setLabel("Two");
    add(b);
    add(new Label("I am panel Two."));
    This is a variation of the above program. It takes a commnad line argument as the choice of the panel to display the button in.
    public class Relations2 extends Applet implements ActionListener {
    Button b1;
    Panel p1, p2;
    int pNum;
    public static void main(String[] args) {
    String s = "2"; //default
    if (args.length != 0)
    s =args[0];
    Frame fr = new RelationsFrame("Relations Frame", s);
    fr.setSize(200, 100);
    fr.show();
    public Relations2 (String num) {
    try {
    pNum = Integer.parseInt(num);
    catch(NumberFormatException e) {
    System.out.println("Defaulted to panel two.");
    pNum = 2;
    public void start(){
    b1 = new Button();
    b1.addActionListener(this);
    if (pNum == 1) {
    p2 = new PanelTwo(b1); //p2- instantiated first
    p1 = new PanelOne(b1); //p1- instantiated last
    else {
    p1 = new PanelOne(b1); //p1- instantiated first
    p2 = new PanelTwo(b1); //p2- instantiated last
    setLayout(new BorderLayout());
    add(p1, "North");
    add(p2, "South");
    public void actionPerformed(ActionEvent e){
    System.out.println(e.getSource());
    class RelationsFrame extends Frame {
    Applet applet;
    public RelationsFrame (String title, String num) {
    super(title);
    applet = new Relations2(num);
    applet.start();
    add(applet);
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    dispose();
    System.exit(0);
    }

    Thank you. I didn't include some of the statements to make the text short. Now that you mentioned I forgot the import statements, here is the complete code including the two panels I left out in my previouse posting. Cheers:
    import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    Author: Negib Mohamed
    Purpose: to show the relationship between Containers and Components  is 1:n
    Software: JDK Standard Edition (build 1.4.2_05-b04)
    Date: 30/04/2005
    public class Relations extends Applet implements ActionListener {
       Button b1;
       Panel p1, p2;
       int pNum;
       public static void main(String[] args) {
          String s = "2";    //default
         if (args.length != 0)
            s =args[0];
          Frame fr = new RelationsFrame("Relations Frame", s);
          fr.setSize(200, 100);
          fr.show();
       public Relations (String num) {
          try {
             pNum = Integer.parseInt(num);
          catch(NumberFormatException e) {
             System.out.println("Defaulted to panel two.");
             pNum = 2;
       public void start(){
          b1 = new Button();
          b1.addActionListener(this);
          if (pNum == 1) {
             p2 = new PanelTwo(b1);               //p2- instantiated first
             p1 = new PanelOne(b1);               //p1- instantiated last
          else {
            p1 = new PanelOne(b1);               //p1- instantiated first
            p2 = new PanelTwo(b1);               //p2- instantiated last
          setLayout(new BorderLayout());
          add(p1, "North");
          add(p2, "South");
       public void actionPerformed(ActionEvent e){
          System.out.println(e.getSource());
    class RelationsFrame extends Frame {
       Applet applet;
       public RelationsFrame (String title, String num) {
          super(title);
          applet = new Relations(num);
          applet.start();
          add(applet);
          addWindowListener(new WindowAdapter() {
             public void windowClosing(WindowEvent e) {
                dispose();
                System.exit(0);
    class PanelOne extends Panel {
       Button b;
       PanelOne (Button b) {
          this.b = b;
          b.setLabel("One");
          add(b);
          add(new Label("I am panel one."));
    class PanelTwo extends Panel {
       Button b;
       PanelTwo(Button b) {
          this.b = b;
          b.setLabel("Two");
          add(b);
          add(new Label("I am panel Two."));
    }

  • CDE Front Panel change between sessions

    I'm trying to change the front panel workspace buttons so they change between sessions. However, when I log out and back in again they are reset back to "One", "Two", "Three" and "Four".
    After I changed the label on one of the buttons, I brought up the Style manager and selected "Set As Home". I went to the $HOME/.dt/sessions/home directory and found the dt.resources file did contain the new label for the button. However, when I log out and back in again the buttons are not set to the new value. What am I doing wrong, please?

    Hi Filip,
    About the 6 second delay. Did you changed anything in the "function generator.vi"?
    And when you change the amplitude of your signal, is it first displayed on the front panel,
    or does your output change first.
    I am asking you this because i have trouble opening the example. All our pc's have Labview 8.5 installed
    and 6.1 is just abit to long ago to be compeletly compatible. So i need to make an image of a pc then uninstall
    Labview 8.5 and install an older version. I can open the vi with 8.5 but many subvi's are missing and i can't run
    it so i can't see if i have a problem.
    So let me know if you changed anything? From what i have seen there isn't anything wrong with the vi.
    I think the problem is the following. When we select continuous generation we make the hardware fill a buffer with samples.
    so the buffer can be read every time at the same moment and the signal appears continuous. But let's say we change the signal,
    then it will only disapear after all the pervious buffer items are read out. So i think if you make the buffer smaller the delay should be smaller.
    Perhaps you can take a look at that too.
    Kind Regards,
    Joris Donders
    National Instruments
    Applications Engineering
    www.ni.com/support

  • We are upgrading from 8.3 to 9.2. How can i get the table(record) structure changes between these 2 version

    We are upgrading from 8.3 to 9.2. How can i get the table(record) structure changes between these 2 versions. I am not able to find it in Oracle support.

    My guess is you want to upgrade HR8.3 to 9.2 - and that is not one jump upgrade. You will need to go HRMS 83 to 90
    (PeopleSoft Enterprise HRMS 8.3x to 9.0 Upgrade (Doc ID 747333.1) and then 90 to 92 (PeopleSoft Human Capital Management 9.0 to 9.2 Upgrade Home Page (Doc ID 1536087.1)
    Each these MOS pages contains the Demo to Demo Compare Reports that show the data structures changes between the releases.
    Hope it helps.

  • What changed between 2.6.16 and 2.6.17?

    I recently acquired a laptop and installed Arch without problems via the 0.7.2 CD. This installed the 2.6.16 kernel which runs fine on the system. However, upgrading to 2.6.17 results in system hang-ups at boot no matter what I try. It always locks up at the message "ACPI: PCI Host Bridge [(some garbage I can't remember)]"
    I have the latest and greatest up-to-date Arch running fine on two desktops, but it doesn't agree with my lappy at all. Does anyone know what exactly changed between the two kernel versions that could cause this?
    P.S. I've tried everything from a custom vanilla kernel, custom Arch kernel, custom Beyond kernel, enabling and disabling everything I could think of. I've tried countless GRUB arguments (nolapic, noapic, acpi=off, acpi=noirq, nosmp, pci=nommconfig, and a bunch of other that have been suggested to me) and I've tried several combinations of hooks and modules when running mkinitcpio. Damn frustrating, it is.  :evil:

    badger wrote:
    One change with regards to ACPI and the kernel26 package was in the kernel config: changing the ACPI video component to be compiled as a module (I'm not saying this is the reason for the problem, just that this was a change). Original thread: http://bbs.archlinux.org/viewtopic.php?t=24376 and associated feature request http://bugs.archlinux.org/task/5281 I'm grateful the change was made.
    cheers
    Thanks for the lead. I'll check it out.

  • Changes between MII 12.0.2 and 12.0.9 (patch 7)

    Hi,
    We've upgraded one of our non-production MII environments from MII 12.0.2 (build 88) to 12.0.9 (build 23), and some of our dashboard apps are not working correctly.
    One issue that I've tracked down sounds similar to this post: [Re: java.io.EOFException]
    But is different.  We have a BLS that has a local property (called Hold_qty) that acts as an accumulator of a QUANTITY value that is returned in multiple rows from the associated SQL query.
    Under 12.0.2, Hold_qty is defined with data type String.  There is a repeater, with an assignment that assigns Local.Hold_qty the value of Local.Hold_qty + Order_table.Output(/Row/QUANTITY).   This worked fine on 12.0.2, as the String would be converted to integer automatically (with value 0), then would accumulate the QUANTITY values.
    Now in 12.0.9 it is no longer working and the Hold_qty value is NA after the repeater is done.  It seems that MII is no longer converting the string type to integer before attempting the addition, thus the addition is attempted with Hold_qty having string NULL value, instead of integer Zero value.  Because it is null, then MII calculates the result to NA.  The MII manual does state that "Calculations that include null values return a value of NA". 
    My question, is why did the precedence of type conversion vs. property evaluation change between the versions?  Is this change documented somewhere?  I didn't have very good luck finding a list of changes in all of the versions between 12.0.2 and 12.0.9.  Can someone point out where I can find such a list?  I searched SAP notes and it seems that only some of the SPs between 2 and 9 have Notes but not all of them. 
    I changed the data type of Local.Hold_qty to Integer in the BLS and now it works correctly on 12.0.9, but I'm still curious as to why the change, as using Strings instead of integers and allowing the type conversion was a recommended approach in at least one post in the past: [Integer with Value of NA??]
    Thank you and best regards!

    Hi Jeremy,
    Thank you very much for providing the list of notes - that is VERY helpful.  I reviewed the list and did see a couple that seem to be related to the issue that we are seeing.
    Specifically:
    Note 1168706 which is included in SP04.  But this fix seems to imply that what we were doing in SP02 should still work.
    Note 1435052 which is SP09 patch 4, says:
    "3- In a MII Transaction, if you have an XML Document with a field of type integer, and when you assign it to "nullnumber", it doesn't show up in the Data as "NA". But it displays a number eg. "-2147483648".
    This isn't exactly what we are seeing, but seems very closely related, so perhaps the fix for this issue is what is causing our problem?  Perhaps this fix introduced a new bug?
    What is the proper means of reporting a potential bug?  Should I wait for confirmation in this forum?
    Thank you again so much for your help.  As a final suggestion, since your list of MII releases and the associated SAP Note numbers is so useful, would it be possible for you to create a sticky thread that lists all releases (with associated SAP note numbers)?  Or maybe this is overkill due to the way they are listed in the download section of Service Marketplace?  If so, please disregard.
    Best regards,
    Steve Christensen

  • Excel activex call changes between Office 2000 and Office XP. How does one manage that?

    I have several Active X calls from within a VI. One in particular is
    the Excel Cell Value property node in Office 2000. MS has decided to
    call it Excel Cell Value2 in Office XP.
    I have built and exe on a machine with Office 2000 and can run the code
    on a machine with Office XP, but I can not build on the machine with
    Office XP. I can also run a VI with that call
    on the Office XP box, but if I mass compile the VI I get the broken arrow.
    I guess I am confuesed as to why it can run but not compile. If the
    ActiveX call is not there for the compile why is it there for the run?
    If I can expect this does it work in reverse where I
    build on an Office XP box and run on a Office 2000 box?

    These problems you are experiencing do stem from the ActiveX changes between Excel versions.  When you mass compile LabVIEW checks to see if everything is linked correctly, including ActiveX portions of your code.  Since there are slight changes the LabVIEW compiler detects something is wrong, but cannot isolate the problem.  You might need to force a recompile of that VI.  Check out this link.
    http://digital.ni.com/public.nsf/websearch/50D06DEE8B9DC018862565A0006742F2?OpenDocument
    Hope this helps!
    Andy F.
    National Instruments

  • How to track changes between documents

    We are trying to find ways to track/compare changes between two or more versions of an InDesign document. We need to be able to store these version changes in a master version tracking document. We know InDesign can track text changes in a story but we need to know more than that, like graphic or style changes. Is there a plugin out there that can compare two versions of an InDesign document and list/print out the differences?  Acrobat has this feature but we haven't found this for InDesign. Any suggestions?

    Hello,
    I hesitated to post the plugins because my company is the publisher of one of them.
    You will find them all at:
    http://www.pluginsworld.com/
    Search for BlackLining from EMS, CtrlChanges from Ctrl Publishing and EditMarks BlackLining from Kerntiff Publishing Systems.
    We are responsible for EditMarks.
    As I said we do not track changes to objects.
    All the best.
    P.
    ( I am not connect to pluginsworld in any way )

  • Is there a way to find all config changes between clients and sap system

    We have our Dev system with clients
    310 - Developer make changes and create transport
    400 - Test client
    410 - a copy of our Production system (over 1 year ago0
    TST - this is our quality system with one client
    101
    Production system one client
    101
    I know if i do a database copy from Production to our TST system, both systems would be exact.
    Abaper Director wants to know all the configuration changes that are different between Devopment client 310 - Test and production.
    I told him that in development client 310 the abaper or functional users make most of the changes if they do  not get transported they would be missing.
    I cannot copy to client 310 otherwise we would loose all of our version management.
    Is there another way that I can see the config changes between all these clients.
    Thanks
    Joe

    You should be able to use tcode SCU0 
    Regards,
    Brian

  • DM3.0 EA2: Filter engineering changes between logical and relational model

    Hi,
    when I am engineering changes between logial and relational model there are some issues at filter handling for me:
    - When the filter "Show Modified Objects" is activated, the filter works only on the first level, e.g. on Entity level. On attribute level all attributes are displayed, not only the attributes which have really been modified. It is possible, to show on every level only the really modified objects?
    - I think, selecting a Filter condition is circuitous. All filter conditions except "Show All Objects" keeps activated when I choose another condition. So I have to deactivate "Show Deleted Objects" when I want to see only the modified objects. It is possible to choose another control element for filtering, e.g. disjunctive radio buttons?
    I am running Data Modeler on Windows XP with german localization and the JDK 1.6.0_11 from Oracle SQL Developer.

    I logged bug for that.
    Philip

  • Change between mono- and stereo-sound

    My question is if there is any way to change between mono and stereo sound on the ipod nano 3th generation...?
    Thanks for help!

    Are you not getting stereo? What are you listening with - maybe there's a plug problem...
    Does it sound like stereo from iTunes?

  • Networking changes between Solaris 10 x86 10/08 (u6) and previous versions?

    Solaris Community:
    We have a J2SE CORBA-based application (that uses the default Sun ORB) that has run without problems on Solaris 8, 9, and 10 on both SPARC and, more recently, X86 platforms. Upgrading our client side machine (X4100 M2 Opteron platform) from Solaris 10 x86 5/08 (u5) to Solaris 10 x86 10/08 (u6) has resulted in threading or socket contention issues that we have not experienced previously. Using Live Upgrade, we can quickly go back to the u5 install on the client machine .... and the problems go away .... going back to u6, however, and the problems begin to show almost immediately. Our Java code base is identical as is the version of the JDK (1.5.0_16), so it would appear that there must be an underlying change to socket, networking, or threading behavior between these two versions of Solaris.
    Thus far, I've not been unable to find details of changes either in the networking support or the threading model that might explain this .... or course, I don't have great expertise in these areas.
    I've tried to use 'ndd /dev/tcp SOME_PARAMETER' for all of the /dev/tcp parameters returned by 'ndd /dev/tcp \?' to try to see if there are underlying changes in the /dev/tcp parameters .... but have not found any differences between Solaris 10 u5 and u6.
    Can anyone point me to resources that would discuss changes between Solaris 10 u5 or u6 that might explain the problems that we've encountered? Or, alternatively, other system parameters that I could check that might explain changes in either TCP socket or threading behavior?
    Thanks for your input,
    John

    I have a vague memory of someone reporting something similar which turned out to be due to a solaris feature called tcp_fusion.
    To check whether thats your problem or not try the following.
    Add following line in the /etc/system file.
    set ip:do_tcp_fusion = 0
    Once the /etc/system file is updated, it will be necessary to restart the system before the workaround will take effect.

  • Error while changing between modules

    Dear Know-it-All out there.
    Iam a Newbie - Middlebie Photosop User , so to keep it short.
    We just installed CC with Lightroom & PS. The problem „Error while changing between modules“.
    is occurring while starting Lightroom and the program cannot be used properly.
    There seems no chance to create a catalog properly, the Library just
    does not open any menu which it should do.
    Adobe Support could not work it out either so roar, their suggestions was
    to restart in safety mode / deleting library 5plist / plus many more
    little stuff which actually did not help.  This is already the second installation ,
    same problem as with the first. We are working on a IMac 2.9GHz, i5, 8GB 1600Mh, OSX 10.9
    Any ideas? Thank you so much and kind regards.
    Julia

    Hi Atul Saini.
    It is unbelievable how miserable the ADOBE support is.
    Iam sorry - but Iam awaiting answers, as we are paying
    since nearly a month and Lightroom does not work at all.
    Can you help or what is happening?
    Thanks.
    Really angry.
    Julia Ufer
    2014-09-05 21:50 GMT+02:00 Jeff A Wright <[email protected]>:
        Error while changing between modules
    Jeff A Wright
    <https://forums.adobe.com/people/JeffAWright?et=watches.email.outcome>
    marked Atul_saini123
    <https://forums.adobe.com/people/Atul_saini123?et=watches.email.outcome>'s
    reply on Error while changing between modules
    <https://forums.adobe.com/thread/1566317?et=watches.email.outcome> as
    helpful. View the full reply
    <https://forums.adobe.com/message/6703771?et=watches.email.outcome#6703771>

  • [svn:osmf:] 11861: Fix bug FM-206: Visual position changes between subclips.

    Revision: 11861
    Revision: 11861
    Author:   [email protected]
    Date:     2009-11-16 11:50:44 -0800 (Mon, 16 Nov 2009)
    Log Message:
    Fix bug FM-206:  Visual position changes between subclips.  This isn't a subclip bug, but the nature of subclips make it more noticeable.  The problem is we set the Video's dimensions to 320x240 by default, then set them again when the metadata is loaded.  This results in a flicker for slow-to-load media (like a subclip).  The fix is to set the dimensions to zero until the metadata has loaded.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-206
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/video/VideoElement.as

    (Removed)

Maybe you are looking for