In ob28 step buttone is in deactive state

Dear All,
Can any one help me by telling the reason for the Step button in 0b28 screen is in deactive state.
Beacuse I am not able to create validation.
Help ....
B.S.Rao

Hi,
In GGB0 first you have to choose component. (Like financial accounting or asset accounting...etc)
after selecting the component and select the call up point. ( ex for FA: header/line item/complete dco level)
Then under this call up points, first you must need to create  a validation rule.
Then under this validation rule only you can create as many as steps.
This will clears you doubt.
Thanks,
Srinu

Similar Messages

  • Error at STEP button

    here is the code........but their is something wrong with the action event assosiated with STEP button.....the programs hangs whenever i press the step button however the same program is running in RUN mode ....please check what's wrong with the step part
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    import javax.swing.SwingUtilities.*;
    import javax.swing.filechooser.FileFilter;
    //import javax.swing.JEditorPane;
    import java.net.URL;
    public class tm extends JFrame implements ActionListener
        public JTextField[] programtext = new JTextField[30];
        public JTextField[] tapetext = new JTextField[30];
        public JTextField[] statetext = new JTextField[30];
        int increment = 1;
        int count =0;
        public static void main (String arg[]){
            tm m=new tm();
            m.setSize(1000,500);    
            m.show();
        JButton loadp, run, step,loadi,loads;
        public tm()
            Container c ;
            c = getContentPane();
            c.setLayout(new FlowLayout());
            loadi = new JButton("LOAD INPUT STRING");
            c.add(loadi);
            loadi.addActionListener(this);
            loadi.setBounds(200,25,100,50);
            loadp = new JButton("LOAD PROGRAM");
            c.add(loadp);
            loadp.addActionListener(this);
            loadp.setBounds(300,25,100,50);
            run = new JButton("RUN");
            c.add(run);
            run.addActionListener (this);
            run.setBounds(400,25,100,50);
            step = new JButton("STEP");
            c.add(step);
            step.addActionListener(this);
            step.setBounds(500,25,100,50);
            loads = new JButton("LOAD STATES");
            c.add(loads);
            loads.addActionListener(this);
            loads.setBounds(600,25,100,50);
            JPanel prog = new JPanel();
        prog.setLayout(new GridLayout(30,1));
        for(int i=0;i<programtext.length;i++)
        programtext= new JTextField(10);
    prog.add(programtext[i]);
    JPanel tape = new JPanel();
    tape.setLayout(new GridLayout(30,1));
    for(int i=0;i<tapetext.length;i++)
    tapetext[i]= new JTextField(10);
    tape.add(tapetext[i]);
    JPanel state = new JPanel();
    state.setLayout(new GridLayout(30,1));
    for(int i=0;i<statetext.length;i++)
    statetext[i]= new JTextField(10);
    state.add(statetext[i]);
    JPanel contentPane3 = new JPanel();
    contentPane3.setBorder(BorderFactory.createEmptyBorder(50, 50, 50, 50));
    contentPane3.setLayout(new BorderLayout());
    contentPane3.add(state, BorderLayout.CENTER);
    contentPane3.add(c, BorderLayout.NORTH);
    contentPane3.add(prog, BorderLayout.WEST);
    contentPane3.add(tape, BorderLayout.EAST);
    setContentPane(contentPane3);
    public void actionPerformed(ActionEvent e)
    try{
    if(e.getSource ()==loadp)
    JFileChooser chooser=new JFileChooser();
    int r= chooser.showOpenDialog(this);
    if(r==JFileChooser.APPROVE_OPTION )
    String name=chooser.getSelectedFile().getName();
    File f=chooser.getSelectedFile();
    FileInputStream filestream = new FileInputStream(f);
    BufferedInputStream bufferstream = new BufferedInputStream(filestream);
    DataInputStream datastream = new DataInputStream(bufferstream);
    String record = null;
    programtext[0].setText("");
    try { 
    int i = 0;
    while(true)
    record=datastream.readLine();
    if(record == null){
    break;
    programtext[i].setText(record);
    i++;
    count = count + 1;
    //System.out.println ("the no of lines of the program are"+ count);
    catch (Exception p)
    System.out.println(p);
    else if(e.getSource()==loads)
    JFileChooser chooser3=new JFileChooser();
    int r3= chooser3.showOpenDialog(this);
    if(r3==JFileChooser.APPROVE_OPTION)
    String name=chooser3.getSelectedFile ().getName();
    File f3=chooser3.getSelectedFile();
    FileInputStream filestream3 = new FileInputStream(f3);
    BufferedInputStream bufferstream3 = new BufferedInputStream(filestream3);
    DataInputStream datastream3 = new DataInputStream(bufferstream3);
    String record3 = null;
    statetext[0].setText("");
    try { 
    int i = 0;
    while (true)
    record3=datastream3.readLine();
    if(record3 == null){
    break;
    statetext[i].setText(record3);
    i++;
    catch (Exception p3)
    System.out.println(p3);
    else if(e.getSource()==loadi)
    JFileChooser chooser2=new JFileChooser();
    int r2= chooser2.showOpenDialog(this);
    if(r2==JFileChooser.APPROVE_OPTION )
    String name=chooser2.getSelectedFile().getName();
    File f2=chooser2.getSelectedFile();
    FileInputStream filestream2 = new FileInputStream(f2);
    BufferedInputStream bufferstream2 = new BufferedInputStream(filestream2);
    DataInputStream datastream2 = new DataInputStream(bufferstream2);
    String record2 = null;
    tapetext[0].setText("");
    try { 
    int i = 0;
    while (true)
    record2=datastream2.readLine();
    if(record2 == null){
    break;
    tapetext[i].setText(record2);
    i++;
    catch (Exception p2)
    System.out.println(p2);
    else if(e.getSource ()==run)
    String temp="";
    String statetemp=" ";
    String tapetemp=" ";
    String x=" ";
    String accept="#";
    int l=0;
    String pars[][] = new String[50][5];
         for(int m=0;m<count;m++){
    temp = programtext[m].getText();
    String str[]=temp.split(" ");
    for(int k=0;k<str.length;k++){
    pars[m][k] =str[k];
    statetemp = statetext[0].getText();
    tapetemp = tapetext[l].getText();
    for(int tp = 0; tp<count; tp++){
    while (pars[tp][0].equals(statetemp) && pars[tp][1].equals(tapetemp))
    statetemp = pars[tp][2];
    tapetemp = pars[tp][3];
    x = statetemp;
    statetext[0].setText(statetemp);
    tapetext[tp].setText(tapetemp);
    if(pars[tp][4]=="R")
    l=l+1;
    else{
    l=l-1;
    if(x.equals(accept)){
         break;
    else if(e.getSource()==step)
    while (increment>0) {
    String temp="";
    String statetemp=" ";
    String tapetemp=" ";
    String x=" ";
    String accept="#";
    int l=0;
    String pars[][] = new String[50][5];
         for(int m=0;m<count;m++){
    temp = programtext[m].getText();
    String str[]=temp.split(" ");
    for(int k=0;k<str.length;k++){
    pars[m][k] =str[k];
    statetemp = statetext[0].getText();
    tapetemp = tapetext[l].getText();
    for(int tp = 0; tp<count; tp++){
    while (pars[tp][0].equals(statetemp) && pars[tp][1].equals(tapetemp))
    statetemp = pars[tp][2];
    tapetemp = pars[tp][3];
    x = statetemp;
    statetext[0].setText(statetemp);
    tapetext[tp].setText(tapetemp);
    if(pars[tp][4]=="R")
    l=l+1;
    else{
    l=l-1;
    if(x.equals(accept)){
         break;
    increment++;
    catch(Exception t)
    System.out.println(t);

    the step part starts from
       else if(e.getSource()==step)
            {i think their is something wrong with increment variable

  • How can I make a giff button have a second state?

    how can I make a giff button have a second state?

    how can I make a giff button have a second state?

  • New ARB Issue:  Button navigation and Declarative States

    <[email protected]il.forums.adobe.com>
    Message-ID: <C6277898.7F37%[email protected]>
    Thread-Topic: New ARB Issue:  Button navigation and Declarative States
    Thread-Index: AcnOqlv/oTWkTNjMukqDP18VFO76uA==
    Mime-version: 1.0
    Content-type: multipart/alternative;
         boundary="B_3324475544_8859892"
    This message is in MIME format. Since your mail reader does not understand
    this format, some or all of this message may not be legible.
    --B_3324475544_8859892
    Content-type: text/plain;
         charset="US-ASCII"
    Content-transfer-encoding: 7bit
    A new ARB issue has been posted to the flex open source site:
    http://opensource.adobe.com/wiki/display/flexsdk/buttonnavigationand+decla
    rative+states
    This issue concerns the new state syntax and what it means to leave a value
    of a property implicit in one or more states.
    Comments, suggestions, and feedback are welcome.
    --B_3324475544_8859892
    Content-type: text/html;
         charset="US-ASCII"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>New ARB Issue:  Button navigation and Declarative States</TITLE=
    >
    </HEAD>
    <BODY>
    <FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:11pt=
    '><BR>
    <BR>
    <BR>
    A new ARB issue has been posted to the flex open source site:<BR>
    <BR>
    <a href=3D"http://opensource.adobe.com/wiki/display/flexsdk/button+navigation=
    anddeclarative+states">http://opensource.adobe.com/wiki/display/flexsdk/bu=
    ttonnavigationanddeclarativestates
    This issue concerns the new state syntax and what it means to leave a value= of a property implicit in one or more states.
    Comments, suggestions, and feedback are welcome.
    B_3324475544_8859892

    Ned Murphy wrote:
    Select the textfield that is inside the movieclip and in the properties panel you should see a dropdown for selecting the type of textfield.  If you select Dynamic and then assign an instance name to the textfield you can use that instance name in your code to assign the text when the file runs.  If you were to name the textfield "tField", then the code you would use inside an instance of your movieclip named "mClip1" would be...
    mClip1.tField.text = "your text";
    So, if I have multiple buttons, using your example, would the code read
    mClip1.tField.text = "your text";
    mClip1.tField2.text = "your text2";
    mClip1.tField3.text = "your text3";
    mClip1.tField4.text = "your text4";
    And my buttons are built inside movieclips, ie
    Main Timeline > aboutButton_mc > aboutText_mc > "about"
                        > contactsButton_mc > contactsText_mc > "contacts"
    can the code be put at any level, or does it need to reside on the Main Timeline to access all the movie clips' text fields?
    Just in case this may be too complex to get into via this forum, if you know of any good tutorials, that would be awesome too!
    I tried doing a search, but it's so hard to tell if they might be in AS2, or AS3, and if they would apply to newer versions of Adobe Flash (I have CS5)

  • ARB Issue Committed:  Button navigation and Declarative States

    <[email protected]il.forums.adobe.com>
    Message-ID: <C62B9EEA.82F3%[email protected]>
    Thread-Topic: ARB Issue Committed:  Button navigation and Declarative States
    Thread-Index: AcnOqlv/oTWkTNjMukqDP18VFO76uACeTE1U
    In-Reply-To: <C6277898.7F37%[email protected]>
    Mime-version: 1.0
    Content-type: multipart/alternative;
         boundary="B_3324878165_1545235"
    This message is in MIME format. Since your mail reader does not understand
    this format, some or all of this message may not be legible.
    --B_3324878165_1545235
    Content-type: text/plain;
         charset="US-ASCII"
    Content-transfer-encoding: 7bit
    the  ARB issue at:
    http://opensource.adobe.com/wiki/display/flexsdk/buttonnavigationand+declara
    tive+states
    has been updated with a decision (in short, keep the status quo).
    Ely.
    --B_3324878165_1545235
    Content-type: text/html;
         charset="US-ASCII"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>ARB Issue Committed:  Button navigation and Declarative States<=
    /TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:11pt=
    '><BR>
    <BR>
    <BR>
    </SPAN></FONT><BLOCKQUOTE><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><=
    SPAN STYLE=3D'font-size:11pt'>the  ARB issue at:<BR>
    <BR>
    <a href=3D"http://opensource.adobe.com/wiki/display/flexsdk/button+navigation=
    anddeclarative+states">http://opensource.adobe.com/wiki/display/flexsdk/bu=
    ttonnavigationanddeclarativestates
    has been updated with a decision (in short, keep the status quo).
    Ely.
    B_3324878165_1545235

    graf_ix_guru wrote:
    >
    > Hey everyone I am new, and really could use some help.
    > I have created button symbols in Fireworks with Pop-Up
    Menus. As of right now
    > I have 4 states. The up, over, down and over while down.
    Everything is working
    > great except when the user clicks on the navigation
    button they get taken to
    > the top of the page.
    On click should open a new page, yes? So it won't matter.
    Linda Rathgeber [PVII] **Adobe Community Expert-Fireworks**
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    Design Aid Kits:
    http://www.webdevbiz.com/pwf/index.cfm

  • How to enable Previous Step Button in First  Substep of FPM Road Map

    Hello All,
    I have created three MainSteps M1 M2 M3.
    In Main Step M2 having Substeps Say S1 S2 S3 S4.
    In M2 of S1 Previous Button by default it is disabled. Means user can't go back from First Substep(S1) to Main Step2 (M2).
    Please let me know how to enable  "Previous Step"  Button in First  Substep (S1) of FPM Road Map in M2.
    Thanks in Advance.
    Br
    -CW

    Hello BS,
    Thanks for your suggestions.
    Yes we can do with custom button.
    Is there anyway to enable standard  Previous Step Button in First  Substep instead of creating cutom button.
    Please guide me if any other options.
    BR
    -CW

  • Making buttons of U.S. states

    I have a vector map of the U.S., and I'm trying to make each
    state a simple button. But certain landlocked states (Oklahoma,
    West Virginia, Kansas) won't allow me to make buttons of them. How
    do I do this?

    Laura,
    >I have a vector map of the U.S., and I'm trying to make
    each
    > state a simple button. But certain landlocked states
    (Oklahoma,
    > West Virginia, Kansas) won't allow me to make buttons of
    them.
    > How do I do this?
    You have two options: a) create separate symbols out of all
    50 states
    or b) overlay each state with an "invisible" button, or
    hotspot. To create
    an invisible button, create a button symbol and draw a shape
    only in the Hit
    frame. That gives the button a clickable surface, but a
    surface that
    doesn't look like anything (the authoring environment will
    show you the
    shape as a semitransparent teal, for convenience).
    If you go with the latter choice, you'll probably want to
    make your
    invisible buttons match the shape of each state as closely as
    possible ...
    and if so, you may as well forego the invisible buttons and
    just make each
    state it's own symbol. ;)
    That said, maybe you've already tried this, and that's where
    you're
    getting stuck. To create a symbol from each of the landlocked
    states, you
    should be able to carefully use the Selection tool to click
    on each piece of
    the state's stroke, and then its fill, then convert. Doing
    that, however,
    will "steal" strokes from neighboring states, so the workflow
    I would use is
    this (starting with the original vector map):
    a) Create a new layer above the original map layer.
    b) Choose a state and carefully select its stroke and fill.
    c) Copy to the clip board.
    d) Paste in place to the new layer. (This leaves the original
    strokes in
    place, to be used to create the symbols for neighboring
    states.
    e) In the new layer, select the state's stroke and fill, then
    convert to a
    button or movieclip.
    f) Repeat steps b through e another 49 times.
    David Stiller
    Co-author, Foundation Flash CS3 for Designers
    http://tinyurl.com/2k29mj
    "Luck is the residue of good design."

  • Adding a button to a rollover state

    I made the register page with imageready for the graphics,
    over/click/out states... then saved the optimized as html and user
    dreamweaver to add the check boxes text forms... now i need to add
    a button or a link to an image so that it sends the information to
    my database... i am using XAMPP for MySQL, Apache(PHP), and some
    other stuff am not to aware of it yet... Now i also want to be able
    to find a person who is able to help me also with my database
    issues so i am able to use it correctly
    Ok, maybe i need to be more specific... I made the graphics
    part of the page in Imageready, i then saved its optimized version
    of it into html and images, portion of the graphics has an images
    that have OVER/CLICK/OUT states and i need to make that into a
    button using dreamweaver, if possible i would like to know how to
    implement into the page

    var someObject:MovieClip;  // this is declared - only
    var someObjectMovieClip = new MovieClip(); // this is declared and instantiated
    Make sure your code uses aghains and not instancename like your code shows. 
    I don't think you understand the third and fifth items I listed either.  The third is saying that the code is not in the same frame as the item it is trying to target.  The fifth has to do with objects in consecutive frames, not linking.
    If you followed what I mentioned in the last sentence you should have a line number indicated in the error message that will tell you which line is causing the problem.  Whatever line that is, the object doesn't exist as far as the code sees it.  So if it was the line...
        instancename.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_28);
    I can guarantee you that there is no object named instancename in the frame where you have that code since it is the only object targeted in that line of code.

  • Making a horizontal menu button stay in same state when I move cursor down to submenu buttons?

    Hello! I realized as I was typing the subject of this post that it was near impossible to describe without being confusing. So I'm going to let some screenshots do most of the talking. **DISCLAIMER: Ignore all formatting besides the "Parks" button for now**
    First picture, the cursor is not on the "Parks" button. Second picture, I have rolled over the "Parks" button, changing the color of it (to the "rollover" state color) and revealing the submenu buttons. Third picture, I have moved the cursor down to the submenu buttons, and the main "Parks" button goes back to that original color. How do I get it to stay in the other color when I am rolling over submenus? In other words, I want the "Parks" button to stay light blue when I rollover/click the other menu options.
    A good example of what I mean can be found on the header menu of http://www.generalassemb.ly
    Thanks! Hope this wasn't too confusing.

    KGLAD - sorry i couldnt get that to work when i applied it to my own objects / instances...
    there must be an easier way...
    I am playing an FLV on my main stage and was trying to use the generic operators defined in flash for the play / pause buttons:
    mc_MyVideo.playButton = mc_Play;
    mc_MyVideo.playButton = mc_Pause;
    Then i tried to modify this code to swap the buttons between each other on stage:
    mc_Play.onPress = function(){
                mc_Pause._x = 339.55;
                mc_Pause._y = 12.2;
                this._x = -100;
                this._y = -100;
    mc_Pause.onPress = function(){
                mc_Play._x = 339.55;
                mc_Play._y = 12.2;
                this._x = -100;
                this._y = -100;
    the buttons work fine controlling mc_MyVideo when both are shown in different locations on the stage and without any other code.... but the moment i try to assign another function to either of them they stop controlling mc_MyVideo.
    the closest i came was with an attachMovie function... when i pressed mc_Play it would start the movie and attach "mc_Pause" at the same time... thats the farthest i got...
    - Pat

  • Can a button change to another state and remain there, and also go to a URL?

    Hi --
    I've been wracking my brain and scouring the internet since yesterday to find a solution to this...It seems easy enough, but I'm at a loss...maybe I'm over thinking it and it's simply not possible?
    We have a button that we want to, when clicked, change to another state, remain there, and also use a navto to go to another page within the publication...is this possible?
    We've tried doubling up the actions of the button, using fake buttons, etc. all without success. What we have it at now is...you can tap to navto, and the button does change, but it reverts back to it's previous state in that moment between releasing the button and actually jumping to the page we want it to go to.
    The only explanation I've come up with is based on the information on this page: http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f60-8ad81e812b10bfd837-80 00.html -- that because the two actions I want to accomplish fall into the two different categories: Supported actions for hyperlink buttons and Supported actions for slideshow buttons, that this simply isn't possible?
    Your help is greatly appreciated!
    Thanks,
    Kristina

    No, that's not supported with multiple actions. You can't switch a state and then jump to another document.

  • How to Reset Pagination Page called by a button defined in Select Statement

    Its easy to reset the pagination for a page that is called using a 'Button' such as 'Create'.
    But
    I've defined a button in my records list by using the this entry in the select statement:
    (some characters have been removed to allow for its inclusion in this post)
    href="f?p=&APP_ID.:12:&SESSION.::NO::P12_SEARCH_BLDG1,P12_SEARCH_FLOOR:'||BLDG_ID||','||ID||'">'
    || 'img src="#IMAGE_PREFIX#connections.gif" border="0" alt="Icon 4"'
    ||
    "CONNECTIONS",
    It works great, Except, I need to reset the pagination for the page, (P12_),
    Because I have similar buttons defined on other pages that also call page, (P12_).
    Can you help me?

    Hi Gary,
    see the f?p URL format at http://download-west.oracle.com/docs/cd/B32472_01/doc/appdev.300/b32471/concept.htm#BEIHCICF chapter "Clearing Session Cache for Two Pages While Resetting Pagination"
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • Button animation in selected state.

    Can I have a video or animation playing on a button only in the selected state(and still in the the other state)?
    atm I can have a video looping in in a normal menu but this dosen't work in a layered menu?

    I replied in the other thread you posted to.
    Since layered menus are effectively a series of normal menus linked by auto-activating buttons, you can have a "selected" version of your menu that has each button animating by itself. Then when you navigate to that button, it can auto-activate and jump to the appropriate animated menu with the correct button animating.
    As I said in the other thread, the drawback is that navigation from button to button is slow.

  • 4 State Buttons - Disabled and Visited State

    Hi everyone,
    Does anyone know if CP will be offering 4 state buttons as an option in the future. Essentially adding a _disabled or _visited (both would be great) option to image buttons. 3 state buttons are great, but im finding more and more clients asking for 'greyed out' buttons when clicked. Some want disabled and others visited (so they can re-access the button).
    I know Storyline has the feature to add a disabled and visited states. And I heard Lectora is adding this feature.
    Basically The way I see it is that i can choose an image button and you get an option to select a disabled or visited button (or neither if you want 3 state). Then CP automatically pulls in the _up, _over, _down & _disabled or _visited images.
    So back to my question, is this on the horizon?
    Or if anyone has a better idea then i suggested, then i would be interested in knowing.
    *I am aware you can do this with Advanced actions, but this way would be automated. (less work)

    Yes wearable technology is wonderful.  The best enhancement I've heard about in that area (for e-learning) is the 'wearable LMS'.  It's a Wi-Fi enabled device that can detect and capture output from a Captivate module (as long as it's within range of a 802.11ac wi-fi transmitter/receiver).
    I'll probably get into trouble for leaking this information but...also on the LMS front, Adobe has finally decided to take on the LMS vendors and introduce an incredible enhancement that looks like making any conventional LMS totally redundant. 
    If you've been wondering why Captivate 8 removed so many output options, it's actually been done to make room for the new Standalone LMS enhancement due out for Captivate 9's release next year (possibly Cp 9.5 if the development encounters issues with the implementation).  Once that incredible breakthrough arrives you won't need to worry about SCORM, TinCan, Acrobat.com or any other reporting format.  The Captivate output module ITSELF becomes the LMS. 
    It's all achieved with the new Cloud-based synchronization technology that Adobe has been keeping under wraps. Not only will the new Standalone LMS output capture all of the user interactions for your course. it will also aggregate them from other users around the world (as long as the user is online) and spit out nicely formatted reports to your nearest printer.  The formatting is still a bit rough at the moment, and you do need really good bandwidth to pull it off, but the barriers to entry are coming down all the time.
    It's certainly an exciting time to be an e-learning developer!

  • Making a video appear by clicking a button on that same state.

    I have a state that I want to open which has an image background and buttons to the side. When a user clicks on one of the buttons I want the video to appear over the graphic. Is there a way to do this?
    I also need to have different movies play in that same player based on which button the user clicks on in that state. Is that possible too?

    Best way is to have a separate state that's a copy of the first, just with a video player. An alternative is to do something like set the opacity on a button click to take a video player from invisible to visible.
    In terms of playing different videos, just have each button set the source property on the video player. On Click > Play Action Sequence > Set Property > Source.
    -Bear

  • Controlling and object state from a button within an object state

    I have a MSO with a set of fridge images, to show the different colourways, but I also want to be able to show open and closed versions of the images.
    My idea was to have two MSO, one with the colour varients and one with the open varients and have a button inside the colour varient MSO so each colour shows its own button, but it looks like that button can only control the MSO that it is part of, is there anyway for it to trigger the second MSO?

    Ok well this is a screenshot from the laundry page, but its the same as fridge freezers.
    There is a MSO called colour change, and the red box is the button which has a go to next state action.
    I was going to have a second MSO with the open versions of the products that would be triggered by a button in each state of the first MSO, but this isn't possible.
    I don't want to put all the images in one MSO because that button is specifically to change the colour of the product.
    I guess one option could be to make each image in a scrollable frame so you swipe up/down to open/close.
    Any other possibilities?

Maybe you are looking for

  • Can not access Server admin site

    I can not access http://MYSERVER1:50000 site. I get error "The page cannot be displayed. The page you are looking for is currently unavailable.". But I was able to access even yesterday. Could you tell me any possible problems and how to fix the erro

  • How to simulate external IP addresses on a single server Hyper-V test environment

    I just bought a powerful laptop and installed a spare copy of Server 2012 R2 Datacentre on it. I am in the process of setting up a test LAN with DC, Exchange, TMG firewall web and backup servers. V host without the use of external physical routing? I

  • How to set JVM system properties in Oracle Portal ??

    Hello Guys, I want to set javax.net.ssl.trustStore="path to keystore" ,JVM system properties on oracle portal, Like i want to configure my keystore with oracle portal so that my application can make a success full connection with back end using https

  • Windows 8.1 installation Keep personal files option - does it delete files in drives other than c

    i am installing windows 8.1 . I am not getting an option to select custom installation. Does this delete files in my drives other than C? I want to install windows in c drive and want to keep the files in my D and E drives. What to do?

  • Ipod Touch shows apple then turns off

    so here it is, my ipod touch died and so I tried to connect it to the computer Via USB. It showed the apple then shut off and it keeps doing it... It also doesn't show up in "my computer" and a device... Please someone help!!