Strangeness with my GUI - Airport Icon

My Airport icon on the top right menu bar shows that my Airport is off despite the fact that it is on and connected.
How do I restore functionality to this icon?

It's not grey'd out as to be disabled rather it's black, and hollow - no signal bars.

Similar Messages

  • The airport icon (upper right portion of the screen) says I am connected to my airport; but, I don't get the icon on the Itunes window (rectangle with a triangle at the bottom of it) that allows me to select the stereo that is connected to my airport?

    The airport icon (upper right portion of the screen) says I am connected to my airport; but, the Itunes window doesn't show the icon (rectangle with an arrow in it) that allows me to select the stereo system speakers that are attached to the airport.  What's up with that?

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • I don't know much about computers, so please be patient. I started using Airport and I recently noticed a "network" option right below "Macintosh HD". When I click on "network" it shows "b67446000000" with a computer monitor icon and "connection fail

    I don't know much about computers, so please be patient. I started using Airport and I recently noticed a "network" option right below "Macintosh HD". When I click on "network" it shows "b67446000000" with a computer monitor icon and "connection failed". When I right click on this and select "Get more info" it displays nothing, just the spinning wheel. When I select "Connect As" it asked for my password to connect to "Server b67446000000". This may have been on my computer since I got it, I never paid much attention. Is this part of the operating system or has someone hijacked my computer? Why would I need a server...it's just me and my one computer? Maybe someone has hacked in through Airport? Any help will be greatly appreciated. Thanks!

    Is your airport a Time Capsule.. if so it is able to serve files on the network.
    The number is the MAC address of the network in the router.
    Please reset the apple router whatever is and redo the setup.. this time give it a simple name.. eg TCgenX where X is the actual gen of the unit and give it a simple wireless name.. TCwifi and a simple password with 8-20 characters mix of upper and lower case and numbers.
    Perhaps even better give me a screenshot from the computer of the airport utility showing me the Airport with its MAC address.

  • Airport Icon Greyed Out with Up Arrow Over It

    I have a PowerBook Pismo G3 with an original airport card. Worked fine to connect to wifi networks. A grandchild fiddled with the settings in the internet/file sharing/airport/??? panes and now I can't connect wirelessly to anything.
    What does the Up Arrow over the Airport icon in the menu bar mean?

    Hello MartaGo,
    Welcome to the  Discussions!!!
    Look in System Preferences -> Sharing -> Internet and see if Internet Sharing is on. If it is, turn it off.
    The arrow through your Airport Menulet indicates that your Mac is acting as a Software Base Station and is using your Airport card to wirelessly share your internet connection (ala Airport Base Station).
    I used my Mac Mini to do this while I was waiting for my Base Station. Worked great for my wife's PB.
    Hope This Helps,
    Jeff

  • Significance of AirPort Icon with an upward pointing arrow?

    I think I may have exceeded my competence level here !! I volunteered to help a friend who was given a MacBook Pro for Christmas. She has never used a computer before but we decided that the most important thing for her was to have internet access. Her teenage daughter (who lives in the same house) has a 1.33GB G4 iBook and has her iBook connected to an ADSL modem using an Ethernet cable.
    My thinking was that, because both computers have AirPort Extreme Wireless cards, I should be able to connect her MacBook Pro wirelessly to the internet via her daughter's iBook Ethernet connection to the ADSL modem.
    After trying many different methods I finally (I think) got everything to work (at least they are now both are connected to the internet). However, the iBook (which is the one connected via Ethernet to the ADSL modem) now has an upward pointing arrow through the AirPort icon in the Menu bar. Is this significant?
    Can anyone point me to a 'how to' article that I could check? My friend's MacBook Pro is running 10.5.1 and her daughter's iBook is on 10.4.11.
    Cheers
    Tricia

    That icon means that the computer is acting as a software base station. Click here for more information.
    (27613)

  • Trying to do something very strange with layouts and painting components

    I'm trying to do something very strange with changing the layout of a container, then painting it to a bufferedImage and changing it back again so nothing has changed. However, I am unable to get the image i want of this container in a new layout. Consider it a preview function of the different layouts. Anyway. I've tried everything i know about swing and have come up empty. There is probably a better way to do what i am trying to do, i just don't know how.
    If someone could have a look perhaps and help me out i would be much appreciative.
    Here is a self contained small demo of my conundrum.
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.BoxLayout;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.border.LineBorder;
    // what is should do is when you click on the button "click me" it should place a image on the panel of the buttons in a
    // horizontal fashion. Instead it shows the size that the image should be, but there is no image.
    public class ChangeLayoutAndPaint
         private static JPanel panel;
         private static JLabel label;
         public static void main(String[] args)
              // the panel spread out vertically
              panel = new JPanel();
              panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
              // the buttons in the panel
              JButton b1, b2, b3;
              panel.add(b1 = new JButton("One"));
              panel.add(b2 = new JButton("Two"));
              panel.add(b3 = new JButton("Three"));
              b1.setEnabled(false);
              b2.setEnabled(false);
              b3.setEnabled(false);
              // the label with a border around it to show size in a temp panel with flowlayout to not stuff around
              // with the actual size we want.
              JPanel thingy = new JPanel();
              label = new JLabel();
              label.setBorder(new LineBorder(Color.black));
              thingy.add(label);
              // the button to make things go
              JButton button = new JButton("click me");
              button.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e)
                        //change layout
                        panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
                        panel.doLayout();
                        //get image
                        BufferedImage image = new BufferedImage(panel.getPreferredSize().width, panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
                        Graphics2D g = image.createGraphics();
                        panel.paintComponents(g);
                        g.dispose();
                        //set icon of jlabel
                        label.setIcon(new ImageIcon(image));
                        //change back
                        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
                        panel.doLayout();
              // the frame
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setSize(400,200);
              frame.setLocation(100,100);
              frame.getContentPane().add(panel, BorderLayout.NORTH);
              frame.getContentPane().add(thingy, BorderLayout.CENTER);
              frame.getContentPane().add(button, BorderLayout.SOUTH);
              frame.setVisible(true);
    }

    Looks like you didn't read the API for Container#doLayout().
    Causes this container to lay out its components. Most programs should not call this method directly, but should invoke the validate method instead.
    There's also a concurrency issue here in that the panel's components may be painted to the image before revalidation completes. And your GUI, like any Swing GUI, should be constructed and shown on the EDT.
    Try this for size -- it could be better, but I've made the minimum possible changes in your code:import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.BoxLayout;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import javax.swing.border.LineBorder;
    public class ChangeLayoutAndPaint {
      private static JPanel panel;
      private static JLabel label;
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            // the panel spread out vertically
            panel = new JPanel();
            panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
            // the buttons in the panel
            JButton b1, b2, b3;
            panel.add(b1 = new JButton("One"));
            panel.add(b2 = new JButton("Two"));
            panel.add(b3 = new JButton("Three"));
            b1.setEnabled(false);
            b2.setEnabled(false);
            b3.setEnabled(false);
            // the label with a border around it to show size in a temp panel with flowlayout to not stuff around
            // with the actual size we want.
            JPanel thingy = new JPanel();
            label = new JLabel();
            // label.setBorder(new LineBorder(Color.black));
            thingy.add(label);
            // the button to make things go
            JButton button = new JButton("click me");
            button.addActionListener(new ActionListener() {
              @Override
              public void actionPerformed(ActionEvent e) {
                //change layout
                panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
                //panel.doLayout();
                panel.revalidate();
                SwingUtilities.invokeLater(new Runnable() {
                  @Override
                  public void run() {
                    //get image
                    BufferedImage image = new BufferedImage(panel.getPreferredSize().width,
                        panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
                    Graphics2D g = image.createGraphics();
                    panel.paintComponents(g);
                    g.dispose();
                    //set icon of jlabel
                    label.setIcon(new ImageIcon(image));
                    //change back
                    panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
                    //panel.doLayout();
                    panel.revalidate();
            // the frame
            JFrame frame = new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(400, 200);
            frame.setLocation(100, 100);
            frame.getContentPane().add(panel, BorderLayout.NORTH);
            frame.getContentPane().add(thingy, BorderLayout.CENTER);
            frame.getContentPane().add(button, BorderLayout.SOUTH);
            frame.setVisible(true);
    }db
    edit I prefer this:import java.awt.BorderLayout;
    import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    public class LayoutAndPaint {
      JPanel panel;
      JLabel label;
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            new LayoutAndPaint().makeUI();
      public void makeUI() {
        JButton one = new JButton("One");
        JButton two = new JButton("Two");
        JButton three = new JButton("Three");
        one.setEnabled(false);
        two.setEnabled(false);
        three.setEnabled(false);
        panel = new JPanel();
        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
        panel.add(one);
        panel.add(two);
        panel.add(three);
        label = new JLabel();
        JButton button = new JButton("Click");
        button.addActionListener(new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            layoutAndPaint();
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 400);
        frame.add(panel, BorderLayout.NORTH);
        frame.add(label, BorderLayout.CENTER);
        frame.add(button, BorderLayout.SOUTH);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
      private void layoutAndPaint() {
        panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
        panel.revalidate();
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            BufferedImage image = new BufferedImage(panel.getPreferredSize().width,
                panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
            Graphics g = image.createGraphics();
            panel.paintComponents(g);
            g.dispose();
            label.setIcon(new ImageIcon(image));
            panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
            panel.revalidate();
    }db
    Edited by: DarrylBurke

  • Sharing internet with Windows over AirPort

    My G5 tower is connected to typical home router via ethernet. This gives it flawless internet connectivity.
    To give better wireless access to mobile devices that come to that room for a visit in the far corner of the house where the G5 is located, I got a used AirPort Extreme card for the G5 and installed it, making sure to attach the antenna connector and small t-shaped external antenna (provided with original G5) plugged in the back.
    When I powered the G5 back on, it immediately saw the AE card and told me to review settings and press Apply. Under Network prefs, under "Location: Automatic", I chose "Show: AirPort." An AirPort ID is shown, along with the default setting below: "By default, join 'Automatic.'" I left all other network settings as they are--I am not trying to use AirPort to connect the G5 to the main wireless router, since it already has ethernet.
    I went to the "Sharing" pref and chose the third pane under it, "Internet". I configured it to read: Share your connection from built-in ethernet . . . using (checkbox on) AirPort. I clicked on the AirPort options in this same pane, and typed in a network name: "ABC wi-fi". Channel is Automatic, and--to keep things simple for now--I left encryption off. I pressed OK to close that small dialog, then hit "Start" in the Sharing/Internet pane, which makes its status message change to "Internet sharing on: sharing your built-in ethernet connection." Success! Well, no.
    The AirPort icon in the menu bar was a blank quarter-pie. So I clicked on it, and saw the "open internet sharing" option. A panel appeared where I could turn airport on. I did. The grayed-out Network line of the pane then showed the name of the network I had created back in the Sharing dialog: "ABC wi-fi." And the signal level indicator shows full power, all to the right. All set? Nope! When I go to my Windows laptop and find this new network, I see two new options: One, strangely, is the "Computer Name" shown in the Sharing pref panel, and clicking on it to connect doesn't work. The other option is the network I actually named and shared, "ABC wi-fi," but when I attempt to connect to it, Windows (actually Intel PROSet/Wireless Wi-Fi Connection Utility) insists on stepping me through a series of complex security settings, when it would seem that no security should be required since I didn't enable encryption on the AirPort connection.
    Giving up on those security settings, I go back to the Sharing control panel and turn sharing off. I hit the AirPort options button and turn encryption on I leave on WEP 40-bit, which requires me to type in a five character string. I do so. I click OK and restart internet sharing. Again, I am given confirmation of "Internet sharing on: sharing your built-in ethernet connection." I try to connect from Windows again, but am not even presented with the complex security options. It just says "Unable to connect," even though it can clearly see the SSID. I try the same a few more times--no luck. I go get an iPod touch and select the new G5-based network--type in the five characters required for WEP 40-bit, and jump right on. Why can't my Windows 7 laptop connect?

    Good advice from rccharles, do try that, but I'm wondering if it might be related to Digitally sign communications, even though this talks about server & connecting the other way...
    http://allinthehead.com/retro/218/accessing-a-windows-2003-share-from-os-x

  • Missing: Airport Icon and networks

    Hi Everyone,
    I'm having a very strange problem with my Macbook Pro. The other day I noticed that the Airport icon was missing from my finder bar. I went to pref, made sure the box was check but the icon is still not showing up. It was nothing but anoying at first but now I cannot connect to any networks, open or secure.
    Has anyone seen anything like this before? Any help would be great.
    Thanks, Tim

    Hi,
    I've had this happen on one of our school portables and it took me a while to figure out that one of the students had clicked on the icon, gone down to "Open Internet Connect..." and take the checkmark out of "show airport status in menu bar".
    So of course, you can't get to Internet Connect following the same path so look in your applications folder and find it there. Open it and put the checkmark back in.
    Peter Jones

  • How can I extend an Airport Express in WLAN mode with an additional Airport Express box

    I'm trying to extend the existing WLAN with an additonal Airport Express box. I read through a bunch of comment throughout the communities here but didn't find what I'm looking for.
    My actual Installation consists:
    A Time Capsule attached to the Internet router which set up my 1. WLAN range
    This WLAN has been extended with an Airport Express BOX creating my extended 2. WLAN range
    Now I intend the extend the 2nd WLAN of the Airport Express BOX with an additional Airport Express (creating a 3rd WLAN range) but don't find a way on how to set it up correctly.
    The physical situation of the location dosen't allow me to add / replace cabeling (Ethernet or similar). If there is any chance I'd like to avoid power-line connections. And, I'm aware of the impacted bandwith on WLAN / WLAN extensions, but can deal with this.
    Regards and thanks for any advice

    Two requirements that must be met to do what you want.......
    1) An AirPort Express 802.11n must be used. Check the Model No on the label on the side of the Express. It needs to be A1264. Any other model number will not do what you want.
    2) The Express must be configured to "Join a wireless network" and the option to enable Ethernet Clients must be checked. 
    Open AirPort Utility and click Manual Setup
    Click the Wireless tab below the row of icons
    The box to "Allow Ethernet Clients" must be checked
    Please check to verify that your AirPort Express meets both requirements

  • Missing airport icon in menu bar HELP PLEASE

    Okay, I have a g4 powerbook that came with tiger.
    I am missing the airport icon that once was there in the menu bar at the top right-hand side.
    What I've done: ran disk utility, = all's well, check for software updates = all's well there too., and the most obvious, check the box under system pref. for airport config.
    I check it and it is does, nothing. I go back to system pref. and is unchecked again.
    IM AT A LOSS. Anyone with this problem PLEASE help.
    thanks...

    muecyl,
    Do not concern yourself with the other files that you found at that location. Just leave them where they are.
    Since your problem is also related to some extent to System Preferences, you may benefit from trying the procedures outlined by Dr. Smoke in Try the following....
    Another possibility is to download and reinstall the Mac OS X 10.4.6 Combo for PPC.
    ;~)

  • Airport icon does not appear

    The "About this Mac" dialogue in my Mac Pro shows I have Airport Utility 5.5.3. BUT, I go to System Preferences - Network to select "Show Airport Status In Menu Bar" and there is no Airport icon. I click the + to add it and it does not show up as a selection. All I get is Firewire, Ethernet 1 and 2 and Bluetooth.
    My Airport Extreme DOES show up in the Airport Utility box when I click on Airport Utility but I can not set it up as a wireless connection. I have the Extreme hard-wired to the Mac Pro. I also have a Mac Mini and I had no problem installing that computer as a wireless connection.
    The problem appears to be that the Airport Utility for some reason, is not showing up under System Preferences - Network. Instead, it is being used as an Ethernet connection.
    When I bought the Extreme, I asked Apple for help. They refused to give me any help with the Mac Pro because it is "out of warranty" even though I think this is NOT a Mac Pro issues per se but it is an issue with the Airport Extreme that IS under warranty. I will not pay for support because I do not at all believe that a company should charge to support their products. Charging for support is just wrong.
    Any help would be great.

    Make sure that the drive is formatted in Mac OS Extended (Journaled) to work correctly with the AirPort Extreme. Unless you purchased a drive that was specifically formatted for Macs, the drive is likely pre-formatted for use with PCs.
    Use Disk Utility in your Utilities folder under Applications to format the drive if needed.
    Often, it helps to use a powered USB hub with a drive...even if the drive has its own power supply....since the USB port on the Extreme is borderline as far as its power capabilities.

  • Airport Icon wont stay turned on..

    Hi Guys
    For somereasom today, my Airport icon on the top right hand of my screen wont stay illuminated and thus, my internet connection keeps dying.
    Its fine on my Macbook Pro but not on my Mac Pro desktop...?
    At the moment there is just a blank icon with an explination mark on it - any ideas?
    Thanx a lot in advance for your help
    Jozif

    I seem to be having the same problem. We were in Mexico on vacation, and on the second day I was taking some photos near the water with some highways and some water splashed on the camera, but it seems to still be working for the next few hours. When I stop taking pictures and came back to the camera a few hours after, I tried turning it on and the set date and time settings screen was displayed. After I entered the settings, I was able to resume taking pictures. However, when I turned the camera off, then on again, that same screen displayed it again.
    The next day, I went to turn on the camera, and the lands would not extend fully and will turn off main extension. When I held down the power button, it would retract back but not all the way. If I hit the playback button, I was only then able to fully close the lens. I'm thinking now in hindsight, I should have not tried to turn it on, and just put it in a bag of rice right away, but it's probably too late for that now, and since I'm thinking the water that got on it was salt water from the ocean, it might have corroded some terminals or some electronics inside, I'm not sure. But I don't think I want to pay $200 for Canon to just look at it, and then come back to me saying they can't fix the camera. The warranty has just run out, and I think I might be better off just buying a new camera.

  • I've lost my AirPort icon in network settings - can't get wifi - how do I get it back..??

    So I'm pretty green whe it comes to computers but trying to work through this....
    My Macbook Pro's wi fi dropped out - I tried to re-activate it and inadvertedly removed the airport icon from my network connections options..
    I'm assuming it's a fairly simple fix but I do not have the know-how.... Can anyone please help me work through this, it would be much appreciated..!!!
    OSX 10.6.8
    AirPort 5.6.1
    thanks...

    Hi ramayne,
    I have the same problem with airport.
    On 'Network' page when I try to add an interface AirPort is not an option.
    I only can choose from firewire, ethernet, bluetooth DUN, VPN, PPPoE or 6 to 4....
    How did you fix it?
    Reny

  • My Macbook Air behaves strangely with my USB devices.

    Hello! My Macbook Air behaves strangely with my USB devices. They appear in the Finder but the icon then quickly disappears, as if the device has never been connected. Sometimes the devices work fine, however. Could you please help me identify the problem?

    USB draws power from the MBA, and MBA will shut them down if too much is taken.  Try a self-powered (not USB-powered) hub, to see if the AIr acts better.  Costs about $25 at BestBuy.
    May not tbe the final solution, but no a bad idea anyway.

  • IMac wifi does not stay connceted - will reconnect on click on airport icon

    My iMac will connect to my airport basestation, and will stay connected for about 30 seconds. The internet will then suddenly stop working (no signal drop, still have an ip address, and still connected tot he basestation). The resolution is to simply click the airport icon in the top right - just to bring up the menu - and the internet will start working again. I did a ping to google.com, and it just suddenly stops, then after clicking the icon, it starts again. It is extremly strange behavior. I have other computer connected to the same basestation, and have been able to exclude the basestation as a cause to this. Any ideas? I am to the point where I may just reinstall os x. Thanks for any help!

    My iMac will connect to my airport basestation, and will stay connected for about 30 seconds. The internet will then suddenly stop working (no signal drop, still have an ip address, and still connected tot he basestation). The resolution is to simply click the airport icon in the top right - just to bring up the menu - and the internet will start working again. I did a ping to google.com, and it just suddenly stops, then after clicking the icon, it starts again. It is extremly strange behavior. I have other computer connected to the same basestation, and have been able to exclude the basestation as a cause to this. Any ideas? I am to the point where I may just reinstall os x. Thanks for any help!

Maybe you are looking for

  • Is this the app for me?

    I currently use dropbox to store all of my notes for school and sync them between my iPad and my MacBook.  I really like dropbox and would like to keep using it.  I use the PDF Expert app to take notes (annotate PDFs) on my iPad, and they sync very n

  • How to Debug / Trace a Program

    Dear Sir, We need to make certain enhacement in MIGO Program . Before going for enhancement , we need to understand that during the execution of this Tcode what are the screens / Function Modules etc being called . We tried to put a Break-point in th

  • Price refresh for new Shopping Cart created from a model

    I'm looking for a solution for the following problem. When i create a shopping cart from a model that has been previously created with a certain price, i'd like the system to update this price if it has been updated between model creation time and ne

  • Not compatible with my computer...

    I purchased adobe contribute 6.5 and was using it with an old computer that ended up crashing. I purchased a new computer with windows 8 and now contribute won't work. I don't want to start over, is there an upgrade I can purchase?

  • E71 Memory Full Problem

    Hi, I have brand new Nokia E71 White with latest firmware available on NSU (110.07.127, 09-10-2008). After few days of using it I found out that I cannot use "HELP" option from Nokia main menu and trying to realize what is the problem I discovered th