Why do the menus diseappear? please help.....

I am quite new to Java and I use project builder on my mac running OSX. Anyway I found some sample code and I was wondering if anybody could help me out. Basically when the app is compiled it draws "Hello World" in the window and there are two menus in the menubar -> 'File' and 'Edit', but when you go to the about box the menus disappear until you either close the aboutbox or bring the focus back to the main window.
How can I always keep the menus showing when there are multiple windows in the app. Remember that mac menus are fixed to the top of the screen...
anyway heres the code:
import java.awt.*;
import java.awt.event.*;
import com.apple.mrj.*;
import javax.swing.*;
public class test extends JFrame
                      implements  ActionListener,
                                  MRJAboutHandler,
                                  MRJQuitHandler
    static final String message = "Hello World!";
    private Font font = new Font("serif", Font.ITALIC+Font.BOLD, 36);
    protected AboutBox aboutBox;
    // Declarations for menus
    static final JMenuBar mainMenuBar = new JMenuBar();
    static final JMenu fileMenu = new JMenu("File");
    protected JMenuItem miNew;
    protected JMenuItem miOpen;
    protected JMenuItem miClose;
    protected JMenuItem miSave;
    protected JMenuItem miSaveAs;
    static final JMenu editMenu = new JMenu("Edit");
    protected JMenuItem miUndo;
    protected JMenuItem miCut;
    protected JMenuItem miCopy;
    protected JMenuItem miPaste;
    protected JMenuItem miClear;
    protected JMenuItem miSelectAll;
    public void addFileMenuItems() {
        miNew = new JMenuItem ("New");
        miNew.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_N, java.awt.Event.META_MASK));
        fileMenu.add(miNew).setEnabled(true);
        miNew.addActionListener(this);
        miOpen = new JMenuItem ("Open...");
        miOpen.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_O, java.awt.Event.META_MASK));
        fileMenu.add(miOpen).setEnabled(true);
        miOpen.addActionListener(this);
        miClose = new JMenuItem ("Close");
        miClose.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_W, java.awt.Event.META_MASK));
        fileMenu.add(miClose).setEnabled(true);
        miClose.addActionListener(this);
        miSave = new JMenuItem ("Save");
        miSave.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_S, java.awt.Event.META_MASK));
        fileMenu.add(miSave).setEnabled(true);
        miSave.addActionListener(this);
        miSaveAs = new JMenuItem ("Save As...");
        fileMenu.add(miSaveAs).setEnabled(true);
        miSaveAs.addActionListener(this);
        mainMenuBar.add(fileMenu);
    public void addEditMenuItems() {
        miUndo = new JMenuItem("Undo");
        miUndo.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_Z, java.awt.Event.META_MASK));
        editMenu.add(miUndo).setEnabled(true);
        miUndo.addActionListener(this);
        editMenu.addSeparator();
        miCut = new JMenuItem("Cut");
        miCut.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_X, java.awt.Event.META_MASK));
        editMenu.add(miCut).setEnabled(true);
        miCut.addActionListener(this);
        miCopy = new JMenuItem("Copy");
        miCopy.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_C, java.awt.Event.META_MASK));
        editMenu.add(miCopy).setEnabled(true);
        miCopy.addActionListener(this);
        miPaste = new JMenuItem("Paste");
        miPaste.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_V, java.awt.Event.META_MASK));
        editMenu.add(miPaste).setEnabled(true);
        miPaste.addActionListener(this);
        miClear = new JMenuItem("Clear");
        editMenu.add(miClear).setEnabled(true);
        miClear.addActionListener(this);
        editMenu.addSeparator();
        miSelectAll = new JMenuItem("Select All");
        miSelectAll.setAccelerator(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_A, java.awt.Event.META_MASK));
        editMenu.add(miSelectAll).setEnabled(true);
        miSelectAll.addActionListener(this);
        mainMenuBar.add(editMenu);
    public void addMenus() {
        addFileMenuItems();
        addEditMenuItems();
        setJMenuBar (mainMenuBar);
    public test() {
        super("test");
        this.getContentPane().setLayout(null);
        addMenus();
        aboutBox = new AboutBox();
        Toolkit.getDefaultToolkit();
        MRJApplicationUtils.registerAboutHandler(this);
        MRJApplicationUtils.registerQuitHandler(this);
        setVisible(true);
    public void paint(Graphics g) {
                super.paint(g);
        g.setColor(Color.blue);
        g.setFont (font);
        g.drawString(message, 40, 80);
    public void handleAbout() {
        aboutBox.setResizable(false);
        aboutBox.setVisible(true);
        aboutBox.show();
    public void handleQuit() {
        System.exit(0);
    // ActionListener interface (for menus)
    public void actionPerformed(ActionEvent newEvent) {
        if (newEvent.getActionCommand().equals(miNew.getActionCommand())) doNew();
        else if (newEvent.getActionCommand().equals(miOpen.getActionCommand())) doOpen();
        else if (newEvent.getActionCommand().equals(miClose.getActionCommand())) doClose();
        else if (newEvent.getActionCommand().equals(miSave.getActionCommand())) doSave();
        else if (newEvent.getActionCommand().equals(miSaveAs.getActionCommand())) doSaveAs();
        else if (newEvent.getActionCommand().equals(miUndo.getActionCommand())) doUndo();
        else if (newEvent.getActionCommand().equals(miCut.getActionCommand())) doCut();
        else if (newEvent.getActionCommand().equals(miCopy.getActionCommand())) doCopy();
        else if (newEvent.getActionCommand().equals(miPaste.getActionCommand())) doPaste();
        else if (newEvent.getActionCommand().equals(miClear.getActionCommand())) doClear();
        else if (newEvent.getActionCommand().equals(miSelectAll.getActionCommand())) doSelectAll();
    public void doNew() {}
    public void doOpen() {}
    public void doClose() {}
    public void doSave() {}
    public void doSaveAs() {}
    public void doUndo() {}
    public void doCut() {}
    public void doCopy() {}
    public void doPaste() {}
    public void doClear() {}
    public void doSelectAll() {}
    public static void main(String args[]) {
        new test();
}������������������������������������������
and the coe of the aboutbox
������������������������������������������
//      File:   AboutBox.java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class AboutBox extends JFrame
                      implements ActionListener
    protected JButton okButton;
    protected JLabel aboutText;
    public AboutBox() {
        super();
        this.getContentPane().setLayout(new BorderLayout(15, 15));
        this.setFont(new Font ("SansSerif", Font.BOLD, 14));
        aboutText = new JLabel ("About test");
        JPanel textPanel = new JPanel(new FlowLayout(FlowLayout.CENTER, 15, 15));
        textPanel.add(aboutText);
        this.getContentPane().add (textPanel, BorderLayout.NORTH);
        okButton = new JButton("OK");
        JPanel buttonPanel = new JPanel(new FlowLayout(FlowLayout.CENTER, 15, 15));
        buttonPanel.add (okButton);
        okButton.addActionListener(this);
        this.getContentPane().add(buttonPanel, BorderLayout.SOUTH);
        this.pack();
    public void actionPerformed(ActionEvent newEvent) {
        setVisible(false);
}thanks

Why not make the about box a dialog in the frame which initially has setVisible(false) and only appears when required by chaning this to true, then back to false on closing.
That way it shouldn't interfere with the menus, as it is always there, just not always visible...

Similar Messages

  • Why all the crashes?  Please help.

    I can't go a day without multiple crashes.  It seemingly all started when I upgraded to Lion.
    Interval Since Last Panic Report:  20062 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    E71B5177-E727-4636-AF21-D671256C937A
    Tue Oct 18 09:52:24 2011
    panic(cpu 1 caller 0xffffff80002c266d): Kernel trap at 0xffffff8000242aae, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffffffffffffff, CR3: 0x0000000000100000, CR4: 0x0000000000000660
    RAX: 0x0000000000000002, RBX: 0xffffffffffffffff, RCX: 0x0000000007ff4c77, RDX: 0xffffff808acd677a
    RSP: 0xffffff807f33bf20, RBP: 0xffffff807f33bf90, RSI: 0xffffff800ad8a000, RDI: 0xffffff800353ede0
    R8:  0xffffff800ad9866a, R9:  0xffffff800ad8a000, R10: 0x0000000100000e65, R11: 0x0000000000000001
    R12: 0x0000000107ff4c76, R13: 0xffffffffffffffff, R14: 0xffffff800353edd0, R15: 0x0000000000000000
    RFL: 0x0000000000010202, RIP: 0xffffff8000242aae, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0xffffffffffffffff, Error code: 0x0000000000000000, Faulting CPU: 0x1
    Backtrace (CPU 1), Frame : Return Address
    0xffffff807f33bbe0 : 0xffffff8000220702
    0xffffff807f33bc60 : 0xffffff80002c266d
    0xffffff807f33be00 : 0xffffff80002d7a1d
    0xffffff807f33be20 : 0xffffff8000242aae
    0xffffff807f33bf90 : 0xffffff800028c737
    0xffffff807f33bfb0 : 0xffffff8000820057
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11C74
    Kernel version:
    Darwin Kernel Version 11.2.0: Tue Aug  9 20:54:00 PDT 2011; root:xnu-1699.24.8~1/RELEASE_X86_64
    Kernel UUID: 59275DFA-10C0-30B3-9E26-F7B5DFB1A432
    System model name: iMac8,1 (Mac-F226BEC8)
    System uptime in nanoseconds: 5745429450764
    last loaded kext at 169526329745: com.apple.filesystems.smbfs          1.7.0 (addr 0xffffff7f8078d000, size 241664)
    last unloaded kext at 147926025400: com.apple.driver.AppleFileSystemDriver          13 (addr 0xffffff7f81ca0000, size 12288)
    loaded kexts:
    com.parallels.filesystems.prlufs          2010.12.28
    com.parallels.kext.prl_hid_hook          7.0 14924.699487
    com.parallels.kext.prl_hypervisor          7.0 14924.699487
    com.parallels.kext.prl_usb_connect          7.0 14924.699487
    com.parallels.kext.prl_vnic          7.0 14924.699487
    com.parallels.kext.prl_netbridge          7.0 14924.699487
    com.apple.filesystems.smbfs          1.7.0
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleHDA          2.1.3f7
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.1
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.5d4
    com.apple.driver.AppleLPC          1.5.3
    com.apple.driver.AppleBacklight          170.1.9
    com.apple.filesystems.autofs          3.0
    com.apple.kext.ATIFramebuffer          7.1.2
    com.apple.ATIRadeonX2000          7.1.2
    com.apple.driver.AppleIRController          312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.SCSITaskUserClient          3.0.1
    com.apple.iokit.IOAHCIBlockStorage          2.0.1
    com.apple.iokit.AppleYukon2          3.2.2b1
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleAHCIPort          2.2.0
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleUSBEHCI          4.5.0
    com.apple.driver.AirPortBrcm43224          500.36.11
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.driver.AppleUSBUHCI          4.4.5
    com.apple.driver.AppleRTC          1.4
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleACPIButtons          1.4
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          167.0.0
    com.apple.driver.AppleAPIC          1.5
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1
    com.apple.driver.AppleIntelCPUPowerManagement          167.0.0
    com.apple.driver.AppleAVBAudio          1.0.0d11
    com.apple.driver.DspFuncLib          2.1.3f7
    com.apple.driver.AppleHDAController          2.1.3f7
    com.apple.iokit.IOHDAFamily          2.1.3f7
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.iokit.IOSurface          80.0
    com.apple.iokit.IOBluetoothSerialManager          4.0.1f4
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAVBFamily          1.0.0d22
    com.apple.iokit.IOEthernetAVBController          1.0.0d5
    com.apple.iokit.IOAudioFamily          1.8.3fc11
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.driver.AppleSMC          3.1.1d8
    com.apple.driver.IOPlatformPluginFamily          4.7.5d4
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.driver.AppleBacklightExpert          1.0.3
    com.apple.kext.triggers          1.0
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.kext.ATI2600Controller          7.1.2
    com.apple.kext.ATISupport          7.1.2
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.driver.AppleUSBHIDMouse          170.4
    com.apple.driver.AppleHIDMouse          170.4
    com.apple.driver.AppleUSBHIDKeyboard          152.3
    com.apple.driver.AppleHIDKeyboard          152.3
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.1f4
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.1f4
    com.apple.iokit.IOBluetoothFamily          4.0.1f4
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.0.1
    com.apple.driver.AppleUSBMergeNub          4.5.3
    com.apple.iokit.IOUSBMassStorageClass          3.0.0
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.0.1
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.driver.XsanFilter          403
    com.apple.iokit.IOATAPIProtocolTransport          3.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.0.1
    com.apple.iokit.IOUSBUserClient          4.5.3
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOAHCIFamily          2.0.7
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IO80211Family          411.1
    com.apple.iokit.IONetworkingFamily          2.0
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IOUSBFamily          4.5.3
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          165.3
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331
    com.apple.iokit.IOStorageFamily          1.7
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.4
    com.apple.iokit.IOPCIFamily          2.6.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 2.66 GHz, 4 GB, SMC 1.29f1
    Graphics: ATI Radeon HD 2600 Pro, ATI Radeon HD 2600 Pro, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR2 SDRAM, 800 MHz, 0xAD00000000000000, 0x48594D503132355336344352382D53362020
    Memory Module: BANK 1/DIMM1, 2 GB, DDR2 SDRAM, 800 MHz, 0xAD00000000000000, 0x48594D503132355336344352382D53362020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.36.11)
    Bluetooth: Version 4.0.1f4, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: Hitachi HDS721075KLA360, 750.16 GB
    Parallel ATA Device: MATSHITADVD-R   UJ-875
    USB Device: USB2.0 Hub Controller, 0x0409  (NEC Corporation), 0x0058, 0xfa400000 / 3
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfa430000 / 5
    USB Device: Apple Optical USB Mouse, apple_vendor_id, 0x0304, 0xfa433000 / 7
    USB Device: Apple Keyboard, apple_vendor_id, 0x0220, 0xfa432000 / 6
    USB Device: hp LaserJet 2300 series, 0x03f0  (Hewlett Packard), 0x0b17, 0xfa440000 / 4
    USB Device: External HDD, 0x1058  (Western Digital Technologies, Inc.), 0x0903, 0xfa200000 / 2
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd400000 / 3
    USB Device: CanoScan, 0x04a9  (Canon Inc.), 0x1900, 0xfd100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x820f, 0x1a110000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x5d100000 / 2

    Describe your crash?  Are you getting four language screens that you must restart?
    Have you tried to see if they don't happen with just an Apple keyboard and mouse attached?
    Have you tried to see if they happen when booted off the DVD that shipped with the machine?
    Have you run the hardware test that came with the machine?
    If you don't have the orignal discs, do you have a 10.5.4, 10.5.6, or 10.6 retail disc?  These look like and and do not say Upgrade, Dropin, or OEM on them.

  • I have a big problem :( why is it i cant update my ipod touch 2g into ios 4! im using the latest version of itunes and everytime i click "update" it stucks on the "contacting server" please help :( i want to update it now

    i have a big problem why is it i cant update my ipod touch 2g into ios 4! im using the latest version of itunes and everytime i click "update" it stucks on the "contacting server" please help i want to update it now

    Maybe here:
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server

  • I have a question, why is it I can't purchase a app at App Store it says "Your payment method is not valid in this store" and I've got a Visa card and my location is in the Philippines. Please help me, what can I do?

    I have a question, why is it I can't purchase a app at App Store it says "Your payment method is not valid in this store" and I've got a Visa card and my location is in the Philippines. Please help me, what can I do?

    Your visa card is a credit card, not debit card?  Do you meet the requirements as below, interpreted strictly?
    Philippines - http://www.apple.com/legal/itunes/ph/terms.html - "The iTunes Store, Mac App Store, App Store, and iBookstore services (the "Stores") accept credit cards issued by banks in the Philippines or Content Codes as forms of payment."

  • Why in Ai CC 2014, when I use a pathfinder tool on two objects, their anchor points snap slightly off from where they were? I'm looking under all the snap to options under VIEW & cannot find the culprit. Please help!

    Why in Ai CC 2014, when I use a pathfinder tool on two objects, their anchor points snap slightly off from where they were? I'm looking under all the snap to options under VIEW & cannot find the culprit. Please help!

    You're welcome.
    There are a couple of issues connected to it:
    http://www.vektorgarten.de/problems-align-to-pixel-grid.html
    I don't think that list is complete

  • I just downloaded the newest version of Itunes.  I can't delete anything and I can't sync to my MP3 player.  I tried deleting it and installing an earlier version of Itunes but it can't read the library.  Please help.

    I just downloaded the newest version of Itunes on my Windows 7 PC.  I can't delete anything and I can't sync to my MP3 player.  I tried deleting it and installing an earlier version of Itunes but it can't read the library.  Please help.

    With iTunes 11 on PCs the drop-down menus are hidden by default - control-B should get the menus to show
    This screenshot is from a Mac, but it should be similar on a PC :

  • I have already downloaded the ios 7 but cannot access the iTunes Radio from the music app. There is no iTunes Radio icon at all! How did that happen? How can I resolve the problem? Please help. Thanks!

    I have already downloaded the ios 7 but cannot access the iTunes Radio from the music app. There is no iTunes Radio icon at all! How did that happen? How can I resolve the problem? Please help. Thanks!

    It didn't show up in my music app for several hours.   Don't know why... But it's there.
    I can now access and add stations through the iTunes Store to play through music app icon.

  • Actionscript not working on the HTML file PLEASE HELP

    Hello,
          I made a website in flash, you can download everything here, because I need this problem fixed by Monday http://www.mediafire.com/?sharekey=e5d0b30598ff413aa0f2f20c509059d9e04e75f6e8ebb871
         The problem is, when I publish the file, and run the html file, the actionscript doesn't work. When I run the project in flash it works perfectly. I do not believe it is the player or anything of that sort that is wrong, although I can not be sure. I've tried this on like 10 different computers, and none were able to load the actionscript. Does anyone know why the actionscript wouldn't be working when I run the html file for the site?
    Please Help, Thank you.

    Hi !
    Don't panic yet
    I think you didn't select the Flash with SFCommand in the HTML tab inside the Template dropdown menu,  that's the reason your Actions Scripts doesn't work in the html view.
    To access hold down CTRL+SHIFT+F12--->HTML tab--->The first dropdown menu at the top
    Hope this solve your problem.

  • Ok. So my iTunes started acting up a few months ago. ALL of the songs I purchased from the iTunes store stop in the middle of the song and then go back to the begining (I keep it on repeat one song by the way). Please help!!! (Windows 7)

    Ok. So my iTunes started acting up a few months ago. ALL of the songs I purchased from the iTunes store stop in the middle of the song and then go back to the begining (I keep it on repeat one song by the way). Please help!!! (Windows 7) I would really like to hear my songs all the way through, but I can't . I tried the "Convert Protected ACC files to Purchased ACC files fix" but it DIDN'T work. I don't know what to do. It does it when I transfer the music onto my Classic too.

    What do you mean "doesn't recognize"?

  • Im having trouble connecting my macbookpro to the tv. im using a mini display port to hdmi adapter, when i switch tv/video to hdmi on the tv nothing pops up, and i dont have the arrangement tap on the display settings, please help!

    im having trouble connecting my macbookpro to the tv. im using a mini display port to hdmi adapter, when i switch tv/video to hdmi on the tv nothing pops up, and i dont have the arrangement tap on the display settings, please help!

    I've found that the order of operations, so-to-speak, can be important when hooking up mini display port to HDMI.  I have the most success with the following operations in this order:
    1)  Plug HDMI cable into mini displayport adapter (the cable should not be plugged into either the TV or the computer at this point)
    2)  Plug the mini displayport end of your new super-cable to the computer.
    3)  Plug the HDMI end into your TV.
    4)  Switch inputs on your TV to the proper input.
    5)  If still nothing on the TV, try a different HDMI port on your TV.
    Hopefully this helps!  Good luck.

  • HT4628 My macbook pro doesn't connect to the Wi-Fi at home while my iPad connects to the same Wi-Fi. When I try connecting my macbook to my iPhone's personal hotspot, the internet works but the issue is connecting my macbook to the Wi-Fi. Please help!!

    My macbook doesn't connect to the Wi-Fi at home while my iPad connects to the same Wi-Fi. When I try connecting my macbook to my iPhone's personal hotspot, the internet works but the issue is connecting my macbook to the Wi-Fi. Please help!!
    I don't understand how to fix this and I don't seem to understand where the problem is coming from.

    Let's try the simple approach first. Restart your router. Any change?

  • How can i change the setting on my ipad 2? Whenever i read stories in the net after awhile it goeson standby and i have to keep on entering the passcode. Please help.

    How can i change the setting on my ipad 2? Whenever i read stories in the net after awhile it goeson standby and i have to keep on entering the passcode. Please help.

    Settings>General>AutoLock>Never. Now it will not sleep at all so change it back when you are done reading.

  • I'm trying to reset my apple ID password but forgot my security questions. Apple are sending the confirmation e-mail to the wrong address, please help?

    I'm trying to reset my apple ID password but forgot my security questions. Apple are sending the confirmation e-mail to the wrong address, please help?

    Hello AndrewsAFCx,
    Thank you for using Apple Support Communities!
    If you cannot remember your security questions for your Apple ID, I would recommend these steps outlined in the article named:
    Apple ID: All about Apple ID security questions
    http://support.apple.com/kb/HT5665
    What should I do if I don't remember the answers to my Apple ID security questions?
    Try answering them at least once to see if you can get them right, even if you are not sure you remember the answers to your security questions.
    If you are confident you can't remember them, try one of the following:
    If you have three security questions and a rescue email address
    sign in to My Apple ID and select the Password and Security tab to send an email to your rescue email address to reset your security questions and answers. 
    If you have one security question and you know your Apple ID passwordsign in to My Apple ID and select the Password and Security tab to reset your security question.
    If you have one security question, but don't remember your Apple ID password
    contact Apple Support for assistance. Learn more about creating a temporary support PIN to help Apple confirm your identity when you contact Apple Support.
    Note: If you have forgotten your password and answer your security questions incorrectly too many times in a row, you will be unable to try to answer your security questions for a period of time. During that time you will not be able to reset your password and will not have access to your account.
    All the best,
    Sterling

  • AirPlay not showing on iPad anywhere. I've tried ation and checked the control centre to no avail. The wifi networks are the same. Please help, thanks.

    AirPlay not showing on iPad anywhere. I've tried all of the rebooting functions and checked the control centre to no avail. The wifi networks are the same. Please help, thanks.

    To use AirPlay, you need the following:
    1. iPhone 4s (or later), iPad 2 (or later), iPad mini, or iPod touch (5th generation)
    2. Apple TV (2nd or 3rd generation)
    3. AirPort Express
    4. Wi-Fi (802.11a/g/n) network
    http://support.apple.com/kb/ht4437

  • HT203288 I have updated software on itunes and my iphone4 and at least 100 of my songs in itunes will no longer play or sync on to my iphone. They all have an exclamation mark! to the left of the song title in the library. Please help!

    I have updated software on itunes and my iphone4 and at least 100 of my songs in itunes will no longer play or sync on to my iphone. They all have an exclamation mark! to the left of the song title in the library. Please help!

    Read the threads over on the right under the heading of More Like This
    Allan

Maybe you are looking for

  • Help needed in JSP Expression Language

    Hi all, I have been working for JSP Expression Language Sample execution since past 5 days. I am using the application server as "Jboss Server" and web server as "Tomcat". I have been included the jsp-api.jar file in my lib directory of application s

  • ERROR - Maximum No in FI reached

    While posting the material document for Inventory diff posting system post the Material document but while updating the FI documents it showws error that Maximum No of Line items in fi reached. How many line items are allowed in FI as in my case thes

  • Account Groups !!!

    Hi Everyone.. In customizing, I have found two paths regarding account groups.. 1. IMG - Financial Accounting --> Accounts Receivable and Accounts Payable --> Customer Accounts --> Master Data --> Preparations for Creating Customer Master Data --> De

  • Sqldatasource, select command unexpected behaviour on query

    Hello, I have VS 2005 working with .net framework 2, ODAC 10.2.0.2.21 , oracle 8i database. I developed a simple asp.net page with a text box a button and a grid view to display results. I started using the microsoft class System.Data.OracleClient ev

  • Can anyone help with this message on the screen of my hp 3310 all in one oxb814728e​?

    can anyone help?