Issue with tabs

when I have open a tab for facebook.com and a tab for MafiaWars in Facebook my tab bar disappears although the tabs are still open and I can scroll through them with the keyboard. This is really frustrating

It is more that I never had this issue with the old Firefox and I don't think I used to have this issue with 4.12. So I was trying to bring it to the developers attention so they could correct the issue.
I will add that when I have any other window in addition to those 2 the tab bar reappears. It is only when I have only Facebook and MafiaWars open.

Similar Messages

  • Issue with tabbed block in selection screen

    Hi All,
    I have created a report program with the following code.
    SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.
    PARAMETERS: p1 TYPE c LENGTH 10.
    SELECTION-SCREEN END OF SCREEN 100.
    SELECTION-SCREEN BEGIN OF SCREEN 200 AS SUBSCREEN.
    PARAMETERS: q1 TYPE c LENGTH 10.
    SELECTION-SCREEN END OF SCREEN 200.
    SELECTION-SCREEN: BEGIN OF TABBED BLOCK mytab FOR 10 LINES,
                      TAB (20) button1 USER-COMMAND push1,
                      TAB (20) button2 USER-COMMAND push2,
                      END OF BLOCK mytab.
    INITIALIZATION.
      button1 = 'Selection Screen 1'.
      button2 = 'Selection Screen 2'.
      mytab-prog = sy-repid.
      mytab-dynnr = 0100.
      mytab-activetab = 'PUSH1'.
    AT SELECTION-SCREEN.
      CASE sy-dynnr.
        WHEN 1000.
          CASE sy-ucomm.
            WHEN 'PUSH1'.
              mytab-dynnr = 100.
            WHEN 'PUSH2'.
              mytab-dynnr = 200.
          ENDCASE.
      ENDCASE.
    Execute the program and click on the second tab-page. Now, click on the 'Execute' button or press F8 (there is no specific functionality coded here).
    The issue now is that the first tab-page is displayed, instead of the second tab remaining displayed. I require the navigation to remain within the second tab-page after the EXECUTE button is clicked.
    Could someone help me out with this issue?
    Regards,
    Dinup
    Edited by: Dinup Sudhakaran on Feb 18, 2008 1:40 PM

    Hi,
    Go through below document with example code.
    It will help you.
    Tabstrip Controls on Selection Screens
    As with screens, you can now use tabstrip controls on selection screens. To do this, you must define a tabstrip area and the associated tab pages, and assign a subscreen to the tab pages. You do not have to (indeed, cannot) declare the tabstrip control or program the screen flow logic in your ABAP program, since both are automatically generated.
    To define a tabstrip area with tab pages, use the following statements in your selection screen definition:
    SELECTION-SCREEN: BEGIN OF TABBED BLOCK <tab_area> FOR <n> LINES,
                      TAB (<len>) <tab1> USER-COMMAND <ucom1>
                                  [DEFAULT [PROGRAM <prog>] SCREEN <scrn>],
                      TAB (<len>) <tab2> USER-COMMAND <ucom2>
                                  [DEFAULT [PROGRAM <prog>] SCREEN <scrn>],
                      END OF BLOCK <tab_area>.
    This defines a tabstrip control <tab_area> with size <n>. The tab pages <tab1>, <tab2>… are assigned to the tab area. <len> defines the width of the tab title. You must assign a function code <ucom> area to each tab title. You can find out the function code from the field SY-UCOMM in the AT SELECTION-SCREEN event.
    For each tab title, the system automatically creates a character field in the ABAP program with the same name. Before the selection screen is displayed, you can assign a text to the field. This then appears as the title of the corresponding tab page on the selection screen.
    You must assign a subscreen to each tab title. This will be displayed in the tab area when the user chooses that title. You can assign one of the following as a subscreen:
    A subscreen screen defined using the Screen Painter.
    A selection screen subscreen, defined in an ABAP program.
    You can make the assignment either statically in the program or dynamically at runtime. If, at runtime, one of the tab titles has no subscreen assigned, a runtime error occurs.
    Static assignment
    Use the DEFAULT addition when you define the tab title. You can specify an ABAP program and one of its subscreens. If you do not specify a program, the system looks for the subscreen in the current program. When the user chooses the tab title, it is activated, and the subscreen is assigned to the tabstrip area. The static assignment is valid for the entire duration of the program, but can be overwritten dynamically before the selection screen is displayed.
    Dynamic assignment
    For each tab area, the system automatically creates a structure in the ABAP program with the same name. This structure has three components – PROG, DYNNR, and ACTIVETAB. When you assign the subscreens statically, the structure contains the name of the ABAP program containing the subscreen, the number of the subscreen, and the name of the tab title currently active on the selection screen (and to which these values are assigned). The default active tab page is the first page. You can assign values to the fields of the structure before the selection screen is displayed, and so set a subscreen dynamically.
    If you assign a normal subscreen screen to a tab title, the dialog modules containing its flow logic must be defined in the current ABAP program. If the subscreen is a selection screen, user actions will trigger the AT SELECTION-SCREEN event and its variants (see Selection Screen Processing). This includes when the user chooses a tab title. If one selection screen is included on another, AT SELECTION-SCREEN will be triggered at least twice – firstly for the "included" selection screen, then for the selection screen on which it appears.
    REPORT demo_sel_screen_with_tabstrip.
    DATA flag(1) TYPE c.
    SUBSCREEN 1
    SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETERS: p1(10) TYPE c,
                p2(10) TYPE c,
                p3(10) TYPE c.
    SELECTION-SCREEN END OF BLOCK b1.
    SELECTION-SCREEN END OF SCREEN 100.
    SUBSCREEN 2
    SELECTION-SCREEN BEGIN OF SCREEN 200 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME.
    PARAMETERS: q1(10) TYPE c OBLIGATORY,
                q2(10) TYPE c OBLIGATORY,
                q3(10) TYPE c OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN END OF SCREEN 200.
    STANDARD SELECTION SCREEN
    SELECTION-SCREEN: BEGIN OF TABBED BLOCK mytab FOR 10 LINES,
                      TAB (20) button1 USER-COMMAND push1,
                      TAB (20) button2 USER-COMMAND push2,
                      TAB (20) button3 USER-COMMAND push3
                                       DEFAULT SCREEN 300,
                      END OF BLOCK mytab.
    INITIALIZATION.
      button1 = text-010.
      button2 = text-020.
      button3 = text-030.
      mytab-prog = sy-repid.
      mytab-dynnr = 100.
      mytab-activetab = 'BUTTON1'.
    AT SELECTION-SCREEN.
      CASE sy-dynnr.
        WHEN 1000.
          CASE sy-ucomm.
            WHEN 'PUSH1'.
              mytab-dynnr = 100.
              mytab-activetab = 'BUTTON1'.
            WHEN 'PUSH2'.
              mytab-dynnr = 200.
              mytab-activetab = 'BUTTON2'.
          ENDCASE.
        WHEN 100.
          MESSAGE s888(sabapdocu) WITH text-040 sy-dynnr.
        WHEN 200.
          MESSAGE s888(sabapdocu) WITH text-040 sy-dynnr.
      ENDCASE.
    MODULE init_0100 OUTPUT.
      LOOP AT SCREEN.
        IF screen-group1 = 'MOD'.
          CASE flag.
            WHEN 'X'.
              screen-input = '1'.
            WHEN ' '.
              screen-input = '0'.
          ENDCASE.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    ENDMODULE.
    MODULE user_command_0100 INPUT.
      MESSAGE s888(sabapdocu) WITH text-050 sy-dynnr.
      CASE sy-ucomm.
        WHEN 'TOGGLE'.
          IF flag = ' '.
            flag = 'X'.
          ELSEIF flag = 'X'.
            flag = ' '.
          ENDIF.
      ENDCASE.
    ENDMODULE.
    START-OF-SELECTION.
      WRITE: / 'P1:', p1,'Q1:', q1,
             / 'P2:', p2,'Q2:', q2,
             / 'P3:', p3,'Q3:', q3.
    This program defines two selection screens – 100 and 200, as subscreens, and places a tabstrip control area with three tab pages on the standard selection screen. A subscreen screen 300 (from the same program) is assigned statically to the third tab page.
    The layout of screen 300 is:
    The input/output fields P1 to Q3 are defined by using the parameters from the ABAP program The pushbutton has the function code TOGGLE.
    The screen flow logic for screen 300 is as follows:
    PROCESS BEFORE OUTPUT.
      MODULE init_0100.
    PROCESS AFTER INPUT.
      MODULE user_command_0100.
    Both dialog modules are defined in the ABAP program.
    When you run the program, the standard selection screen appears. In the INITIALIZATION event, the texts are defined on the tab titles, the subscreen selection screen 100 is assigned to the tab area, and the first tab title is activated.
    User actions on the selection screen are processed in the AT SELECTION-SCREEN event block. In particular, it is here that the subscreens are assigned and tab titles activated when the user chooses one of the first two tab titles. This is not necessary for the third tab title, since the dynamic assignment (screen 300) is always placed in the structure MYTAB when the user chooses it.
    Before the subscreen screen is displayed, the PBO module INIT_100 is executed. User actions on the subscreen screen trigger the PAI module. This includes when the user chooses a tab title. After that, the AT SELECTION-SCREEN event is triggered.
    Messages in the status line show where an action has been processed.

  • FF 20.0.1 Giving Me Massive Issues With Tabs - Help Greatly Needed

    So Firefox updated tonight unfortunately, even though I thought I had turned that off, and I'm having massive issues. It took about two hours for me to just get my shortcut keys working again and if I right click to "Open in a New Tab" there is no responsive activity from FF. If I right click on anything (on that MASSIVE menu, btw - really? I don't need all of that!) none of it is working. And any tabs I now manage to get open using my restored shortcut keys go unresponsive.
    I've tried re-starting w/o add-ons, but nothing changed. And I'm not restoring to a default of 20.0.1 - at that point I'll scrap this update and go back to my preferred v.19 as of January.

    Issues with a massive right-click context menu has been reported as caused by Firebug, so make sure to update Firebug to the latest version.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Safari issues with Tabs, Video, and Java

    Hi.  I updated to Lion and Safari 5.1 and did all the software updates.  I have a MacBook from 2008.  For some reason, I am having a lot of issues with Safari.  I hope someone knows what I am doing wrong.
    1.  Every time I open Safari after I turn on my computer or it wakes up from sleep, I have to do an internet test to get the computer to realize I am still connected to my house WiFi.
    2. The computer goes to sleep after 30 secs.  Can I change this somehow?
    3. I cannot open any videos from YouTube or vidoes my friends have posted on Facebook.
    4. I used to be able to drag a link over an existing tab and it would automatically go there.  Now I have to drag it to the + sign to get it to open.  (command click still works)
    5.  I tried to check my plug-ins to see if that was the problem.  I put all of my internet plug-ins in the trash and added them one by one.  Safari seemed to work a lot faster, but then as soon as it went to sleep, I had the same issues.  Also, I can't find Java anymore (not in my trash, didn't delete anything from the trash) and I did the java test on a website and it's not showing what it's supposed to.  All the software updates say it is fine, but obviously it isn't.
    I know this is a lot of stuff, and most of it is probably due to me not really understanding how my mac works.  I've been looking through the forums to see if anyone else has all of these issues; after an hour and a half of reading discussions, I gave up.  Any advice would be really appreciated.  Thank you.

    So, while waiting for some help, I've been continuing my own research. 
    3. It turned out that it wasn't Java messing with my videos.  I just needed version 10,3,181,34 of Adobe Flash and now all videos are working.   Hope that helps if anyone else was having similar issues.  Here's the link if you need to find out which version you have: http://www.adobe.com/software/flash/about/
    4.  It turns out that there are several other discussions regarding people who can't drag and drop links into Tabs on Safari.  My solution was to write to Apple to ask if they can put that feature back in.
    5. I'm not sure if I am still having Java issues, but so far everything I am needing to upload and watch is fine.
    One and two are still annoying, so I'll continue to look for solutions.  If anyone has any suggestions, I'd appreciate them.  Hope this helps someone as much as it helped me.  I don't want to throw my computer against a wall every 5 seconds now.

  • Issue with Tabbing

    I’m having some issues with Captivate and tabbing. I’m working on 2 different projects, and they have opposite tabbing problems. These courses will need to pass 508 functionality testing and will not with their current issues.
    Project 1: Captivate tabs to everything on the slide (text, background objects, buttons, clickboxes, etc.) in a random order.
    Project 2: Captivate only tabs to buttons. It does not tab to other interactive elements such as click boxes and hyperlinks.
    For both projects, I would like them to only tab to interactive elements: Buttons, Hyperlinks, and Clickboxes.
    I have tried using "tab order" on both projects and sorting the order of items in the timeline, but neither option has worked.
    I have also looked into "seamless" tabbing and verified that it is turned off.
    These issues occur in both the preview and published SWF file.
    Is there a way to select what should be "tabbable" ?

    Hi,
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    What is 'dbGrid' control? Is it a Windows Forms control? Or a third-party control?
    Which type of project/application are you doing?
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Issue with tabs frequently reloading on my iPad Mini Retina

    After opening 4 tabs (sometimes just 2 or 3) on my iPad Mini Retina, returning to the first opened tab has me needing to reload it on Safari. Same case when I exit to another app like Gmail or the Appstore and then return to the browser. Why is that so?
    On my iPad 2 and iPhone 5s, I can open up to 8 tabs (maybe more, never tried) and switch between them with zero reloads, and can use a couple of apps and return to the browser with all tabs fully loaded as before.
    Thanks!

    After opening 4 tabs (sometimes just 2 or 3) on my iPad Mini Retina, returning to the first opened tab has me needing to reload it on Safari. Same case when I exit to another app like Gmail or the Appstore and then return to the browser. Why is that so?
    On my iPad 2 and iPhone 5s, I can open up to 8 tabs (maybe more, never tried) and switch between them with zero reloads, and can use a couple of apps and return to the browser with all tabs fully loaded as before.
    Thanks!

  • IFrame-issues with Tabbed Panels

    See for yourself
    (the code may be messy, haven't gone through it yet)

    Perhaps I wasn't clear enough when I phrased the question:
    Does anyone know if iFrames are unsupported when using
    Spry-elements, specifically the Tabbed Panels script? I have to use
    iFrame to embed a my Zenphoto gallery.
    Here's the site WITH iFrame:
    http://hogfem.no/fjordpanorama
    And here's WITHOUT the iFrame:
    http://hogfem.no/fjordpanorama/index2.php

  • I have an issue with the tabs and windows disappearing....?

    I have a constant problem with Firefox now. I notice that with Firefox 4 and 5 there has been a reoccurring problem with the tabs and windows closing on their own. If I have more than one window open, one of them will suddenly disappear and I wont see the tab at the bottom anymore until I click out of the one I am currently on. It is very annoying and only when I get out of Firefox completely will it sometimes reappear. Even more frightening is the fact that when I move the mouse downward to the bottom of the page the page shuts out as if I clicked out of it.
    I am wondering if this is a security issue meaning some type of malware or virus that is manipulating my browser or is this a common issue that has some unknown cause? I would like to know what the cause is and how it can be fixed because it annoys me all the time. Please help!!

    No Issue with the voltage in general. iPad is being charged via USB.
    1. If you connect it directly to the computer - no problem.
    2. If you want to charge it directly from the power socket you will need this:
    http://store.apple.com/uk/product/MB706B/B/apple-usb-power-adapter
    TZ

  • Issue with create user and issue with Java Development tab

    I have two issues with EP,
    1. When i login with Super Admin user, i am unable to Create any user from User Admin tab. Do i have to change the settings of the Super Admin? or is there any criteria for creating the user?
    2. How to assign any user the Java Development tab. Though i login with a super admin user i am unable to see the Java Development role and when tried to assign the role, there were no searches for that Java....

    Hi Adi,
    by default the super administrater has got all permissions. Thus you should be able to create portal users when using a user assigned to the portal group Administrators.
    In order to help you with your first question we need more information. Please describe the malfunction in detail. Have a look into the log files and post related error messages.
    Regarding your second question: You will find the java development role in PCD
    pcd:portal_content/com.sap.pct/platform_add_ons/com.sap.pct.pdk/Roles/com.sap.pct.pdk.JavaDeveloper.
    If not, then you haven't installed the PDK business package in your portal.
    Go to service.sap.com, choose downloads and search the package (PDK should do it). Download the package, and deploy on your portal using SDM.
    Best regards,
    Martin

  • When I open a new tab, an unwanted website opens instead of my desired home page. THIS IS ONLY AN ISSUE WITH NEW TABS; (opening the web browser AND clicking on the home button frings me to my desired home page.)

    When I open a new tab, an unwanted website opens instead of my desired home page. THIS IS ONLY AN ISSUE WITH NEW TABS; (opening the web browser AND clicking on the home button frings me to my desired home page.)
    I have attached the url of the unwanted site.

    Use this add-on [https://addons.mozilla.org/en-US/firefox/addon/custom-new-tab/ '''Custom new tab'''].

  • Issues with iCloud tabs function

    I am having issues with the iCloud tabs function in Safari 6. even though i have turned on the Safari Prefrences in iCloud the tabs open on my iPad 2 do not appear on my Mac. Your help is much appreciated

    The iCloud Safari tab feature won't be available until iOS 6 is available for iOS based devices this fall >  Apple - iOS 6 Preview
    See Number 6 >   Apple - OS X Mountain Lion — Use your Mac in so many new ways.
    "iCloud Tabs on iPhone, iPad, and iPod touch requires iOS 6."

  • Hi. New iPad Air for Xmas. Intermittent issues with Safari closing suddenly or just suddenly opening App Store on a second tab. HELP!

    Hi
    There is an intermittent issue with either Safari just closing suddenly (looking at other discussions, believe this is to do with the RAM - wish this had been mentioned in at least one review of iPad Air I investigated before purchasing) however the most irritating issue is this constant 'jumping' from whatever I'm reading to the App Store which has been just automatically opened on another tab.. App Store is either showing William Hill app (never looked at or downloaded this) or on some occasions, some random game app which again, I've never looked at or downloaded... (I've checked the pages I've been reading &amp; none of these are pop-ups or ads on these pages either...)
    Any ideas?

    I have this issue too. I don't think it's a problem with anyone's iPad or iPhone, it's internet advertisers who have worked out how to automatically trigger sending a person to the App Store just by loading a web page. I've seen William Hill and various games come through on the App Store with this technique.
    This could mean Apple have no protection in Safari for preventing redirects to the App Store without a user specifically triggering it (like the way pop-ups used to happen before pop-up blockers were invented). Although I suspect that Apple wouldn't be that blasé about that sort of thing. More likely I think is the advertisers are binding a page event like onscroll which shouldn't allow this but was perhaps overlooked by Safari's developers. Apple need to make an update to Safari to prevent anything but ontap/onclick events from opening the App Store.
    You should perhaps consider banning apps on the App Store using this advertising technique. They'd soon start behaving if they thought their app could be de-listed!!!

  • Issues with Samsung Galaxy Tab S after installing 5.0.2

    Hi all,  After updating to the latest firmware I have had nothing but issues leading to the tablet now being useless. Power drains in seconds dropping from 53% to 2% in 3 minutes and loosing mobile connection every few minutes. The tablet turns itself off constantly and it is completely useless.  I have done the usual, deleted cche partitions's, soft reset, complete reset, deleted all data on SD card inserted and checked SIM in my phone to make sure it works. Anyone else had these issues or  other, this is redicoulus. After waiting months for the same update for my Galaxy Note 3 I am staring to have other issues with this also and this is very worrying.  many thanks  

    The update is FOTA. Your device will notify u when its your turn. They send them out in batches.
    Now you can take it to a best buy to the Samsung experience center and have them flash it. Also a Att device support center can do it.

  • Issue with Ord Start Date

    Hi,
    I am having issue with Ord Start Date.
    When i create XYZ Asset now when i do the acquasation for that new asset. Example: Using FB01 i enter todays date and i do the posting.
    Now when i go to DEP Area TAB for the DEP Key (M200) - The Ord Dep Start Date is 15 Dec 2010.
    For this DEP Key Period Control Methods (T code - AFAMP) - Acquisation Entered is ( 6 that is - at the start of year) and the Period Control is ( T code - OAVS) (4 that is - First year convention at half year start date).
    Our client is using the fiscal year as 1 June 2010 to 31 May 2011.
    So when i do acquistion for the asset as per the period contol the Ord Dep Start Date should be 1 Dec 2010, but here it is talking 15 Dec 2010.
    Why is system talking 15 days more.
    Regards.

    Hi
    Which Fiscal year variant are you using??
    Did you maintain it in OAVH? Copy the existing entry in OAVH for K4 to your Fisc Yr var and try again
    And also, 04 does not figure for Acquisitions in AFAMP under 0004.... Whatever you specify in OAVH must also be a part of AFAMP
    Regards
    Ajay M
    Edited by: Ajay Maheshwari on Oct 28, 2010 2:31 PM

  • Issue with heat maps refresh process in EID 3.1?

    Issue with Heat Maps in EID 3.1? Heats maps don't refresh unless you go back to home page and then again go back to the Endeca app.
    In Oracle Sample app if we open the Map tab we will see that Milwaukee is really hot in the heat map. now if we filter the data to just show data from 100 miles within Orlando, FL then the map will get refreshed to show that area but the colors on heat maps do not change.
    Now if we keep the refinements same and go back to home page and again go back to sample app and maps tabs then it will still show area of 100 miles within Orlando, FL which is good but now heat map would have updated and it would show us correct color.
    Now if we remove the refinement then it would show complete US map as hot which is again wrong.
    I have observed this issue in chrome browser as well as firefox.
    Is there anyway to overcome this issue?

    This issue was resolved after applying latest patch from Oracle.

Maybe you are looking for