"X" in the wifi icon of the toolbar

Similar to "exclamation" mark that others have seen in the wifi icon in the toolbar, I am getting an "X" within wifi icon and cannot add wifi in settings. Has anyone had this issue that can help?
I am running a mid-year 2011 MacBook Air with 1.7 Intel Core i5 / 4GB ram / 128GB of storage.

Back up all data before proceeding.
Open the Network pane in System Preferences. A list of available network services appears on the left. If Wi-Fi is in the list, select it, then from the popup menu labeled with a gear icon at the bottom of the list, select
          Make Service Active
Click Apply.
If Wi-Fi is not in the service list, click the plus-sign button at the bottom of the list, and then select Wi-Fi from the  Interface menu in the sheet that drops down. Click Create, then Apply.
If there is a closed padlock icon in the lower left corner of the preference pane, click it and enter your administrator password to unlock the settings.
If the above steps don't solve the problem, continue.
Triple-click anywhere in the line below on this page to select it:
/Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist
Right-click or control-click the line and select
         Services ▹ Reveal in Finder (or just Reveal)
from the contextual menu.* A folder should open with "com.apple.airport.preferences.plist" selected. Move the selected item to the Trash. You may be prompted for your administrator password. Restart the computer and recreate your settings for Wi-Fi in the Network preference pane.
*If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
          Go ▹ Go to Folder...
from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

