Can't get those buttons working!

Hi,
I know a lot of people ask about buttons, but i have been through the forums and the manual and as many tutorials on the internet as I can find, and they still won't work.
I have a standard menu where i want a little star to appear next to the object when the button is selected. The only thing i can manage to get is a white or black overlay that covers the entire button area.
I have two different psd files that i have been using one for the menu and one for the overlay, I also tried making a single layer greyscale image as a tutorial i found on the internet suggested. nothing is working.
Please could someone help me figure out where I'm going wrong.
Thanks
Kelly

Take a look at the overlayss for the menus in this one. Not very pretty, but
http://www.geocities.com/mypix013/Subtitles.zip

Similar Messages

  • How can I get ThinkVantage button working again? (after a full HD rebuild)

    WindowsXP Pro, ThinkPad T60   (2007-F4G / UT0F4UK)
    Hi
    How do I get my Thinkvantage button working again?
    Background:
    I had a virus attack and as a precaution I zero-ed my ENTIRE hard disk (using KillDisk). I have managed to re-install most things, including I now have an icon on the taskbar called "Launch Lenovo ThinkVantage Toolbox". However I would prefer it to be fired up by my pressing the (blue) ThinkVantage button at the top of my keyboard.
    I have refused point blank to pay the (outrageous) price of GBP 40.00 for Lenovo to send me a CD with Windows etc on it, but have managed (eventually) to rebuild the entire disk driver by driver until the ThinkVantage Toolbox thing (version 6.0.5449.31) could take over and bring my drivers up to date when I Update my system.
    (It's just that they may have gone in incorrectly??)
    Is there something I should have done during installation.
    Ship

    Hi Ship,
    1. Install these for thinkvantage button:- 
    http://www-307.ibm.com/pc/support/site.wss/MIGR-62850.html
    http://www-307.ibm.com/pc/support/site.wss/MIGR-68000.html
    Hope it helps.
    Maliha (I don't work for lenovo)
    ThinkPads:- T400[Win 7], T60[Win 7], IBM 240[Win XP]
    IdeaPad: U350
    Apple:- Macbook Air [Snow Leopard]
    Did someone help you today? Compliment them with a Kudos!
    Was your question answered today? Mark it as an Accepted Solution! 
      Lenovo Deutsche Community     Lenovo Comunidad en Español 
    Visit my YouTube Channel

  • My iPhone 5 went black. I tried pushing the on/off button and the circle button at the same time.  It worked once and then it happened again and I can't get it to work.

    Iphone 5 went black.  Tried pushing on/off and circle at the same time.  Worked yesterday and then did it again today.  Can't get it to work.

    You need to hold those button longer until you see the apple logo, then release, then wait for the phone to boot back up.

  • I can't get my Button to work?

    Hello everyone,
    I been trying to get my Button working, but I don't understand what's wrong. I've tried a bunch of stuff, each with failure. Can any of you guys help me out here? I know that it's a little bit of a mess, but for some reason, it gives me a NullPointerException when I execute it. If I comment out 4 lines of code, about the getContentPane, it works without making a button. Problem is, I want to keep the Button in there. What should I do?
    Thanks
    import com.brackeen.javagamebook.graphics.ScreenManager;
    import com.brackeen.javagamebook.graphics.ScreenManager;
    import com.brackeen.javagamebook.sound.SoundManager;
    import com.brackeen.javagamebook.graphics.NullRepaintManager;
    import com.brackeen.javagamebook.input.*;
    import com.brackeen.javagamebook.input.GameAction;
    import com.brackeen.javagamebook.graphics.*;
    import com.brackeen.javagamebook.sound.*;
    import com.brackeen.javagamebook.test.GameCore;
    import java.util.List;
    import java.util.ArrayList;
    import javax.swing.border.Border;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    import java.io.File;
    import java.awt.event.KeyListener;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.midi.Sequence;
    import java.applet.AudioClip;
    import javax.sound.midi.Sequencer;
    import java.awt.image.BufferStrategy;
    import java.awt.image.BufferedImage;
    import java.lang.reflect.InvocationTargetException;
    public class Graphic2 implements ActionListener
         public static void main(String[] args)
    new Graphic2().run();
    private JPanel startButtonSpace;
    private static final long DEMO_TIME = 30000;
    private static final String EXIT = "Exit";
    private ScreenManager screen;
    private ActionListener action;
    private Image Background, Title, Start;
    private boolean isRunning;
    private Sequence music;
    private SoundManager soundManager = new SoundManager(PLAYBACK_FORMAT);
    private MidiPlayer midiPlayer;
    private Sound titleMusic;
    //Uncompressed, 44100Hz, 16-bit, Sterio, Signed, Little-Endian
    private static final AudioFormat PLAYBACK_FORMAT =
    new AudioFormat(44100, 16, 2, true, false);
    protected InputManager inputManager;
    protected GameAction configAction;
    protected GameAction exit;
    private JButton startButton;
    private static final DisplayMode POSSIBLE_MODES[] = {
    new DisplayMode(1024, 768, 32, 0),
    new DisplayMode(1024, 768, 24, 0),
    new DisplayMode(1024, 768, 16, 0),
    new DisplayMode(800, 600, 32, 0),
    new DisplayMode(800, 600, 24, 0),
    new DisplayMode(800, 600, 16, 0)
    public void loadImages()
    // load images
    Background = loadImage("Title Screen.jpg");
    Title = loadImage("Title.gif");
    Start = loadImage("Start.gif");
    public Image loadImage(String fileName)
    return new ImageIcon(fileName).getImage();
    public void animationLoop()
    long startTime = System.currentTimeMillis();
    long currTime = startTime;
    while (isRunning)
    long elapsedTime = System.currentTimeMillis() - currTime;
    currTime += elapsedTime;
    // draw and update screen
    Graphics2D g = screen.getGraphics();
    draw(g);
    g.dispose();
    screen.update();
    // take a nap
    try
    Thread.sleep(20);
    catch (InterruptedException ex) { }
    public void initSounds()
    //midiPlayer = new MidiPlayer();
    titleMusic = soundManager.getSound("movie02.wav");
    //music = midiPlayer.getSequence("potc.mid");
    public void run()
         NullRepaintManager.install();
         isRunning = true;
         initSounds();
         NullRepaintManager.install();
         screen = new ScreenManager();
         JFrame frame = screen.getFullScreenWindow();
    // create buttons
    startButton = createButton("Start.gif");
    startButton.setLocation(460, 500);
    //frame.getContentPane().setLayout(new FlowLayout());
    //frame.getContentPane().add(startButton);
    try
    DisplayMode displayMode =
    screen.findFirstCompatibleMode(POSSIBLE_MODES);
    screen.setFullScreen(displayMode);
    loadImages();
    soundManager.play(titleMusic);
    //if (frame.getContentPane() instanceof JComponent)
         //((JComponent)frame.getContentPane()).setOpaque(false);
    animationLoop();
    finally
    screen.restoreScreen();
    soundManager.stop();
    frame.validate();
    Window window = screen.getFullScreenWindow();
         public void draw(Graphics2D g)
    // draw background
    g.drawImage(Background, 0, 0, null);
    // draw image
    g.drawImage(Title, 342, 244, null);
    //g.drawImage(Start, 460, 500, null);
    public void actionPerformed(ActionEvent e)
    Object src = e.getSource();
    if (src == startButton)
    exit.tap();
    public void checkSystemInput()
    if (exit.isPressed())
    stop();
    public void stop()
    isRunning = false;
    public void createGameActions()
    exit = new GameAction("exit",
    GameAction.DETECT_INITAL_PRESS_ONLY);
    inputManager.mapToKey(exit, KeyEvent.VK_ESCAPE);
    public JButton createButton(String name)
    // load the image
    String imagePath = name;
    ImageIcon iconRollover = new ImageIcon(imagePath);
    int w = iconRollover.getIconWidth();
    int h = iconRollover.getIconHeight();
    // get the cursor for this button
    Cursor cursor =
    Cursor.getPredefinedCursor(Cursor.HAND_CURSOR);
    // make translucent default image
    /*Image image = screen.createCompatibleImage(w, h);*/
    Graphics2D g = screen.getGraphics();
    /*g.drawImage(iconRollover.getImage(), 0, 0, null);*/
    // create the button
    JButton button = new JButton();
    button.addActionListener(this);
    button.setIgnoreRepaint(true);
    button.setFocusable(false);
    button.setBorder(null);
    button.setContentAreaFilled(false);
    button.setCursor(cursor);
    button.setIcon(iconRollover);
    button.setRolloverIcon(iconRollover);
    button.setPressedIcon(iconRollover);
    return button;
    }

    1) Swing related questions should be posted in the Swing forum
    2) Use the "code" formatting tags when posting code so the code is readable.
    3) Post [url http://www.physci.org/codes/sscce.jsp]Simple, Executable Sample that shows your problem. The code you posted uses non-standard API's so we can't execute your code to see the incorrect behaviour.
    4) Read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/button.html]How to Use Buttons. Or maybe the section on "How to Use Layout Managers" will solve your problem. Either way read the tutorial.

  • Print button in Print view not working; how can I get it to work normally again?

    Please help: a few weeks ago, my Print button was working fine, then I imported a few 3rd party print templates, and now the Print button is not a clickable option. I've removed the 3rd party templates but it still does not work  (see button in bottom right hand corner) - how I can make the print button work again? Please advise..

    Because it is set to print to a JPEG File instead of send to a Printer. Change the Print To: pulldown in the Print Job panel to "Printer"

  • Can't get iphoto to work after tampering with library in Finder

    I think I made a big mistake when I tampered with the iphoto library in Pictures in Finder.
    Now I can't get iphoto to work. All the pictures are gone in iphoto, the spaces are there but they are blank.
    When I open iphoto it goes into the mode (little spinning wheel appears) where I have to "force quit".
    Any supggestions on what I can do? Thanks.

    The list that shows is just data files and such.
    You can burn the entire iPhoto Library folder.
    You can burn each Year folder or any other variation.
    This is my workflow. The reason I do it the way I describe is because I want a backup of just the photos and video clips I take so I can copy them to a partition of my external drive and burn them to disc. On the other partition I backup my entire users folder
    When iPhoto 5 first came out I really think it was programmed to import the smaller 30 sec video clips that cameras were taking at the time. Since then, digital cameras, at least my Canon S2 can take clips as large as your memory card can hold. The first time I tried to download my images and movie clips with my new camera, iPhoto stalled at the movie clips. I wasn't going to take any chances messing up my iPhoto Library so I started using Image Capture to download all my images and Movie clips. I actually like doing it this way a lot better. My movie clips are downloaded into my Movies folder where I then put them in a dated folder.
    My photos are downloaded into my Pictures folder, where I then put them in a dated folder. I import the dated folder into iPhoto. I also keep all dated folders from photo downloads in the Pictures folder till I get enough Movie folders and Photo folders to fill a DVD. I burn them and then delete them from the hard drive.
    This way I have the photos in iPhoto and I also have just the photos backed up to DVD.
    The Movies I keep on the hard drive in their dated folders until I use all the clips for my iMovie projects for the Year. I then make sure they are all burned to DVD, then I delete those from my hard drive.
    Using Image Capture to download images and video clips:
    Open up Image Capture which is found in the Applications folder.
    When it is opened, go to Image Capture/Preferences
    Under the General button choose
    Camera: When a camera is connected, open Image Capture.
    The next time you connect your camera Image Capture will open.
    In the window that opens you will see an Options button. Click on that button to set your options.
    To find out more about Image Capture (it can do a lot more) Click on Help in the menu bar when Image Capture is open.
    iPhoto: How to Change the "Open Automatically" Preference
    If you find you can't change any of Image Captures preferences or can't access any drop down menus or they are greyed out, check to make sure Image Capture is loose in the Applications folder and not within a sub folder.
    Here is info on backing up your photos:
    Backing up your iPhoto Library
    1. Burn the iPhoto Library folder in the Finder to a CD or DVD
    This method will give you a burned iPhoto Library folder that can be copied back to your computer to replace a damaged library. You can also use this method to backup an old library when you want to create a new Library to use as your current library.
    insert a blank CD into your internal or external CD-RW drive and copy the iPhoto library to the CD icon on your desktop. When you drag the CD icon to the Trash/Eject button in the Dock, you are given the option to burn the CD. Click Burn and the CD is created. To burn a DVD backup of your digital images, use a DVD and a SuperDrive-equipped Mac
    The easiest way to burn an iPhoto Library folder in the Finder that is larger than 4.7 gig to fit on one DVD is to burn sections of the folder.
    Drag the iPhoto Library folder to the desktop
    Double click the folder to open it.
    Drag each Year folder to the desktop.
    You should be left with the iPhoto Library folder containing all the data files, and the Year folders.
    Combine whatever year folders that amount closest to a DVD burn size on one DVD. Make sure that you have burned all the Year folders, then the iPhoto Library folder with all the data files.
    If you ever need to use this backup, insert the DVDs into your computer and copy the folders to the desktop. Put all the Year folders back into the iPhoto Library folder. Then put the iPhoto Library folder back into the Pictures folder.
    You can also check out applications for disc spanning:
    Disc-spanning software
    DropDMG
    Toast
    Dragon Burn 4
    BackityMac
    Retrospect Express-comes with some external drives
    Retrospect for Macintosh Desktop Edition
    2. Copy the ENTIRE iPhoto Library to an external drive formated for a Mac. Do not use this as your only back up as the external can also go bad.
    3. Copy the ENTIRE iPhoto Library to your iPod in disk mode
    4.Creating your own CDs and DVDs for viewing in iPhoto
    This method is a great way to back up Albums of older photos or even your entire library if it is small enough to fit on a DVD. This method will give you a library that will mount within iPhoto in the source column to be viewed. To import any images from this library they need to be dragged into your library in the source column.
    If you just want to backup the images in your library:
    1) Within iPhoto select the images, albums or rolls you want to backup. Go to Share>Export and export them to a newly created folder on the desktop. Follow the directions in the next link.
    Creating a CD or DVD to be viewed in Windows or by a photo processing company
    1.. If you backed up the entire iPhoto Library by burning within iPhoto or burning the folder in the Finder, make sure the burned copy is a good working copy before you delete the iPhoto Library folder in the Finder. You delete the iPhoto Library in the finder by dragging it to the trash when iPhoto is closed. When you next launch iPhoto it will create a new empty library for you to start anew.
    2. If you burned just the images, be aware that that is all you are archiving. No metadata will travel with the images such as comments, keywords, etc.
    You can then delete those images within iPhoto by highlighting them and hitting the delete key, then empty iPhoto's trash. Do this often and in groups so iPhoto will not choke on too many images.

  • I have a super slim usb 2.0.  Can't get it to work on macbook air.  Any ideas?

    I have just bought a super slim usb 2.0 disc drive but I can't get it to work on my macbook air and now a dvd is stuck in it!  Any ideas?

    Five ways to eject a stuck CD or DVD from the optical drive
    Ejecting the stuck disc can usually be done in one of the following ways:
      1. Restart the computer and after the chime press and hold down the
          left mouse button until the disc ejects.
      2. Press the Eject button on your keyboard.
      3. Click on the Eject button in the menubar.
      4. Press COMMAND-E.
      5. If none of the above work try this: Open the Terminal application in
          your Utilities folder. At the prompt enter or paste the following:
            /usr/bin/drutil eject
    If this fails then try this:
    Boot the computer into Single-user Mode. At the prompt enter the same command as used above. To restart the computer enter "reboot" at the prompt without quotes.

  • I am using Numbers on my iPhone5 and cannot get the app to do a simple (SUM) calculation.  It shows the formula correctly in the cell, but all I get for my long list of numbers to add is 0.  How can I get this to work?

    I am using Numbers on my iPhone5 and cannot get the app to do a simple (SUM) calculation.  It shows the formula correctly in the cell, but all I get for my long list of numbers to add is 0.  How can I get this to work?

    Oaky, at least we got that far.  Next step is to determine if all those "numbers" are really numbers.  Changing the format to "number" doesn't necessarily change the string to a number. The string has to be in the form of a number.  Some may appear to you and me as numbers but will not turn into "numbers" when you change the formatting from Text to Number. Unless you've manually formatted the cells to be right justified, one way to tell if it is text or a number is the justification. Text will be justified to the left, numbers will be justified to the right.
    Here are some that will remain as strings:
    +123
    123 with a space after it.
    .123

  • Can't get audio to work on my Panasonic Plasma smart TV when I connect a Toslink optical mini to Toslink optical digital to my mid 2009 MacBook pro?

    My MAc book pro 5.5 is mid 2009, Processor speed 2.26 GHZ MacOS X VERSION 10.68 Leopard. My Tv is a Panasonic Plasma smart TV TC-P50ST60. I ordered from Amazon a Toslink optical mini to Toslink optical digital cable meant for Macbook pro 2009 forward. I changed the settings on both TV and Mac but I still can't get audio to work on TV. I believe my Mac can't see the audio output from the TV. Any advice with step by step instructions on how to fix it? could it be they sent me defective cables? Thank You for your help.

    When I spoke with Apple I made sure I told them that my Macbook Pro was Mid 2009 and he ensured me again that those to cords will work. I realize that with the newer models it does put through both sound and audio but because of my model I don't think it does obviously because I have played with both Sound on my computer and Sound on the TV and nothing works. Sometime Apple can be good but man some people lol he even told me he verified my computer model on the computer and that's what came up.
    So new question would be what kind of cable would I be looking for to get audio? Anyone before I call back to Apple and see what they say hahah

  • HT200160 I can't get it to work

    I can't get it to work, allthough I've followed the exact steps... Anyone else experienced this and found another solution?

    sophia20,
    You need to add in those music you wanted to the Now Playing list from the Music Library first. Once you're in the Music Library, you should see listing such as Artists, Albums, Genes, etc. Select your music from the listing and add to the playing list.
    Jason

  • I purchased a MyBook Studio 4gb external hard drive.  I can't get it to work properly.  WD have assessed it and say its fine and that the problem is with Apple?

    I purchased a MyBook Studio 4gb external hard drive.  I can't get it to work properly.  WD have assessed it and say its fine and that the problem is with Apple?  Any ideas?

    Hello EucaBlue!
    So in Disk Utility, with the external harddrive selected, go to the Partition tab, and then under "Partition Layout:" select 1 Partition.
    After than, verify that it is formatting the drive as "Mac OS Extended (Journaled) under "Partition Information"
    Also verify that it's using using the GUID Partition Map under the Options button at the lower left of this window.
    Then click apply and confirm that you want to format the drive. It will ask you if you're sure, and probably for an Administrator password.
    Once your harddrive is formatted properly, you should be able to use Time Machine, or any other Mac backup software.
    Happy tinkering!
    Paul

  • I purchase the Forms plus,  bywidgets.mu, and can't get it to work.  any help?

    I purchase the Forms + bywidgets.mu
    I've followed the directions on the weblink (https://widgets.mu/se/FormsPlus/demo/)
    and still can't get anything to work.
    I just keep getting <> inside a box and that's it.
    Help please!

    Hi Lisa,
    Do you have a URL where I can take a look at the issue? It may be a configuration issue or it may be a bug so I just want to check and make sure.
    In terms of the radio buttons one, I just published up update to the Forms+ Widget this morning that includes a new way to do grouping for radio buttons. Creative Cloud should download the updated version of the .mulib file into your downloads folder (and it should now be called something like FormsPlus Bundle.mulib), and you can double click that to add the updated widgets to your Muse library. The one I'm referring to in particular is called the "Radio Group (Box Selection)" widget. Basically, when you drag the widget out onto the page, it shows a dotted line box and you simply drag and resize the box around the radio items you'd like to group together. The box itself won't be exported so you don't have to worry about that, but it will allow you to visually group them instead of doing so with labels.
    Let me know if you have any trouble getting the new update or using the box selection widget and I'd be happy to help further.
    Thanks,
    Andrew

  • Can't get firefox to work

    i can not get firefox to work on my computer with windows xp it worked once before but it won't work at all now i even unistalled it and re- installed it and still nothing could u please help me with this issue .

    Boot the computer in Windows Safe Mode with network support (press F8 on the boot screen) as a test.
    *http://www.bleepingcomputer.com/tutorials/how-to-start-windows-in-safe-mode/
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    If you do not keep changes after a restart or otherwise have problems with preferences, see:
    *http://kb.mozillazine.org/Preferences_not_saved

  • Can't get setSize to work

    I can't get setSize to work, I'm trying it on a button and I have tried various layout managers and have even tried without a layout manager.

    Is there anything at all I have to import or something?
    I tried this: Dimension l=new Dimension(200,100);
              b1.setPreferedSize(l);
    b1 is the button.
    and it can't find the method setPreferedSize.

  • Can't get Export to work in iPhoto 6.0

    I can't get Export to work. I haven't been a big iPhoto user but just upgraded from ver. 2.0.1 to 6.0 four days ago. Never used export before; however, going through the '06 tutorial I have tried and failed several times (but dragging to the desktop works). I select a photo and File-->Export and the "Export Photos" dialog comes up. I hit the "File Export button at the top" per iPhoto Help. Nothing happens; the File Export pane remains blank. Hitting "Export" doesn't work either. Only the Cancel button works. I have a relatively small library: about 200 from before the upgrade and 100 imported using the new alias feature. Would appreciate any advice.
    PowerMac G4 QuickSilver   Mac OS X (10.4.4)   1.12 GB RAM

    Hi Walt,
    did you use an iPhoto plugin before? Maybe you have an outdated flickr plugin that needs to be updated or disabled.
    Do a "get info" on iPhoto.app and see if you have that installed.
    The plugins are listed at the bottom of the "get info" panel

