Button not Displaying in JRE 1.4.2

We have one Applet with Image button and it used to work fine with JRE 1.4.1. If I install JRE 1.4.2 in my Machine Image Buttons are not displaying.
We coded as follows
public class ImageButton extends JButton {
private Image image = null ;
private ActionListener listener = null ;
public ImageButton( Image image ) {
super(new ImageIcon ( image ));
this.image = image ;
setCursor(new Cursor ( Cursor.HAND_CURSOR ) ) ;
setBorderPainted ( false ) ;
setOpaque(false) ;
setBorder(null);
setMargin(new Insets ( 0, 0, 0, 0 ) ) ;
public class StartPanel extends OutputPanel implements ActionListener {
private ImageButton pb_START = new ImageButton ( AppletUtil.loadImage ( "start.gif" ) ) ;
private RadarApplet applet = null ;
/** A panel to hold buttons */
private JPanel pnl_BUTTONS = new JPanel () ;
* Constructor for StartPanel.
public StartPanel( RadarApplet applet ) {
super();
this.applet = applet ;
setBackground ( Color.white ) ;
pnl_BUTTONS.setLayout ( new FlowLayout( FlowLayout.CENTER, 3, 0 ) ) ;
pnl_BUTTONS.setBackground ( Color.white ) ;
pnl_BUTTONS.add ( pb_START ) ;
add ( pnl_BUTTONS ) ;
pb_START.addActionListener ( this ) ;
showProgress(false) ;
setLowerComponent ( pnl_BUTTONS ) ;
setText( RadarConfiguration.getString( "ready_to_download" ) ) ;
setDescription( RadarConfiguration.getString( "ready_to_download_desc" ) ) ;
* @see java.awt.event.ActionListener#actionPerformed(ActionEvent)
public void actionPerformed(ActionEvent e) {
( e.getSource() == pb_START )
new Thread ( new Runnable () {
public void run () {
applet.startProcess() ;
} ).start() ;
}

One thing to add for clarification, the problem I described is the application display problem and NOT the screen capture problem.
Yu-Ten Lee

Similar Messages

  • Link Button Not Display for Tax Amount

    Hi Experts,
    I have one Problem
    I am creating A/R Invoice Document and I have assing Tax Code for Item
    It will show Tax Amount but link button or drill button not display for tax amount
    pls give me solution
    Warm Regards,
    Sandip Kokate

    HI
    How to Clear Chumb
    And I am Selecting Tax Code but still it will not show Tax Amount Link button but Tax Amount is perfectly Match
    Regards,
    Sandip kokate

  • Any fix for TM buttons not displaying glitch?

    I see others are having problems with the Time Machine buttons not displaying properly. But I didn't see any fix yet. On my MacBook, the problem only occurs with an external display.
    Hope this gets fixed soon.

    It looks that you have made changes to the appearance of button that cause items and text to be larger.
    In your case this doesn't seem to work properly with the consequence that the middle part of the button gets distorted.
    I'm curious if this artifact would move to the other (Cancel) button or disappear if you would use the Tab key or cursor key to set focus to the Cancel button or if it is a problem with the label text that isn't default (OK or similar).

  • Iconic buttons not display icons

    Hello All,
    i have problem with the iconic buttons not display icons in forms 10g
    i have set button properties as
    iconic=yes
    icon filename=print
    my path for icons and forms are
    e:\backoffice
    plz any solution
    thx
    najeeb ur rehman

    Hi,
    Read the doc at :
    http://www.oracle.com/technology/ products/forms/pdf/webicons.pdf
    It's very descriptive and It'll help you...
    Regards ,
    Simon

  • How to fix the firefox buttons not displaying correctly (i.e. the "save file" button when trying to install an add on)?

    For example, the button for "save file" when downloading an add-on does not display correctly. It works nevertheless, but the button itself is not showing up correctly.
    *edit: sp errors*

    It looks that you have made changes to the appearance of button that cause items and text to be larger.
    In your case this doesn't seem to work properly with the consequence that the middle part of the button gets distorted.
    I'm curious if this artifact would move to the other (Cancel) button or disappear if you would use the Tab key or cursor key to set focus to the Cancel button or if it is a problem with the label text that isn't default (OK or similar).

  • InDesign 6 Buttons Not Displaying Correctly in Acrobat X

    Forgive me if this has been asked. When I create interactive buttons in InDesign 6, their display is erratic in Acrobat X. Sometimes they display correctly. Sometimes, their display is erratic and sometimes they do not display at all. I have noticed that in Acrobat X, the cursor changes to the hand over the correct area, but nothing happens when I click. Oddly enough, the buttons always display correctly in Reader. This is fine for my users but makes my job in doing the final prep very difficult. As further information, with small book files, the display is fine, but as pages are added, button display goes haywire.

    Lori,
    Thanks for your response. This is an incredibly painful bug. I hope Adobe is a little more attentive than they usually are in fixing this. I have more than 100 interactive books which I must convert and maintain (they're our equipment manuals). Not having full functionality, especially given the cost of the software, is a serious issue. Any suggestions as to who needs to be contacted for follow up?

  • InDesign 6 Interactive Buttons Not Displaying Correctly in Acrobat X

    Forgive me if this has been asked. When I create interactive buttons in InDesign 6, their display is erratic in Acrobat X. Sometimes they display correctly. Sometimes, their display is erratic and sometimes they do not display at all. I have noticed that in Acrobat X, the cursor changes to the hand over the correct area, but nothing happens when I click. Oddly enough, the buttons always display correctly in Reader. This is fine for my users but makes my job in doing the final prep very difficult.

    I’ve seen this reported in this past. It’s not an InDesign issue or the files wouldn’t work in Reader.
    If you get any answers in the Acrobat forum, please come back and share them.
    Bob

  • Group Layout- Button not displaying correctly

    Hello all,
    I am having a problem with group layout and having a button display incorrectly. Here is my code:
         public HRES_AboutBox(){
              initComponents();
         private void initComponents(){
              //--------Set-Up---Frame------------
              frameLocation = Toolkit.getDefaultToolkit().getScreenSize();
              frameWidth = frameLocation.width;
              frameHeight = frameLocation.height;
              aboutFrame = new JFrame(FRAMETITLE);
              aboutFrame.setPreferredSize(new Dimension(487,212));
              aboutFrame.setLocation(frameWidth / 4, frameHeight / 4);
              aboutFrame.setMaximumSize(new Dimension(800,600));
              aboutFrame.pack();
              aboutFrame.setVisible(true);
              aboutFrame.setDefaultCloseOperation(EXIT_ON_CLOSE);
              aboutFrame.setTitle(FRAMETITLE);
              setupComponents();
    private void setupComponents(){
         //--------Set-Up---Button------------
         closeButton = new JButton();
         closeButton.setName(BUTTONNAME);
         //--------Set-Up---Logo------------
         picURL = HRES_AboutBox.class.getResource("/testLogo.jpg");
         appPic = new ImageIcon(picURL);
         //--------Set-Up---Labels------------
         appTitleLabel = new JLabel();
         versionLabel = new JLabel();
         appVersionLabel = new JLabel();
         vendorLabel = new JLabel();
         appVendorLabel = new JLabel();
         homepageLabel = new JLabel();
         appHomepageLabel = new JLabel();
         appDescLabel = new JLabel();
         imageLabel = new JLabel();
         appTitleLabel.getFont().deriveFont
            (appTitleLabel.getFont().getStyle()| Font.BOLD, appTitleLabel.getFont().getSize() + 4);
         appTitleLabel.setText("T.E.S.T - Test Text for Label");
            appTitleLabel.setName("Application Title Label");
         versionLabel.getFont().deriveFont
           (versionLabel.getFont().getStyle() | Font.BOLD, versionLabel.getFont().getSize() + 4);
            versionLabel.setText(VERSIONLABELSTRING);
            versionLabel.setName("Version Label");
            appVersionLabel.setText(APPVERSIONLABELSTRING);
            appVersionLabel.setName("Application Version Label");
            vendorLabel.getFont().deriveFont
           (vendorLabel.getFont().getStyle() | Font.BOLD, vendorLabel.getFont().getSize() + 4);
            vendorLabel.setText(VENDORLABELSTRING);
            vendorLabel.setName("Vendor Label");
            appVendorLabel.setText(APPVENDORLABELSTRING);
            appVendorLabel.setName("Application Vendor Label");
            homepageLabel.getFont().deriveFont
            (homepageLabel.getFont().getStyle()| Font.BOLD, homepageLabel.getFont().getSize() + 4);
            homepageLabel.setText(HOMEPAGELABELSTRING);
            homepageLabel.setName("Homepage Label");
            appHomepageLabel.setText(APPHOMEPAGELABELSTRING);
            appHomepageLabel.setName("Application Homepage Label");
            appDescLabel.setText(APPDESCLABELSTRING);
            appDescLabel.setName("Application Description Label");
            imageLabel.setIcon(appPic);
            imageLabel.setName("Image Label");
            //--------Set-Up---Layout------------
            layout = new GroupLayout(aboutFrame.getContentPane());
            aboutFrame.getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                     layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                     .addGroup(layout.createSequentialGroup()
                         .addComponent(imageLabel)
                         .addGap(18, 18, 18)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.TRAILING)
                             .addGroup(GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
                                 .addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                                     .addComponent(versionLabel)
                                     .addComponent(vendorLabel)
                                     .addComponent(homepageLabel))
                                 .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                                 .addGroup(layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                                     .addComponent(appVersionLabel)
                                     .addComponent(appVendorLabel)
                                     .addComponent(appHomepageLabel)))
                             .addComponent(appTitleLabel, GroupLayout.Alignment.LEADING)
                             .addComponent(appDescLabel, GroupLayout.Alignment.LEADING, GroupLayout.DEFAULT_SIZE, 329, Short.MAX_VALUE)
                             .addComponent(closeButton))
                         .addContainerGap())
              layout.setVerticalGroup(
                     layout.createParallelGroup(GroupLayout.Alignment.LEADING)
                     .addComponent(imageLabel, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                     .addGroup(layout.createSequentialGroup()
                         .addContainerGap()
                         .addComponent(appTitleLabel)
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addComponent(appDescLabel)
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(versionLabel)
                             .addComponent(appVersionLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(vendorLabel)
                             .addComponent(appVendorLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED)
                         .addGroup(layout.createParallelGroup(GroupLayout.Alignment.BASELINE)
                             .addComponent(homepageLabel)
                             .addComponent(appHomepageLabel))
                         .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED, 19, Short.MAX_VALUE)
                         .addComponent(closeButton)
                         .addContainerGap())
              pack();
         public void closePasswordBox(){
              dispose();
         public static void main(String [] args){
              HRES_AboutBox hra = new HRES_AboutBox();
              if(hra.isVisible() == false){
                   hra.setVisible(true);
    }When I run this it comes out fairly alright but the button in the lower right corner does not display correctly, i have tried setting the size of the button but that does not solve the problem. If anyone can give any advice or info on how to get it to display right I would appreciate it.

    Hi,
    I usually only use the GroupLayout when using a GUI builder like the one in NetBeans.
    If I need to layout something manually I usually use a combination of the other layout managers.
    Sometimes I combine the two: eg. static layout with the GUI builder, dynamic layout by hand
    But if you want to use the GroupLayout manually, check:
    http://java.sun.com/docs/books/tutorial/uiswing/layout/group.html
    Otherwise check:
    http://java.sun.com/docs/books/tutorial/uiswing/layout/index.html

  • RSS, Back and Slideshow buttons not displaying correctly

    I just finished my new wesite in Iweb and published it to .mac. Everything is working fine in Iweb but when I look at the published site the RSS, Subscribe, Back buttons are displaying really screwy. There are added buttons where I didn't put them. How can I fix this? It is occurring specifically on my photo album pages.
    Janer

    Publish your site to and folder on the desktop and double click the index.html file to launch your site in the browser.
    If the page looks OK do a "Publish all to Mac".
    If its still not right you'll have to go back to the iWeb page and try resetting the buttons and then do a Publish All.

  • Table header sort buttons not displaying correctly.

    HI All,
    I'm having a problem with data table headers that seems to have appeared out of nowhere but is probably something simple I'm overlooking. To be sure it wasn't something deep in my app, I've created a simple project and recreated the problem.
    I created a simple web project and dropped a table onto the main page. I then bound the table to a full select of a myqsql table and then compiled. Simple enough, everything looks okay, until I opened the page in my browser.
    The table displays without borders and the sort buttons in the headings are not displayed but described such as this example
    " Button to sort column Date as the primary sort column."
    Any ideas?
    I'm not sure if this is a Creator error/setting or something else but I thought I'd start with Creator.
    Thanks
    Barry

    Some additional info
    The sort "buttons" have been replaced by links, that don't do anything. I even enabled all the multiple-select, pagination, etc features for the table and rather than be displayed as buttons, links have appeared for these functions as well.
    Thanks

  • WAD: Push button not displaying some Web Items

    Hi All,
    I have a web template 7.x in which there is a push button for "Export to PDF". There are some changes carried out to this web template, to include one radio button web item. My requirement is to display this Web Item on the export to PDF page.
    I have included this radio button web item in "Export to PDF" button list. However still it is not displayed on Export to PDF page.
    Is there any other setting which i am missing?
    Appreciate your quick response.
    Thanks.

    Hi Samruddhi,
    As per SAP Note 1069368 which talks about the limitations of Export to PDF functionality in WAD 7, the following webitems alone are supported on Export to PDF:-
    Supported Web items
    Analysis item
    Report item (see also the section 'Web application export with report items')
    Chart item
    Map item
    Information item
    Text item
    List of conditions
    List of exceptions
    Images (only from the MIME repository, see Note 484390)
    Thus Radio Button cannot be included in the exported PDF.
    --Priya

  • Social media buttons not displaying in safari

    Hi
    the social media buttons on my html site not displaying in safari browser, though fine in every other browser
    see site below
    http://digitalcinemafilms.co.uk/
    Can anyone help?
    thanks in advance
    Melanie

    Sorry forgot to say the java buttons dont work - facebook and twitter - the manually placed ones - vimeo and youtube work - so safari doest like java?

  • FI Objects button not displaying for Cust Disputed Objects -- Dispute Mgmt

    Hi
    FI Objects button is not displaying on a dispute case processing screen for Customer Disputed Objects.
    Help in this regard is highly appreciated.
    Thanks
    Rajanikanth

    Hi Mark
    I am also having the same issue. We are using EHP4.
    Please let me know Which case type need to be used under the - Define Case Type.
    I do not find any case type relevant to in define case types.
    Where should i activate the respective functionality for showing the FI Objects in Dispute case (UDM_Dispute).
    kindly reply accordingly
    Thanks
    Regards,
    Meenakshi.N

  • Wifi driver not working & button not displayed

    I recently upgraded to windows 10 from windows 8.1. After updating, I noticed that the wifi button was not displayed. When I searched in the settings, the Wifi option under wireless settings was not displayed, So i ran the troubleshooter. It said that the wifi adapter is not working properly. On a detailed report, it said "windows couldn't automatically bind the ip protocol stack to the network adapter".  I went to the device manager to see the network adapter, its a Broadcom BCm 43142 802.11 bgn wifi adapter, but the device status displays that "the device is working properly"What should i do??PLease help!!

    Hi:
    See if this driver works.
    http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?sp4ts.oid=5229457&sp...

  • Navigation Panel Pages button not displaying thumbnail pages

    Version of Acrobat = Standard 8.0.0
    OS = Win XP SP2
    Networked Dell Optiplex 620
    61.6GB Free disk space
    No error messages
    The Navigation Panel Pages button will not display pages in thumbnail format.
    When clicked the highlight around the button icon changes from a square with rounded corners, to just rounded corners on the left of the highlight. The right hand side of the highlight is cut off straight as if by the thumbnail panel that isnt visible.
    This behaviour is also repeated on the Bookmarks and Signatures buttons in the navigation Panel as well.
    Fiddling around with all the navigation panel settings or the document settings I can find has not made the thumbnail pages reappear.
    I havent been able to access the Updates section of the Adobe website today to apply any relevant updates.
    Cheers.
    Adam Crossingham
    Systems Support Analyst
    Heritage Managing Agency Limited

    Just in case, I would go through the updates to get AA8.1.2 and check if that was a bug in 8.0.0.

Maybe you are looking for

  • How to fix -1 error in Itunes...

    how to fix -1 error in Itunes...

  • Click wheel on 7-month old Photo iPod doesn't work

    my clickwheel does not work now. it was fine this morning and now I am p*ed off so much b/c my mom didn't buy the warranty even after the fact that this iPod replaced my first one due to a faulty battery and i don't want to have to pay to buy a new i

  • Adobe Form gets slow while filling data in form.

    Hello All, In my Form there are ten pages, when I fill data in the form it takes more time for each and every entry. Why this happens? What should I have to do to overcome this issue. Regards, Arun

  • High Noise Margin

    Hi there, It seems like my line has been changed to a different profile with the Downlink Noise Margin Target being set to 10dB. I'd like to have it back to 6dB as before.  I've lost over 0.6Mbps and my speeds weren't exactly that high to begin with!

  • Error when trying to search archive

    I'm having an issue when trying to search my messenger (v2.0.1) archives. When I choose File > Search Archive I get a "Novell Messenger Archive Login" box connecting to <serverIP>:8310. The globe will just spin and spin and finally after a few minute