Similar Messages

  • Not Getting all the icons in the Toolbar while using using ALV with OOPS

    Hello,
    But I am not able to get all the Keys in the toolbar for which i have called the method from class  cl_salv_functions_list, by using the following logic.
    Though i am getting all except Word Processing, ABC Analysis, Save layout, Information, Get Layout.
    FORM ALV_DISPLAY .
      data: lr_functions type ref to cl_salv_functions_list,    "toolbar
            lr_columns type ref to cl_salv_columns,
            LI_COLUMNS TYPE REF TO CL_SALV_COLUMNS_TABLE,    "columns instance
            LI_COL TYPE REF TO CL_SALV_COLUMN_TABLE,        "column instance
            LR_EVENTS TYPE REF TO CL_SALV_EVENTS_TABLE,
            GR_EVENTS TYPE REF TO LCL_HANDLE_EVENTS.
      TRY.                                               "method for ALV display
          CALL METHOD CL_SALV_TABLE=>FACTORY
            EXPORTINg
              LIST_DISPLAY = IF_SALV_C_BOOL_SAP=>FALSE
            IMPORTING
              R_SALV_TABLE = li_alv
            CHANGING
              T_TABLE      = it_po_final.
        CATCH CX_SALV_MSG .
          message e001(00) with text-011.
      ENDTRY.
    *calling methods for toolbar
      lr_functions = li_alv->get_functions( ).
      lr_functions->set_default( abap_true ).
      lr_functions->set_print_preview( abap_true ).
      lr_functions->set_view_excel( abap_true ).
      lr_functions->SET_EXPORT_WORDPROCESSOR( abap_true ).
      lr_functions->set_export_localfile( abap_true ).
      lr_functions->SET_EXPORT_MAIL( abap_true ).
      lr_functions->SET_EXPORT_SEND( abap_true ).
      lr_functions->SET_ABC_ANALYSIS( abap_true ).
      lr_functions->SET_GRAPHICS( abap_true )
      lr_functions->SET_LAYOUT_SAVE( abap_true ).
      lr_functions->SET_DETAIL( abap_true ).
      lr_functions->SET_LAYOUT_MAINTAIN( abap_true )
    *... set the columns technical
      lr_columns = li_alv->get_columns( ).
      lr_columns->set_optimize( abap_true ).
    **get ALV columns
      CALL METHOD LI_ALV->GET_COLUMNS  "get all columns
        RECEIVING
          VALUE = LI_COLUMNS.
      IF LI_COLUMNS IS NOT INITIAL.
    *Get EBELN column
        TRY.
            LI_COL ?= LI_COLUMNS->GET_COLUMN( 'EBELN' ). "get EBELN columns to insert hotspot
          CATCH CX_SALV_NOT_FOUND.
          MESSAGE i001(00) with text-012.
        ENDTRY.
    * Set the HotSpot for ebeln Column
        TRY.
            CALL METHOD LI_COL->SET_CELL_TYPE "set cell type hotspot
              EXPORTING
                VALUE = IF_SALV_C_CELL_TYPE=>HOTSPOT.
          CATCH CX_SALV_DATA_ERROR .
          MESSAGE i001(00) with text-012.
        ENDTRY.
      ENDIF.
    *Register events
    *Event handler method for ALV
    ***handle hotspot click
      LR_EVENTS = LI_ALV->GET_EVENT( ). "get event
      CREATE OBJECT GR_EVENTS.
      SET HANDLER GR_EVENTS->ON_LINE_CLICK FOR LR_EVENTS. "register event handler method
      IF li_alv IS BOUND.        "calling display method for ALV
        li_alv->display( ).
      ENDIF.
    ENDFORM.                    " ALV_DISPLAY

    Hi Neha,
    If you didn't get the answer then follow this one. Yeah and sorry, i checked and found that really you were not getting every icons. I am giving here a sample program.
    REPORT  zdc_factory_alv_test
    TYPES: BEGIN OF ty_vbak,
               vbeln TYPE vbak-vbeln,
               erdat TYPE erdat,
               auart TYPE auart,
               kunnr TYPE kunnr,
            END OF ty_vbak.
    DATA: gt_vbak        TYPE STANDARD TABLE OF ty_vbak,
           gs_vbak        LIKE LINE OF gt_vbak,
           gr_salv         TYPE REF TO cl_salv_table,
           gr_container   TYPE REF TO cl_gui_docking_container.
    START-OF-SELECTION.
       CALL SCREEN '3000'.
    *&      Module  STATUS_3000  OUTPUT
    *       text
    MODULE status_3000 OUTPUT.
       SET PF-STATUS '3000'.
       SET TITLEBAR 'FACTORY'.
    ENDMODULE.                 " STATUS_3000  OUTPUT
    *&      Module  ALV_OUTPUT  OUTPUT
    *       text
    MODULE alv_output OUTPUT.
       PERFORM get_data.
       PERFORM create_container.
       PERFORM display_alv.
    ENDMODULE.                 " ALV_OUTPUT  OUTPUT
    *&      Form  GET_DATA
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM get_data .
       SELECT vbeln erdat auart kunnr
          INTO  TABLE gt_vbak
          FROM  vbak
          UP TO 20 ROWS.
    ENDFORM.                    " GET_DATA
    *&      Form  CREATE_CONTAINER
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM create_container .
       IF gr_container IS NOT BOUND.
         IF cl_salv_table=>is_offline( ) EQ if_salv_c_bool_sap=>false.
           CREATE OBJECT gr_container
             EXPORTING
               side      = cl_gui_docking_container=>dock_at_top
               extension = 2000
             EXCEPTIONS
               others    = 1.
         ENDIF.
       ENDIF.
    ENDFORM.                    " CREATE_CONTAINER
    *&      Form  DISPLAY_ALV
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM display_alv .
       DATA : lr_columns     TYPE REF TO cl_salv_columns_table.
       DATA : lr_functions   TYPE REF TO  cl_salv_functions_list,
              lr_layout      TYPE REF TO cl_salv_layout,
              ls_layout_key  TYPE salv_s_layout_key.
       TRY.
           CALL METHOD cl_salv_table=>factory
             EXPORTING
               r_container  = gr_container
             IMPORTING
               r_salv_table = gr_salv
             CHANGING
               t_table      = gt_vbak.
         CATCH cx_salv_msg .
       ENDTRY.
       lr_functions = gr_salv->get_functions( ).
       lr_functions->set_all( abap_true ).
       lr_columns = gr_salv->get_columns( ).
       lr_columns->set_optimize( 'X' ).
       lr_layout = gr_salv->get_layout( ).
       ls_layout_key-report = sy-repid.
       lr_layout->set_key( ls_layout_key ).
       lr_layout->set_save_restriction( ).
       gr_salv->display( ).
    ENDFORM.                    " DISPLAY_ALV
    Note:- Double click on screen name '3000' and it will ask you option of creating screen.
    There i have created one module..
    After clicking 3000 under output module create MODULE alv_output.
    That will look like...
    PROCESS BEFORE OUTPUT.
       MODULE status_3000.
       MODULE alv_output.
    PROCESS AFTER INPUT.
    * MODULE USER_COMMAND_3000.
    This is the sample result..
    Still if you have any problem, then feel free to ask..
    Regards
    Dhananjay

  • The Firefox icon often disappears from the toolbar when I go to another window like Outlook or Media Player. When I close down all other windows it reappears again. What can I do about that?

    When it has disappeared I can open Firefox again using the menu or the opening icon on the toolbar, but then it only shows up blank, so without the tabs that were opened before. Closing down all other icons on the toolbar is the only way to make the Firefox icon reappear and for me to open Firefox again with all my tabs.
    Please excuse my English, the jargon is difficult.

    Thanks for your reply, cor-el.
    The odd thing is, this problem hasn't occurred again since I posted it. What kind of magic is that? :-))
    It really is odd, since I had it at least twice a week for several months.
    So far, so good, then.
    I'll wait a while more, and will then close it as being solved. I guess that's the procedure.
    We'll put it down to temporary bugs or pc mysteries.
    Though I like the magic option more...

  • My mac air will not connect to the internet. There is an exclamation point in the wifi icon and when i go into preferences i see that it is setting its own IP address. I have a macbook that is able to connect with no issue. HELP

    My macbook air will not connect to the internet. There is an exclamation point in the wifi icon and when i go into preferences i see that it is setting its own IP address. I have a macbookpro that is able to connect with no issue. HELP

    Reset the TC to factory and start again.
    Use all SMB type names for wireless and base station.. Not apple type names.. this is more important since Mavericks.
    I also recommend different names for the different bands.
    So for example.
    TC name.. TCgenx (I use whatever the generation number is for the x.. eg TCgen4 or latest one TCgen5)
    WIreless name.. TC24ghz for 2.4ghz
    TC5ghz for 5ghz
    You can also set the channel manually.
    If you still have issues.. start with no security and then if it fails to connect there is something seriously wrong with the laptop. Did you upgrade install Mavericks?? That can lead to driver issues.. I would recommend a clean install.

  • How can i disable '+' icon in the toolbar

    Hi,
    I have one requirement i.e i want to disable '+' button[File-->New] in the toolbar.This button creates a record when i click on this.
    My block(Updatable block) should allows updations and insertions so i can't make insert_allowed and update_allowed property to "NO".I tried with
    APP_SPECIAL2.ENABLE('FILE.NEW',PROPERTY_OFF); but the + icon is still enabled when i write above code.
    How can i disable '+' icon in the toolbar
    Thanks in advance,

    This is eBusiness-related, maybe ask your question in the EBusiness-forum, maybe here OA Framework

  • How do I add a space to the toolbar in Firefox 29.0? I can grab a space from empty areas and move it around, but where do I find a "space" icon to ADD a space?

    It has been useful in past versions of Firefox to be able to add (a) space(s) between icons on the toolbar in order to create groups of icons and/or separate icons by class or function. In Firefox 29.0, I discovered how to "grab" (click and drag) a space from open areas on the toolbar and move it to another part of the toolbar. But how can I add spaces to the toolbar? In past versions, there used to be a space icon in the customize menu set that could be dragged to the toolbar for that purpose.

    You can get around this problem by installing the "Classic Theme Restorer Add-on" available at: https://support.mozilla.org/en-US/kb/how-to-make-new-firefox-look-like-old-firefox
    While returning the squared-off look to your tabs, instead of the newer, rounded version - it also gives returns the option to add spaces; variable size spaces, and separators to your tool-bars.

  • Is there a way to have the 'new tab' icon on the toolbar AND have the "new tab" button at the right end of my tabs, as before? It seems to be either/or.

    Under the previous version of Firefox I had the "new tab" option in both locations. When I upgraded, the one at the end of the tab line had disappeared. I used the suggestion from the forum to reset to default and it did reappear, but the icon in the toolbar had disappeared. Since there is no + in the customization window I cannot place a new one, and if I drag and drop from the tab bar it moves to the toolbar, but will not duplicate itself. I use either of these interchangeably, and having only one or the other is a real annoyance, and does slow me down when doing multiple searches or otherwise utilizing multiple tabs.

    Hi, I have a similar problem with 12.0 of Firefox. The 'Add New Tab' tab has moved from the righthand end of open tabs to the left hand end.
    If I right click on an empty tab area and select customize the "Add New Tab' tab disappears and an Add New Tab icon appears at the right hand end. I can drag and drop this icon into the Customize Toolbar window.
    However if I drag it from the window back to the Tab toolbar area on the right. It initially appears on the right. Then clicking 'Done' on the Customize Toolbar window converts the icon to a tab but places it back at the left hand end of the tabs.
    I'm sure this didn't happen before - so it's a possibility I have messed something up but I can't seem to correct it?

  • How do I put a "close file" icon in the toolbar? I've searched for an hour to find the answer with no luck?

    How do I put a "close file" icon in the toolbar? There's an "open file" icon by default, but I cannot -- in spite of searching for an hour--find a way to put a "close file" icon in there?

    Toolbar where? What program? What system?
    Mylenium

  • How do I remove "All My Files" icons from the toolbar?

    Good Afternoon:
    I have A shiny new 15" MBPro that came preinstalled with Lion that I have updated to 10.7.1.
    If I open a finder window, there are two "All My Files" icons on either side of the toolbar. I asked a Genius about it and they said they had never seen that. I can remove "All My Files" from the list of Favorites on the left easily enough. I can open up the window to customize the ToolBar, but in that window there are no "All My Files" icons available to add or delete.
    How do I remove the "All My Files" icons from the toolbar?
    Any advice would be appreciated. Thanks.
    Below is a screenshot of the problem.

    Sort of surprised they didn't know. I'm lost as to why that even appeared on your computer unless you had put them there yourself which, clearly, you didn't if it was brand new out of the box.
    Glad it's sorted out.

  • All of a sudden an additional "Search Web" box has appeared on my firefox below the bookmarks toolbar and above the tabs bar. I am not able to remove it through customizing the toolbars like you do with all other icons, etc. Could somebody help me?

    This new "Search Web" box/bar has a magnifying glass on the left side and on the right, just outside of the box, there is "-or-". I am unable to remove it or even just move it around the toolbars, and it is unresponsive to any left or right clicks. When it first appeared, it showed up with shortcut icons for Facebook and Twitter. It would be really appreciated if someone could help me with permanently removing the above. I had already tried deleting Firefox from my Mac OS but when I re-install a new one, all plug-ins, bookmarks, etc. are retained. Alternatively could someone advise me how to do a clean uninstall of Firefox?

    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • My Wifi doesn´t work. The Wifi icon on top menu bar states there is no hardware connected. How can I resolve this as previously Wifi connection worked perfectly. Is this something that to do with the computer hardware? Please advise.

    My Wifi doesn´t work. The Wifi icon on top menu bar states there is no hardware connected. How can I resolve this as previously Wifi connection worked perfectly. Is this something that to do with the computer hardware? Please advise.

    SkyDaughter29 wrote:
    My current situation: I have soooo many texts on my iphone and I haven't deleted many because I need the information contained in them for future reference and for legal purposes.  I would really like to find a means and way to save them other than on the phone itself. I've done searches for various apps yet I'm not finding what I think I would need.  It appears Apple does not sync the texts between the iphone and my MacBook Pro.
    Try the computer apps PhoneView (Mac) or TouchCopy (Mac & PC):
    http://www.ecamm.com/mac/phoneview/
    http://www.wideanglesoftware.com/touchcopy/index.php
    Best of luck.

  • IPad Fails to connect to wifi, but shows the wifi icon

    My company just installed a wireless network in our building.  I was very excited because I can finally use my iPad in meetings and ditch the IBM laptop.  However, it does not want to connect to the wireless network.  Let me try to explain what happens.
    BTW,
    1. It is a new network so all the routers have the most up to date firmware. 
    2. I have tried to connect with my iPad2 and iPad both without success.  The iPad was recently wiped clean and set up for my son.
    3. I can connect to my home network, my sprint mifi card, and other networks (hotels, starbucks) with no problem.
    4. Laptops can connect with out issue to the network.
    5. Others have been able to connect their iPhone to the network.
    6. One other person could not connect their iPod Touch to the network.  He gets the same response that I do.  I don't know anyone else with an iPad that works in my building.  However see item two above.
    7. It is using WPA security.
    8. I have reset network settings numerous times on both iPads and rebooted both iPads numerous times.
    9. I am able to connect to another wifi network in our building.  Both networks use the same security and password.
    This is what happens:
    1. Go to Settings -> Wi-Fi and choose my companies wireless network.
    2. It asks for the password and I type it in (Trust me I am typing it in correctly.  I have done it about a hundred times now.)
    3. Recieve the message "Unable to join the network," I hit Dismiss and Cancel.
    4. I get the Checkmark next to the wireless network I just tried to join.  If you click the blue arrow I get an IP address, but NO "Forget This Network" Option.  I also have the wifi icon next to the word iPad in the upper left corner of the screen.  It will also not load any Safari pages.  Safari states "Safari cannot open the page because it is not connected to the internet."
    I have also tried:
    1. Go to Settings -> Wi-Fi and choose "Other."
    2. Type in the SSID name and choose WPA, Type the password.
    3. Hit "Join" & get the message "Could not find the network"
    4. I hit Dismiss and Cancel.
    5. I get the Checkmark next to the wireless network I just tried to join.  If you click the blue arrow I get an IP address, but NO "Forget This Network" Option.  I also have the wifi icon next to the word iPad in the upper left corner of the screen.  It will also not load any Safari pages.  Safari states "Safari cannot open the page because it is not connected to the internet."
    Please help.  I have read many articles on this forum and tried everything without success. 

    If you are getting a 169... IP, then you are not connected. That is a self-assigned IP that the iPad is giving itself because the router is not giving it one.
    Is it possible that you are not selecting the correct WPA security protocol for your network?

  • An Icon on the toolbar no longer works in Firefox 4

    I make extensive use of emailing a purchase order on an inventory program running on Firefox.
    Prior to my Firefox 4 upgrade an icon on thr toolbar allowed me to create an email in Outlook and attach a copy of the order to that email.
    That icon appears to work, it asks if I want to send a copy or a link.
    After accepting the request to send a copy there is no further action other than a momentary change of my cursor to an hourglass and then back to the arrow.
    Help please.

    Do the related browser.gesture.pinch prefs still have a value?
    See http://kb.mozillazine.org/about%3Aconfig

  • How can I create an icon for "New Tab" (not "new window") on the toolbar?

    I want to have an icon for New Tab on the toolbar. I cannot find such icon on the Customize option.
    Is this possible?
    BTW I tried to check options-->tabs-->open new windows in a new tab instead, but this does not help and when clicking the "new Window" icon on the toolbar, indeed a new window - and not a new tab - opens.
    Thanks.

    You can open the Customize window and drag the New Tab (+) button form the tab bar on another toolbar. It will become a regular New Tab toolbar button.
    Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"

  • After updating to Firefox 5 on a Windows 7 PC the bookmarks icon won't stay on the toolbar and I can't click it to get a bookmarks column on the left side of the screen, how do I fix it?

    There was no bookmarks icon on the toolbar. I used View > Toolbars> customise to put various icons on the toolbar all of which were visible using "customise". On going back to Firefox all the other icons remained visible but the Bookmarks Icon disappeared leaving no means of getting a bookmarks column on the left of the screen when using Firefox.

    Check that you still have the "Bookmarks Toolbar items" placed on the Bookmarks Toolbar<br />
    If the menu bar is hidden then press F10 or hold down the Alt key, that should make the "Menu Bar" appear
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    * Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout" and check that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    * If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette in the customize window to the Bookmarks Toolbar
    * If you do not see the "Bookmarks Toolbar items" or other items that are missing in the toolbar palette or on a toolbar then click the "Restore Default Set" button
    Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    *http://kb.mozillazine.org/Toolbar_customization
    *https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

Maybe you are looking for

  • How do I set up a separate Apple ID for children?

    I have an ipad soley for my child's use and I'd like to disassociate this from my own AppleID which i use for my work iPad.  I do not want the child to have the same apps nor features as I do.  Setting up a separate AppleID sounds like a good idea; i

  • 2009 MacBook Air 2.13GHz says "Wi-Fi: No hardware installed"

    So recently my 2009 13' MacBook Air has begun to give the No hardware installed on the WiFi. I am currently on Mavericks and have a couple extra airport cards lying around. So out of curiosity i tried to replace it with an airport card that came out

  • 42TL515U green light blinking but no picture or sound

    came home today and turned on my tv wont turn on the green light blinks constantly but no picture or anything can some one tell me how to fix this or what to do?

  • How can I monitor Status word From the other side of the GPIB bus

    I develop Thermal system control that should be operate thru the GPIB IEE 488.2 bus , my instrument application already written in Visual Basic ,The system knowes to do basic operation such as SETPOINT ,AIRDUT , BEGIN , STOP and more but I have do a

  • Automatic block return Sales Orders / Credit Notes

    Hi, Could someone please explain how I block return sales orders or credit notes?  Also is there a way of searching which sales order documet types have been used for credit notes? Thanks