CP6 - Image button needs clicked twice.

I am having an issue where an image button inside a group sometimes needs to be clicked twice before the associated success action is fired.  This is how I have it set up.
3 groups on the slide are initially hidden.  on the slide I have a smart shape button that has an action that shows 1 of the two groups.  In the 1st group I have an image button that hides the 1st and shows the 2nd group.  (think of it as a next button)  Then in the 2nd group I have 2 image buttons.  One for previous (shows group #1) and one for next (shows #3).
Group 1 and 2 both have a next button in the same exact spot and if I open group 1, click next, click previous, and try to click next again (on group #1) I have to click twice to have it activate.  It's almost like the hit area for the next button in group #2 is still active even though the image button is hidden.  (It almost acts like a dead spot that goes away once you click it)
Is there any known issue with elements in groups not being hidden 100% and causing overlapping issues with other elements on the slide?

Hello and welcome on the forum,
Which version (exact number please) do you use?
Is it possible to insert a screenshot of the timeline with all groups expanded? If two (shape) buttons are in exact the same location at the same time, one of them can be hidden to have the other one active. I have been trying this out extensively, so I'm a bit puzzled about your problem.
Lilybiri

Similar Messages

  • Need to show popup when the Submit button is clicked for the second time ..

    Hi guys,
    I have a requirement where i need to show a popup or alert when the submit button is clicked twice . When it is clicked for the first time one method is been called and its process starts. When the user clicks the submit button for the second time they should be shown a popup stating "Submit button already been clicked, please clicked OK to continue".
    Can anyone help with this please , its really urgent requirement ?
    Thanks in advance

    Hi,
    I dont have any sample code to give you now. For quick reference, I can advice some psuedo steps to achieve your requirement. I dont have access to JDEV to test this. If any syntax errors then pls correct yourself.
    1. Extend Controller since it is standard page ( Refer Anil Passi site for steps to extend seeded ontroller)
    2. Write below logic in your Process Request method
    super.processRequest(oaPageContext, oaWebBean);
    pageContext.putSessionValue("status", "notInitiated");
    3. Include below logic in your PFR method
    if(pageContext.getSessionValue("status")!=null){
    if("notInitiated".equals(pageContext.getSessionValue("status")))
    super.processFormRequest(oapagecontext, oawebbean);
    pageContext.putSessionValue("status", "initiated");
    else
    String message = "Display error message as required";
    throw new OAException(message, OAException.ERROR);
    You may need to import required packages ( Related to OAException).
    Remeber, to sumbit the request, user need to refresh the page again so that "status" variable will be refreshed.
    Hope it helps.
    Thanks
    venkat

  • I have defined a finite state machine: pb with button : they need to be click twice

    I have defined a finite state machine and also defined a call to a C dll enabling to kill processus  since in my state machine I have to sequence several exe and being able to interupt them (This is the goal of mu manageProc dll)
    for the moment I make my integration test with the notepad.exe process
    the create and kill seems to work
    but I have problem wth my finite state machine I need to click twice on the differnts button for a given state to be really effective
    I have also used glabal variable and an event controller ( without that I was unable to get ffedback oo buuton click
    So my question are
    Is my problem due to the use of a shift register
    Please tell me if you need other file to understand my problem
    Regards
    Thibaut
    Attachments:
    Spectro State MAchine .vi ‏77 KB

    Thibaut,
    You should put the event structure into its own parallel while loop rather than sharing the loop with the state machine. Typically the terminals of the controls will be placed inside the event case where they are read. At least inside the loop.
    Run your VI with execution highlighting on (the light bulb on the diagram toolbar). This will show you how dataflow works.
    You probably do not need most of your global variables. Appropriate use of shift registers and wires would eliminate them.
    Lynn

  • Buttons need to be pressed twice.

    Hi people. Im authoring a dvd with lots of layered menus. I had first made the menus so that every button had its own layer when it was being navigated. But there came a problem when navigating the dvd with the mouse, the overlays (layers) would not work, but using the remote would. So I changed from layers to a single pict overlay file, and also some layers, so that for instance when one is resting upon a button, it will be highlit but there would also be a picture displayed next to it (a separate layer). Am I being clear? (this is difficult for my english).
    So the problem now, is that overlays work, but a button has to be pressed twice in order for it to be activated.
    This is in dvd sp 4.
    If anybody has had this experience or know what Im doing wrong, I would love to read it.
    Thanks in advance.
    Pepo

    There are two types of still menus you can use in DVDSP, and both are "supported" by the dvd spec. The first type is a simple highlight overlay (and really is the preferred way of creating a menu). The advantages are that the menu responds quickly and generally in a way that the typical user would expect them to (mouse over results in highlighting, and one click navigates to the object).
    The second type, and the type you are using, are layered menus. Basically what DVDSP is doing is making an identical menu (with the exception of the changed content, like your button) for each state. One needs to click on it once to select it (and tell the dvd player to go to the menu with the change in the button appearance/associated image/etc) and click a second time to navigate to the object. You can have 'highlights' just like you would with the menus I described above, but in this instance the highlight appears but it still requires you to click twice. These kinds of menus are often confusing for the viewer, because they don't behave like what most are familiar with. They also can be quite sluggish in performance, and can behave very slowly on some set top players. For the most part (although the graphics can definitely look much better), I think they are best avoided.
    Jim

  • Clicking twice on a Form submit button

    I have problem that I need either help on solving or ideas on a different solution please.
    I have some code in a request scope backing bean that sets a Boolean in a session cope bean to true. This indicates that the form has been submitted within this session.
    So if a user tries to submit the same form in the same session, the form backing bean will check the session bean property, see that it is set to true and the method which handles the Form�s commandButton in the backing bean returns null, with a message saying that the form can not be resubmitted.
    Also within the session bean I set a property that indicates if a credit card payment was made or not, and when the form backing bean sends its message on a form resubmit, it also informs the user if a credit card transaction had actually occurred or not.
    This works fine when you fully submit the form and return to the form page and try to resubmit it. But (there always is a but) when originally submitting the form, if a user clicks the submit button once, and then once again in quick succession (not a double click though) the session form property that gets set to true when the credit card payment is made does not get resolved correctly. It gets resolved as false (this is how it is initialized), even though it was set to true as a result of the first click.
    Only in the case of the clicking twice scenario I get an exception in the log file, which I can�t trace back. The request is directed through a filter �OrderAccessControlFilter� which seems to mask where the exception originally occurred.
    Sorry for the long explanation, I would appreciate any help.
    Below is the exception:
    10-Feb-2005 10:55:16 com.sun.faces.lifecycle.InvokeApplicationPhase execute
    SEVERE: Index: 0, Size: 0
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
         at java.util.ArrayList.RangeCheck(ArrayList.java:507)
         at java.util.ArrayList.remove(ArrayList.java:392)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:271)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
         at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at com.syndero.lingo.order.OrderAccessControlFilter.doFilter(OrderAccessControlFilter.java:199)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:540)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    10-Feb-2005 10:55:16 com.syndero.lingo.order.OrderAccessControlFilter doFilter
    SEVERE: Error in OrderAccessControlFilter:
    javax.servlet.ServletException: Index: 0, Size: 0
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:209)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at com.syndero.lingo.order.OrderAccessControlFilter.doFilter(OrderAccessControlFilter.java:199)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:540)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)

    Hi,
    I am also facing the same problem. I have 2 buttons on my page, enable and disable. When I click enable and then disable in quick succession, the application crashes.
    Also, I put in some System out statemets in the button handlers and found out that a new thread is spawned for every request made. Each if this thread tries to service all the actions performed on the page.
    For eg : if i click on Enable and the Disable in my application, the flow is like:
    1. Thread 1 goes into the enable handler
    2. A new Thread 2 goes into the enable handler
    3. Thread 1 returns from enable action
    4. Thread 1 goes into the disable handler
    5. Thread 2 returns from enable handler
    6. Thread 1 returns from disable handler.
    7. Application crashes.
    Can anyone please explain this flow?
    Thanks,
    Mahajan.

  • [JS CS3] ScriptUI button wants to be clicked twice

    Hi I created a sample scriptUI dlg with three buttons:
    res =
    ]"dialog { \
    ]s: StaticText { text:'Chosissez une période:' }\
    ]]period: DropDownList { alignment:'center' }, \
    ]]s: StaticText { text:'Chosissez un fichier:' }\
    ]]files: DropDownList { alignment:'center' }, \
    ]]buttons: Group { orientation: 'row', alignment: 'center', \
    ]]] revealBtn: Button { text:'Ouvrir le dossier'}, \
    ]]] okBtn: Button { text:'Ouvrir le fichier'}, \
    ]]] cancelBtn: Button { text:'Annuler', properties:{name:'cancel'} } \
    win = new Window (res);
    win.buttons.okBtn.onClick = function ()
    ]win.close(1);
    win.buttons.revealBtn.onClick = function ()
    ]win.close(45);
    if(win.show()==1)
    ]clickButton("file","Le fichier ne se trouve plus ici :");
    else if(win.show()==45)
    ]clickButton("folder","Le dossier n'a pas été trouvé.");
    b The cancel button works fine and actually all the buttons too. Except that for the two open buttons, I need to click twice to make them run.
    Any idea ?
    TIA Loic

    Hi Peter,
    Thanks for the tip. I should have see it. Nevertheless I thought it was the way to go.
    I thought the script should have ignored one of the conditions. I will try to do differently so.
    Thanks a lot
    Loic

  • On click Image button links to extern. file - but then advances forward a slide....

    I have an image button that On Success links to an extern. file - which is an index/glossary of a the project modules. However, when clicked, the project moves forward a slide. I would like the project to remain on the same slide when the 'Glossary/index' button is clicked, rather than advance forward. Anyone know how to achieve this?
    Thanks in advance,
    Rich

    Hi and thanks very much for the response. I'm sure I'll be around here for a while on the forums as I've just started using Captivate!
    As you say the button when clicked releases the playhead and the timeline advances to the next slide, which then pauses as I have 'next/back slide' buttons on each slide (sorry i didn't mean to imply it immediatley skips to the next slide).
    Although this is normal behaviour for the image button, I need a work-around as the button in this instance is merely meant to open an external 'pop-up' of the index (of all the learning modules) for the learner, rather than effect anything on the actual module being currently used.
    Sounds like you're application of 'Assign rdcmndGotoFrame with rdinfoCurrentFrame' would be perfect - however I am a novice with Captivate so would greatly appreciate any info on how to apply this work-around to my Glossary button (baring in mind the Action On Success property is already used to open the pop-up - but I assume the 'Assign rdcmndGotoFrame with rdinfoCurrentFrame' is applied using another property?)
    Thanks very much for your help,
    R

  • Animate 2 images on the click of a button

    I'm working on a script to display a short animation once the user has clicked a button; however I currently have the following error;
    Cannot find method; animateTransform()
    All I need is for plate1 to move South East whilst plate2 is moving North West for only a matter of seconds.
    I've never worked with animation in Java so apologies in advance for the state of the code shown below;
    import java.net.URISyntaxException;
    import java.net.URL;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.imageio.ImageIO;
    public class TransformFault2 implements ActionListener
        private static final String IMAGE_PATH = "img/transform_screen.gif";
         private static final String plate1_IMAGE_PATH = "img/transform_plate1.gif";
         private static final String plate2_IMAGE_PATH = "img/transform_plate2.gif";
         private ImageIcon animateBtn, boundsBtn;
         private JButton animateOption, boundsOption;
         private int x_1 = 225; // horiz
         private int y_1 = 265; // vert
         private int x_2 = 290;
         private int y_2 = 165;
         private boolean transformFault = false;
         private Timer timer;
         private ActionListener timerListener;
        private BufferedImage myImage = null;
         private BufferedImage plate1 = null;
         private BufferedImage plate2 = null;
        private JPanel imagePanel = new JPanel(null)
            protected void paintComponent(Graphics g)
                super.paintComponent(g);
                if (myImage != null)
                    g.drawImage(myImage, 0, 0, this);
                   if (plate1 != null)
                    g.drawImage(plate1, x_1, y_1, this);
                   if (plate2 != null)
                    g.drawImage(plate2, x_2, y_2, this);
              public void animateTransform()
                        do
                             x_1 = +1;
                             y_1 = +1;
                             x_2 = -1;
                             y_2 = -1;
                        while (transformFault = true);
                   repaint();     
                   try
                        Thread.sleep(4000);
                   catch (InterruptedException e)
        public TransformFault2()
              timerListener = new ActionListener()
               public void actionPerformed(ActionEvent actionEvent)
                        transformFault = false;
                        timer.stop();
              timer = new Timer(4000, timerListener);
              timer.setRepeats(false);
              animateBtn = new ImageIcon(getClass().getResource("img/animate.gif"));
              animateOption = new JButton(animateBtn);
              animateOption.setBorder(null);
              animateOption.setContentAreaFilled(false);
              animateOption.setSize(164,66);
              animateOption.setLocation(500,500);
              animateOption.setOpaque(false);
              animateOption.addActionListener(this);
              animateOption.setActionCommand("animate");
              boundsBtn = new ImageIcon(getClass().getResource("img/boundaries.gif"));
              boundsOption = new JButton(boundsBtn);
              boundsOption.setBorder(null);
              boundsOption.setContentAreaFilled(false);
              boundsOption.setSize(164,66);
              boundsOption.setLocation(200,500);
              boundsOption.setOpaque(false);
              boundsOption.addActionListener(this);
              boundsOption.setActionCommand("boundaries");
            imagePanel.setPreferredSize(new Dimension(800, 600));
            imagePanel.add(animateOption);
              imagePanel.add(boundsOption);
              imagePanel.setBackground(Color.WHITE);
            try
                myImage = createImage(IMAGE_PATH);
            catch (IOException e)
                e.printStackTrace();
            catch (URISyntaxException e)
                e.printStackTrace();
              try
                plate1 = createImage(plate1_IMAGE_PATH);
            catch (IOException e)
                e.printStackTrace();
            catch (URISyntaxException e)
                e.printStackTrace();
              try
                plate2 = createImage(plate2_IMAGE_PATH);
            catch (IOException e)
                e.printStackTrace();
            catch (URISyntaxException e)
                e.printStackTrace();
         public void actionPerformed(ActionEvent e)
          if(e.getActionCommand().equals("animate")) 
                   timer.start();
                   animateTransform();
         else if(e.getActionCommand().equals("boundaries")) 
             WOT2.contentCardLayout.show(WOT2.contentCard, "Boundaries Screen");
        private BufferedImage createImage(String path) throws IOException,
                URISyntaxException
            URL imageURL = getClass().getResource(path);
            if (imageURL != null)
                return ImageIO.read(new File(imageURL.toURI()));
            else
                return null;
        public JPanel getImagePanel()
            return imagePanel;
    }Any help would be much appreciated!

    When using JLabel to place the images I receive no errors when compiling or in the console upon execution; however the images do not appear on-screen.
    When the animate button is clicked nothing happens but Java is crashing, so I assume there must be a problem with the loop?
    Amended code can be seen below;
    public class TransformFault implements ActionListener
        private static final String IMAGE_PATH = "img/transform_screen.gif";
         private ImageIcon animateBtn, boundsBtn, plate1img, plate2img;
         private JButton animateOption, boundsOption;
         private JLabel plate1, plate2;
         private int x_1 = 225; // horiz
         private int y_1 = 265; // vert
         private int x_2 = 290;
         private int y_2 = 165;
         private boolean transformFault = true;
         private Timer timer;
         private ActionListener timerListener;
        private BufferedImage myImage = null;
        private JPanel imagePanel = new JPanel(null)
            protected void paintComponent(Graphics g)
                super.paintComponent(g);
                if (myImage != null)
                    g.drawImage(myImage, 0, 0, this);
        public TransformFault()
              timerListener = new ActionListener()
               public void actionPerformed(ActionEvent actionEvent)
                        transformFault = false;
                        timer.stop();
              timer = new Timer(4000, timerListener);
              timer.setRepeats(false);
              animateBtn = new ImageIcon(getClass().getResource("img/animate.gif"));
              animateOption = new JButton(animateBtn);
              animateOption.setBorder(null);
              animateOption.setContentAreaFilled(false);
              animateOption.setSize(164,66);
              animateOption.setLocation(500,500);
              animateOption.addActionListener(this);
              animateOption.setActionCommand("animate");
              boundsBtn = new ImageIcon(getClass().getResource("img/boundaries.gif"));
              boundsOption = new JButton(boundsBtn);
              boundsOption.setBorder(null);
              boundsOption.setContentAreaFilled(false);
              boundsOption.setSize(164,66);
              boundsOption.setLocation(200,500);
              boundsOption.addActionListener(this);
              boundsOption.setActionCommand("boundaries");
              plate1img = new ImageIcon(getClass().getResource("img/transform_plate1.gif"));
              plate1 = new JLabel(plate1img);
              plate1.setBorder(null);
              plate1.setOpaque(false);
              plate1.setLocation(x_1, y_1);
              plate2img = new ImageIcon(getClass().getResource("img/transform_plate2.gif"));
              plate2 = new JLabel(plate2img);
              plate2.setBorder(null);
              plate2.setOpaque(false);
              plate2.setLocation(x_2, y_2);
            imagePanel.setPreferredSize(new Dimension(800, 600));
            imagePanel.add(animateOption);
              imagePanel.add(boundsOption);
              imagePanel.add(plate1);
              imagePanel.add(plate2);
              imagePanel.setBackground(Color.WHITE);
            try
                myImage = createImage(IMAGE_PATH);
            catch (IOException e)
                e.printStackTrace();
            catch (URISyntaxException e)
                e.printStackTrace();
         public void actionPerformed(ActionEvent e)
          if(e.getActionCommand().equals("animate")) 
                   timer.start();
                   animateTransform();
         else if(e.getActionCommand().equals("boundaries")) 
             WOT2.contentCardLayout.show(WOT2.contentCard, "Boundaries Screen");
        private BufferedImage createImage(String path) throws IOException,
                URISyntaxException
            URL imageURL = getClass().getResource(path);
            if (imageURL != null)
                return ImageIO.read(new File(imageURL.toURI()));
            else
                return null;
        public JPanel getImagePanel()
            return imagePanel;
         public void animateTransform()
                   do
                             x_1 = +1;
                             y_1 = +1;
                             x_2 = -1;
                             y_2 = -1;
                   while (transformFault = true);
                   imagePanel.repaint();     
                   try
                        Thread.sleep(4000);
                   catch (InterruptedException e)
    }

  • SUBMIT button works only when clicked twice... Online interactive form

    Hi,
    I have created a interactive form with SubmitToSAP button. In this I will enter a contract number and will click SUBMIT button.
    For the first time it is fetching the contract details properly.
    In the same form, i am changing  the previously entered value with another contract number and clicking SUBMIT.
    Now the details for the previously entered contract number is only displayed. Again if i try for the same value ( which i used for the second time )  and press submit, it is workin correctly.
    So, the problem is, except for the very first time SUBMIT button action, the button works fine only when clicked twice..
    please help me in solving this issue..
    Regards,
    Surya.

    Hi,
        In addition to my previous post, I am also using RESET FORM button from Library.
    First I am entering the contract number (say 400000000) in the form and clicking submit button. The contract details are fetched and displayed in the form.
    Now i am Resetting the form using Reset Button, and giving new contract number (say 400000020).  When  I pressed Submit button , the details of the first entered contract number (400000000)  is coming.
    Then again I am giving 400000020 or any other number, it is fetching the details correctly for that number...
    Can anyone help me in this issue..
    Thanks,
    Surya.

  • HT201406 my home button needs to be pressed twice to move.

    Is there any way I can fix my 4G iphone.  The home button needs to be pressed at least twice to function.

    i'm having the same problem with mine cept mine is an iPod touch i'm about to go to the apple store or geek squad or something to get it fixed because i am not replacing this thing not after all we've been through together

  • Image button click event not triggered in IE11

    I have an Image button, on its click event textbox is displayed, but it is not working in IE 11. It is working fine on chrome

    Please post questions related to ASP.NET in the ASP.NET forums (http://forums.asp.net).

  • Getting mouse click coordinates with image button

    I'm using ADF Rich Client components in JDeveloper 11g Technology preview.
    I have to get the mouse click coordinates with an image button. In the page I put something like this:
    <af:commandButton text="commandButton1" icon="ambiente.jpg"
    actionListener="#{prova.listen}" action="#{prova.esegui}" />
    In the listener method of the managed bean I try to get the coordinates with this code:
    public void listen(ActionEvent e)
    FacesContext context = FacesContext.getCurrentInstance();
    String clientId = e.getComponent().getClientId(context);
    Map requestParams =
    context.getExternalContext().getRequestParameterMap();
    int x =
    new Integer((String) requestParams.get(clientId + ".x")).intValue();
    int y =
    new Integer((String) requestParams.get(clientId + ".y")).intValue();
    but it doesn't work. It seems that there aren't in the request the coordinates of the image point clicked. Is it true? How can I do that with ADF ?

    Hi,
    the mouse position is not part of the request parameters send. You will have to use client side JavaScript for this
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <f:view>
    <af:document>
    <f:verbatim>
    <![CDATA[
    <script>
    function handleMouseCoordinates(event) {      
    alert("x: "+event.getPageX()+" y: "+event.getPageY());
    </script>
    ]]>
    </f:verbatim>
    <af:form>
    <af:commandButton text="My Click Button" icon="/images/jdev_cup.gif">
    <af:clientListener method="handleMouseCoordinates" type="click"/>
    </af:commandButton>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Frank

  • Why sometimes I have to click twice on a Button?

    Hello All.
    I have a curiosity. Why sometimes I have to click twice on a button to its to run event?
    For example, I have a button that changes the presence of a page for hidden, but I have to click twice on it to run the event.
    Thanks

    Srini.
    Exactly this! My script was with error. Now It´s works very well.
    Thanks you for your correct reply.

  • Newbie here. Moderator PhHein closed my discussion, needed help on finding Java 7 button to click on. Started another discusion and this was one of the answers.

    Being new to the site, by accident I put my question about updating something in the wrong spot. I put this question in the topic Community Feedback and Suggestions (Do Not Post Product-Related Questions Here
    I posted my question where I throught the Community could give me feedback and suggestions. I am not an IT person, I did not know that upgrading something would be considered writing about a product. Again, I am not a IT person,
    instead was a graphic designer so I do not think like IT people. The moderator PhHein closed the thread because of my mistake and no one directed me to the right spot. It is frustrating enough not to be able to update something.
    Then I get tossed to the wind by Moderator PhHein.
    I started another discussion and was treated so nice, ha. I got bashed by Billy V's, you can see his comment in the Orange type below.
    I do not understand the rudeness of the moderators and other posters.
    This is my last post and I no longer want help. I won't be updating Java 7. I thought I would get a hello, welcome, and a polite answer. This is not a site that I consider people friendly.
    I did not get any response to my reporting what Billy said as abuse. I guess I just wanted to let some people know.
    Is this a site where people bash instead of giving you help? L
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    created by BillyVerreynne in Community Feedback and Suggestions (Do Not Post Product-Related Questions Here
    "Well, I am very unhappy that you think your time is too valuable to browse through English (clicking HOME on the tab at the top of the page) and find a Java forum for your post about Java..
    And instead waste our time by asking a product question in a forum that EXPLICITLY states Do Not Post Product-Related Questions Here."
    Perhaps your inability to install Java (finding that shiny install button to click and have fun) is related to your inability to read and comprehend simple instructions? Like NOT posting product questions in this forum space??"

    ... then you post this stream of unconciousness to the wrong place as well.
    Your irritation has no place in this Java programming space.
    I suggest you spend more time reading the contents of the web site.
    This new post is also locked.

  • Image Button click?

    I would like have a row of image buttons in my view.
    But normal buttons do not have the possibility to add an image in stead of text.
    So I put images on my view. Now the layout is fine, but the image element do not have an OnClick...
    Is this impossible?

    > Hi,
    >
    > You Can add images to buttons.
    > IWDButton modify = (IWDButton)
    > view.getElement("Modify");
    > if (modify != null) {
    > modify.setImageSource("edit.gif");
    > }
    > //copy this image(edit.gif) in the project -> src ->
    > mimes -> components.
    >
    > Regards,
    > Sridhar
    Perfect...thanks for sharing!
    BK

Maybe you are looking for

  • Macbook Pro to HDTV audio cable

    I'm currently trying to run my Macbook Pro display through a Vizio E370VL LCD HDTV, and while I do get full picture, there is no audio present. I have a Moshi Mini DP to HDMI Adapter I use that supports audio, but after doing some research I came to

  • Using Variable in Email

    New to OWB.. Trying to include system info in emails.. example: database name, hostname etc... Any help would be appreciated.

  • Why is the ipod insisting on pausing between tracks?

    My ipod 30g is pausing between tracks and there is no apparent way of altering that. This is a serious unresolved problem with the ipod which I feel needs to be discussed until Apple either recalls it or resolves the issue. I did a search for this to

  • About the Mobile Agent and JAVA.

    Is it possible to design a simple mobile agent system by using RMI or by using the EJB, and so on? Although there are some platform such Aglet and voyager. But I don't hope to do our project on them. Is the EJB a good choice for a Mobile Agent system

  • Class not found error while acc ejb

    Hi, I am trying to access the ejb deployed in orion container from jserv servlet or jsp,it gives me following error- javax.xml.parsers.FactoryConfigurationError: java.lang.ClassNotFoundException: org.apache.crimson.jaxp.DocumentBuilderFactoryImpl at