Maybe you are looking for

  • 3GS doesn't fit into iPhone Bluetooth Headset cradle?

    Just got my first iPhone, the 3GS. However, I already own the iPhone Bluetooth headset, which comes with a cradle that it supposed to accommodate the bluetooth and the iPhone. Since the new 3GS supposedly has the same dimensions as previous phones, i

  • Can I install Java 2 SDK 1.4.2 with NetBeans bundle on a Laptop?

    I'm new to programming and I'm getting an Alienware notebook with WindowsXP in a few months. I just want to be sure I can install and use Java on it. Any recommendations for literature on programming for beginners would be great too. Something easy t

  • Change the validity date in change number

    hi team, I want to change the validity date of a change number from 01.01.09 to 01.03.09. I am getting an error "A BOM has already been changed using a change number with the same valid-from date as the selected date 03.01.2009".  I can change the da

  • Issue on Business Rules in SOA

    Hello I am writing a business rule as per the screen shot and in one scenario it is firing twice even though i selected 'there is a case where' option. My requirement was if pem >0 or tool name is 'PEM' then add PEM. It is firing twice in case if pem

  • Internal order budget message

    Hi, We use internal order budget function, after budget is maintained in KO22, then i make a PO, if the PO value is over the budget, SAP will have a message saying over budget how much amount, but it did not tell directly the budget total amount, is