UI: Toolbar - (F?)AQ about toolbar button activation and usage

<b>Q:</b>
How can I add functionality of the two SAP toolbar buttons shown on the screenshot?
<b>Reply:</b>
Please note that the clicks on the toolbar buttons are translated into MenuEvents!
I.e. if the button is active at the time you want to use it - just declare a MenuEvent handler for it... (find the Menu ID e.g. in the UI help - or from version 2005 on through hovering over the corresponding menu item).
If the toolbar button is inactive - activate the corresponding menu item first.
Please note that you cannot:
- add or remove toolbar buttons (you can just disable them)
- add or remove top level menu items

Just a FYI

Similar Messages

  • About 2 Buttons, Yes and No. And 1 Textbox

    I got this problem.  I got 2 Radio Button and 1 text box
    O       O        [_________]
    Yes   No
    -- If I Click yes, The Text box will be visible and able to put text, And If I click no, I need the text box to be vanish/ Invisible.
    I do already try like If I click yes, I put in action (Mouse Enter) Show TextBox
    If I click No(Mouse enter) Hide TextBox
    This is the problem. If I click Yes, The Textbox will be showned but if I (JUST POINTED THE MOUSE "But not click it" To NO, The box is being invisible or Vanished. Help please!

    It's fine now. Next problem is. I got three different textbox to fill in
    If I click on textbox 1 = It needs to have an Background color so the user can see where she/he is typing. Then if I press TAB to move at second TextBox..... I need the TextBox1 Background color to be just plain. No color. And I need the 2nd textbox background color to be there.
    And also, I need to have. When I saved it. After filling it up. The file cannot be edited and the Background color of all textbox will be just plain. Thanks!

  • Plug-in toolbar button activation question

    I'm not a plug-in developer and do not foresee becoming one, but I am trying to understand how Acrobat handles custom toolbar buttons that you add via JavaScript.
    Im interested in the cEnable parameter that you can specify when using app.addToolbarButton. With it, you can specify a JavaScript expression that sets the value of event.rc to true or false to control whether the toolbar button is enabled or not. What Im trying to understand is when, exactly, does this expression get evaluated? In my testing, it seems as though it is triggered continuously, but I dont know what particular event(s) triggers it. It is not documented in the Acrobat JavaScript reference.
    I tried reading through the plug-in related documentation in the SDK to see if I could figure out what event a plug-in would be likely to register for if it needed to be able to disable its toolbar button(s), but came up empty. If a plug-in wanted to disable a toolbar button in a similar manner, what event(s) should it be listening to?
    What is Acrobat using to trigger the evaluation of the code specified with the cEnable parameter for app.addToolbar button? Speculations are welcome if not known.
    Thanks,
    George

    > In that case the cEnable code is run when the button loads and each time a document is opened/closed in that view pane.
    It's not just limited to that. Whatever event it is, it seems as though it is continually triggered. For example, if I set the cEnable code to be based on the value of a global variable, the button is affected immediately after I alter the global variable:
    cEnable: "event.rc = global.myVar;"
    Then, in the JavaScript console, if I execute:
    global.myvar = false;
    my button immediately becomes disabled. Something must trigger it, and I'm suspecting it's related to the ECMAscript/Forms plug-in and may not be an event that other plug-ins can be notified of.
    George

  • How can we make the save button active in standard toolbar in outout of alv

    Hi experts ,
    I am using factory method to print alv with oops .
    Cancel , Exit and Back button are active by default in Standard tool bar  in output of Report , But Save button is not active , How can i make that save button active .
    Also Pls tell me how i can make editable to the cell in output , 
    My Code is like this :
    cl_salv_table=>factory( IMPORTING r_salv_table = gr_table CHANGING t_table = ispfli ).
      gr_functions = gr_table->get_functions( ).
      gr_functions->set_all( abap_true ).
      gr_display = gr_table->get_display_settings( ).
      gr_display->set_striped_pattern( cl_salv_display_settings=>true ).
      gr_display->set_list_header( 'This is the heading' ).
      gr_columns = gr_table->get_columns( ).
      gr_column ?= gr_columns->get_column( 'CITYTO' ).
      gr_column->set_long_text( 'This is long text' ).
      gr_column->set_medium_text( 'This is med text' ).
      gr_column->set_short_text( 'This is sh' ).
      gr_column ?= gr_columns->get_column( 'CITYFROM' ).
      color-col = '6'.
      color-int = '1'.
      color-inv = '0'.
      gr_column->set_color( color ).
      gr_sorts = gr_table->get_sorts( ).
    *gr_sorts->add_sort( 'CITYTO' ).
      gr_sorts->add_sort( columnname = 'CITYTO' subtotal = abap_true ).
      gr_agg = gr_table->get_aggregations( ).
      gr_agg->add_aggregation( 'DISTANCE' ).
      gr_filter = gr_table->get_filters( ).
      gr_filter->add_filter( columnname = 'CARRID' low = 'DL' ).
      gr_layout = gr_table->get_layout( ).
      gr_layout->set_key( key ).
      key-report = sy-repid.
      gr_layout->set_save_restriction( cl_salv_layout=>restrict_none ).
      gr_table->display( ).
    Rgds,
    Premraj

    Hi,
    1)you need to give the function code to that save in the Function Keys of that screen from the GUI Status.
    2) while filling the field catalog of that field you need to put the        
    wa_fieldcat_edit-edit = c_x.
    i.e use the edit and append to that field catalog internal table.
    for more infomation you can refer to below links:
    problem with alv edit and save
    *Edit* and *Save*  for the selected records in ALV
    solves your problem
    Thanks!!

  • When the current toolbar is touched previous toolbar items are activated.

    I have a UIToolBar *toolbar1. I have 3 buttons on the toolbar. And the tool bar is at the bottom of the view.
    The buttons are like library button, moreApps button, recordVideo button. If I touch the library button a new view(a UITableViewController) appears. I used presentModelViewController for it. If I touch moreApps button a new view (a UIViewController) appears and it loaded from http//. The recordButton touch gives another UIViewController view.
    When the moreApps button is touched and the view is loaded, it have the content from web and a UIToolBar *toolbar2 at the bottom the view. It has a refresh button and done button.
    The problem is when I touch the toolbar2 (not on the refresh button and done button) the previous views button are activated and corresponding views of previous buttons(library button, playVideo button) are loaded. I am not able to understand about this problem.
    Thank you.

    Try: [/questions/790833]

  • Menu Button in ALV toolbar (multiple choices for a button)

    Hi abapers,
    I would like to have a button with multiple choices in the toolbar;
    at the moment I have created a menu button with just one function.
    Here is my code:
    CLASS lcl_event_receiver (Definition)
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
        handle_toolbar
            FOR EVENT toolbar OF cl_gui_alv_grid
                IMPORTING e_object e_interactive.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    CLASS lcl_event_receiver (Implementation)
    CLASS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_toolbar.
        DATA: ls_toolbar  TYPE stb_button.
    *Separator
        CLEAR ls_toolbar.
        MOVE 3 TO ls_toolbar-butn_type.
        APPEND ls_toolbar TO e_object->mt_toolbar.
    *Button
        CLEAR ls_toolbar.
        MOVE 1 TO ls_toolbar-butn_type.
        MOVE 'EDIT' TO ls_toolbar-function.
        MOVE icon_change TO ls_toolbar-icon.
        MOVE ' Modifica'(l02) TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        MOVE 'Modifica' TO ls_toolbar-quickinfo.
        APPEND ls_toolbar TO e_object->mt_toolbar.
      ENDMETHOD.                    "handle_toolbar
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION

    hi,
    check this code and reward me if it helps you..
    TYPE-POOLS : slis,icon.
    *Structure declaration for tcodes
    TYPES : BEGIN OF ty_table,
            tcode TYPE tcode,
            pgmna TYPE progname,
            END OF ty_table.
    *Structure for tocde text
    TYPES : BEGIN OF ty_itext,
            tcode TYPE tcode,
            ttext TYPE ttext_stct,
            sprsl TYPE sprsl,
            END OF ty_itext.
    *Structure for output display
    TYPES : BEGIN OF ty_output,
            tcode TYPE tcode,
            pgmna TYPE progname,
            ttext TYPE ttext_stct,
           END OF ty_output.
    *internal table and work area declarations
    DATA : it_table TYPE STANDARD TABLE OF ty_table INITIAL SIZE 0,
           it_output TYPE STANDARD TABLE OF ty_output INITIAL SIZE 0,
           it_ittext TYPE STANDARD TABLE OF ty_itext INITIAL SIZE 0,
           wa_table TYPE ty_table,
           wa_output TYPE ty_output,
           wa_ittext TYPE ty_itext.
    *Class definition for ALV toolbar
    CLASS:      lcl_alv_toolbar   DEFINITION DEFERRED.
    *Declaration for toolbar buttons
    DATA : ty_toolbar TYPE stb_button.
    Data declarations for ALV
    DATA: c_ccont TYPE REF TO cl_gui_custom_container,   "Custom container object
          c_alvgd         TYPE REF TO cl_gui_alv_grid,   "ALV grid object
          it_fcat            TYPE lvc_t_fcat,            "Field catalogue
          it_layout          TYPE lvc_s_layo,            "Layout
          c_alv_toolbar    TYPE REF TO lcl_alv_toolbar,           "Alv toolbar
          c_alv_toolbarmanager TYPE REF TO cl_alv_grid_toolbar_manager.  "Toolbar manager
    *Initialization event
    INITIALIZATION.
    *Start of selection event
    START-OF-SELECTION.
    *Subroutine to get values from tstc table
      PERFORM fetch_data.
    *subroutine for alv display
      PERFORM alv_output.
          CLASS lcl_alv_toolbar DEFINITION
          ALV event handler
    CLASS lcl_alv_toolbar DEFINITION.
      PUBLIC SECTION.
    *Constructor
        METHODS: constructor
                   IMPORTING
                     io_alv_grid TYPE REF TO cl_gui_alv_grid,
    *Event for toolbar
        on_toolbar
           FOR EVENT toolbar
           OF  cl_gui_alv_grid
           IMPORTING
             e_object.
    ENDCLASS.                    "lcl_alv_toolbar DEFINITION
          CLASS lcl_alv_toolbar IMPLEMENTATION
          ALV event handler
    CLASS lcl_alv_toolbar IMPLEMENTATION.
      METHOD constructor.
      Create ALV toolbar manager instance
        CREATE OBJECT c_alv_toolbarmanager
          EXPORTING
            io_alv_grid      = io_alv_grid.
       ENDMETHOD.                    "constructor
      METHOD on_toolbar.
      Add customized toolbar buttons.
      variable for Toolbar Button
          ty_toolbar-icon      =  icon_generate.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button1'.
          APPEND ty_toolbar TO e_object->mt_toolbar.
          ty_toolbar-icon      =  icon_voice_output.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button2'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_phone.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button3'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_mail.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button4'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
       ty_toolbar-icon      =  icon_voice_input.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button5'.
         APPEND ty_toolbar TO e_object->mt_toolbar.
      Call reorganize method of toolbar manager to
      display the toolbar
         CALL METHOD c_alv_toolbarmanager->reorganize
          EXPORTING
            io_alv_toolbar = e_object.
       ENDMETHOD.                    "on_toolbar
    ENDCLASS.                    "lcl_alv_toolbar IMPLEMENTATION
    *&      Form  fetch_data
          text
    -->  p1        text
    <--  p2        text
    FORM fetch_data .
    Select the tcodes upto 200 rows from TSTC
       SELECT   tcode
               pgmna
               FROM tstc
               INTO CORRESPONDING FIELDS OF TABLE it_table
               UP TO 200 ROWS
               WHERE dypno NE '0000'.
    *Select the tcode textx
       IF it_table[] IS NOT INITIAL.
         SELECT ttext
               tcode
               sprsl
               FROM tstct
               INTO CORRESPONDING FIELDS OF TABLE it_ittext
               FOR ALL ENTRIES IN it_table
               WHERE tcode = it_table-tcode
               AND sprsl = 'E'.
       ENDIF.
    Apppending the data to the internal table of ALV output
       LOOP AT it_table INTO wa_table.
        wa_output-tcode = wa_table-tcode.
        wa_output-pgmna = wa_table-pgmna.
       For texts
        READ TABLE it_ittext INTO wa_ittext WITH KEY tcode = wa_table-tcode.
        wa_output-ttext = wa_ittext-ttext.
         APPEND wa_output TO it_output.
        CLEAR wa_output.
       ENDLOOP.
       ENDFORM.                    " fetch_data
    *&      Form  alv_output
          text
    -->  p1        text
    <--  p2        text
    FORM alv_output .
    *Calling the ALV
      CALL SCREEN 0600.
      ENDFORM.                    " alv_output
    Calling the ALV screen with custom container
    On this statement double click  it takes you to the screen painter SE51.Enter the attributes
    *Create a Custom container and name it CC_CONT and OK code as OK_CODE.
    *Save check and Activate the screen painter.
    Now a normal screen with number 600 is created which holds the ALV grid. PBO of the actual screen , Here we can give a title and *customized menus
    *&      Module  STATUS_0600  OUTPUT
          text
    MODULE status_0600 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0600  OUTPUT
    calling the PBO module ALV_GRID.
    *&      Module  ALV_GRID  OUTPUT
          text
    MODULE alv_grid OUTPUT.
    *create object for custom container
      CREATE OBJECT c_ccont
           EXPORTING
              container_name = 'CC_CONT'.
    *create object of alv grid
      CREATE OBJECT c_alvgd
          EXPORTING
              i_parent = c_ccont.
    create ALV event handler
      CREATE OBJECT c_alv_toolbar
        EXPORTING
          io_alv_grid = c_alvgd.
    Register event handler
      SET HANDLER c_alv_toolbar->on_toolbar FOR c_alvgd.
    Fieldcatalogue for ALV
       PERFORM alv_build_fieldcat.
    ALV attributes FOR LAYOUT
      PERFORM alv_report_layout.
       CHECK NOT c_alvgd IS INITIAL.
    Call ALV GRID
       CALL METHOD c_alvgd->set_table_for_first_display
        EXPORTING
          is_layout                     = it_layout
        CHANGING
          it_outtab                     = it_output
          it_fieldcatalog               = it_fcat
        EXCEPTIONS
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          OTHERS                        = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDMODULE.                 " ALV_GRID  OUTPUT
    *&      Form  alv_build_fieldcat
          text
         <--P_IT_FCAT  text
    FORM alv_build_fieldcat.
       DATA lv_fldcat TYPE lvc_s_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '1'.
      lv_fldcat-fieldname = 'TCODE'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 8.
      lv_fldcat-scrtext_m = 'TCODE'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
       lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '2'.
      lv_fldcat-fieldname = 'PGMNA'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 15.
      lv_fldcat-scrtext_m = 'PROGNAME'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '3'.
      lv_fldcat-fieldname = 'TTEXT'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 60.
      lv_fldcat-scrtext_m = 'Description'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
    ENDFORM.                    " alv_build_fieldcat
    *&      Form  alv_report_layout
          text
         <--P_IT_LAYOUT  text
    FORM alv_report_layout.
       it_layout-cwidth_opt = 'X'.
       it_layout-zebra = 'X'.
    ENDFORM.                    " alv_report_layout
    PAI module of the screen created. In case we use an interactive ALV or
    *for additional functionalities we can create OK codes
    *and based on the user command we can do the coding.
    *&      Module  USER_COMMAND_0600  INPUT
          text
    MODULE user_command_0600 INPUT.
    ENDMODULE.                 " USER_COMMAND_0600  INPUT
    thanks,
    gupta

  • Why Doesn't the Acrobat File Toolbar Have a "Save As" Button?

    One of the most frequently used functions in Acrobat is located under the File menu where you can select "Save As" to select from a number of different file formats and then save the file in a specified folder.  The File Toolbar includes a "Save" icon/button that saves only a pdf formatted file to your Documents folder (or whichever folder you specify in Preferences) instead of to whatever specific folder you might want to file that particular document.  Another problem is that when you receive a pdf document by email or download it from the internet, it usually comes with a file name that you wouldn't want to use for the file.  Once the file is open, you'll want to rename it and save it somewhere.  However, if you have not changed the document in any way like editing or commenting, the only applicable icon on the File Toolbar, the Save button, is greyed out and can't be used until you alter the document.
    As such, the easy access to the "Save" button on the File Toolbar is wasted in that it will rarely be used when it's not greyed out, and when it might be used before any editing or commenting, it remains greyed out and inaccessible.  My request is to make an Icon or even just the label for "Save As" available for selection to go on the File Toolbar where it could be easily accessed.  Also, let the user decide if he wants to do a save before altering a document, skip the greying out of the buttons, make them always available for use.

    Unfortunately it's not a realistic possibility, because the Save As menu has two sub-levels across several nodes. A drop-down button can't handle that.

  • My orange firefox button disappeared, and I do not have the menu toolbar open

    My orange firefox button disappeared, and when I posed the ? I got "the button only appears when the menu toolbar if off" My menu toolbar IS off, I never have it on. I want my firefox button back!

    You are using Firefox 29. The changes used the code name ''Australis''. The Firefox button is now replaced with a new button on the right
    * [≡] [[Image:New Fx Menu]]
    *This is now outdated [[Display the Firefox button menu instead of the menu toolbar]]
    * See the Release Notes <br /> http://www.mozilla.org/en-US/firefox/29.0beta/releasenotes/
    ** '''And https://blog.mozilla.org/blog/2014/03/20/help-test-the-new-firefox-beta-faster-simplified-and-easier-to-customize/'''
    ** You may be interested in explanatory blog <br /> https://blog.mozilla.org/ux/2013/11/australis-is-landing-in-firefox-nightly/
    * This article is updated already [[Get started with Firefox - An overview of the main features]] <br />If necessary use the selector or this link specifically to see the Firefox29 (Win7) version https://support.mozilla.org/en-US/kb/get-started-firefox-overview-main-features#firefox:win7:fx29
    You could revert to the Release channel and still have the Firefox button for a few more weeks or just try the new button as a lot of effort went in to the new design. You may grow to like it. If not then addons usually are able to remove some feature regressions have a look at this one
    * https://addons.mozilla.org/firefox/addon/classicthemerestorer/
    If you wish to make a short comment on the changes please use
    * https://input.mozilla.org/feedback
    ** comments being collected in http://input.mozilla.org/

  • I'm using Photoshop Elements 12 on Windows 8.1.  When I go into the Expert Edit Mode the toolbar available appears in one single column and misses off several tools including foreground and background colour.  How can I restore the original toolbar?

    I'm using Photoshop Elements 12 on Windows 8.1.  When I go into the Expert Edit Mode the toolbar available appears in one single column and misses off several tools including foreground and background colour.  How can I restore the original toolbar?

    Thanks for your help - your suggestion worked beautifully.Dennis Hood
          From: 99jon <[email protected]>
    To: Dennis Hood <[email protected]>
    Sent: Thursday, 15 January 2015, 15:20
    Subject:  I'm using Photoshop Elements 12 on Windows 8.1.  When I go into the Expert Edit Mode the toolbar available appears in one single column and misses off several tools including foreground and background colour.  How can I restore the original toolbar?
    I'm using Photoshop Elements 12 on Windows 8.1.  When I go into the Expert Edit Mode the toolbar available appears in one single column and misses off several tools including foreground and background colour.  How can I restore the original toolbar?
    created by 99jon in Photoshop Elements - View the full discussionTry re-setting the prefs.Go to: Edit >> Preferences >> General (Photoshop Elements menu on Mac)Click the button Reset Preferences on next Launch If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7099161#7099161 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7099161#7099161 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"  Start a new discussion in Photoshop Elements by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • I can't creat a personal toolbar using conduit free toolbars. What can I do to get this to work?

    I used to have my own toolbar using the free toolbar creation option in www.conduit.com. but once I follow all the steps, hit the "install now" button in the add-on application window, I get an error message saying that I cannot add it because "Firefox cannot modify the needed file." The file it has to modify is: http://ff.conduit-download.com/91/314/CT3149591/Downloads/Firefox/Releases/10.4.2.99/11-11-17-00.49.54.599/munchkinelf.gmail.com634570877991431250.xpi. I get a message saying that the toolbar could not be installed because "Firefox cannot modify the needed file" instead of the usual one that says that the add-on will be enabled once Firefox is restarted.

    You can do a disk check with the chkdsk.exe program.
    If you run the chkdsk.exe program from a cmd.exe Command window then you can read the response from the chkdsk.exe program.
    Open a cmd.exe window:<br />
    Start &gt; Run: cmd.exe &lt;press Enter&gt;
    At the command prompt (>) type or Copy&Paste: chkdsk.exe /f /r &lt;press Enter&gt; (put a space before /f and /r)
    If you get something like: Would you like to schedule this volume to be checked the next time the system restarts? y/n then answer the question with "Y" and close all programs and reboot the computer.
    A possible cause is security software (firewall) that blocks or restricts Firefox without informing you about that, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process.
    See:
    * [[Server not found]]
    * [[Firewalls]]
    * http://kb.mozillazine.org/Browser_will_not_start_up

  • When I click to open anything I get a box saying open link in new window, open link in new tab, download linked file etc.  When I go to close anything I get hide toolbar, customize toolbar.  It takes  3-5 clicks and it will finally close.

    When I click to open anything I get a box saying open link in new window, open link in new tab, download linked file etc.  When I go to close anything I get hide toolbar, customize toolbar.  It takes  3-5 clicks and it will finally close.

    In Firefox Options / Privacy be sure "Remember download history" is checked. To see all of the options on that panel, "Firefox will" must be set to "Use custom settings for history".
    To find your OS information, on your Windows desktop, right-click the My Computer icon, choose Properties, under System on that small window is info about your OS.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • How do I get my old toolbar back. Updated toolbar is pure crap

    The updated toolbar has no back and foward button and no window where I can type in a web site I want to go to. The old one worked fine. The updated toolbar is worthless.

    You may have
    #chosen "Full Screen" Mode or
    #un-checked the toolbars
    The F11 key toggles Full Screen Mode on or off. In Full Screen Mode, you have no toolbars, no tabs and no Add-on Bar (at the bottom).
    *See --> http://kb.mozillazine.org/Netbooks#Full_screen
    If you un-checked your toolbars (checked=displayed; un-checked=not displayed), then do one of the following, and click on the ones you want to check/un-check:
    *'''''"...no back and foward button and no window where I can type in a web site I want to go to..."'''''
    **Back/Forward button and URL/Address/Location bar are on the Navigation Toolbar; be sure Navigation Toolbar is checked following instructions immediately below
    *right-click in the empty space at the end of the tabs bar
    *tap the ALT key or the F10 key, the Menu Bar will display, click View > Toolbars
    *Firefox > Preferences > Advanced > General tabFirefox > Preferences > Advanced > General tab
    *hold down the ALT key and tap the keyboard letters V T
    *<u>the URL/Address/Location bar, Back/Forward buttons, Refresh/Reload buttons are all located on the Navigation Toolbar</u>
    *See --> https://support.mozilla.com/en-US/kb/Back%20and%20forward%20or%20other%20toolbar%20items%20are%20missing
    *Also See --> https://support.mozilla.com/en-US/kb/how-do-i-customize-toolbars
    *Also See --> http://kb.mozillazine.org/Toolbar_customization
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • My bookmark icons can be fully seen in bookmark toolbar. But on the address bar and on tab most of the icons are blank and when I open most of the websites, their icons are also blank, too. I've already reinstall the firefox 3.6.3 but it is the same. Plea

    My bookmark icons can be fully seen in bookmark toolbar. But on the address bar and on tab most of the icons are blank and when I open most of the websites, their icons are also blank, too. I've already reinstall the firefox 3.6.3 but it is the same. Please help me. Some of the websites show thier icon normally.
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3

    Yes, it doesn't work. I ran in safe mode. nothing changed. I uninstalled Mozilla firefox with only standard removal, no change. I finally uninstalled Mozilla with complete removal and reinstalled it, then it return to normal. Why does this happen? Thanks for your reply.

  • When I right click on my Bookmark Toolbar to choose Open All in Tabs and click it, nothing happens. This is when I upgraded to 4.0. I've rebooted. How do I fix this?

    When I right click on my Bookmark Toolbar to choose Open All in Tabs and click it, nothing happens. This is when I upgraded to 4.0. I've rebooted. How do I fix this?

    You can middle-click a link to open the link in a new tab.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • In Firefox v4.0.1, custom toolbars disappear from the toolbar menu when I open a "New Window".

    1.
    I created a new toolbar in Customize... / Add New Toolbar. It's on the list of toolbars and opens up '''most times''' I start Firefox, but not ''always''. I have tested it and it is completely random.
    2.
    Same type of problem as 1., but '''''everytime''''' I use the 'New Window' feature the custom toolbar disappears from the toolbar menu and if I need to use it, I have to '''save all tabs as bookmark''' then close and reopen FireFox so I get my original window [where the toolbar shows up]. AARRRGHH.
    I've been using FF for 7 years now, so I know enough to rule out corrupted localstore.rdf, new or updated add-ons (I could be wrong though, as I often am...).
    Has this come up with other users? Am I being cursed? [lol] any help would be appreciated.

    cor-el,
    Sorry it took so long to get back to you.
    You know, you're right. I should try everything, no matter how smart I think I am!
    It's been 3 days since I deleted the localstore.rdf file and so far so good.
    Thanxs for the help

Maybe you are looking for

  • HOW TO PASS A PARAMETER TO UIX PAGE FROM APPS' FUNCTIONS FORM?

    Hello, We created a form function (in Sys Admin resp) for a UIX page. The Type field is 'SSWA plsql function that opens a new window (Kiosk Mode)'. The HTML Call field is 'POBarCode.uix'. We have to pass the username (who logs in) to the UIX page. If

  • Portable but powerful?

    I'm very sorry if this has been asked a million times before but so far I haven't found anyone with quite the same requirements as me. So currently I am looking at getting a macbook mainly for graphics (Photoshop/Illustrator) but I will be doing a lo

  • Movie Playback Stops

    I had purchased a movie and it will only play 3/4 of it.  Gets to a spot and says will not load.  Can go back to the beginning and watch over but stops in the same spot every time. How do I fix it?

  • HR_INFOTYPE_OPERATION with DEL is not working.

    Hi guys, im trying to delete one row for it 0416 (i call this function using a BAPI in pa30) the return code are: cant find an entry to delete001002002001A114   2007111420071114000 there isnt any entry in table T582Z with it 0416 here is the code dat

  • Fail to install oracle infrastructure in separating mode

    When I install oracle infrastrure in Redhat 4.0 update 1, at first install the OracleAS Metadata Repository in a computer, then I try to install the Oracle Identity Management Components on another machine also redhat 4.0 update 1, the installer fail