To tab or not to tab

hi experts,,,
i'm sure the answer is obvious but i've done a search and i still can't figure it out...
i'm looking for a keyboard shortcut to cycle between buttons in a dialog window. for instance between the "don't save" - "cancel" - "save" buttons when quitting an application, or the restart-sleep-cancel-shut down buttons after hitting control-eject. my natural guess was the tab button, but no.
to start with it didn't do ANYTHING except give out an annoyed sound. then i went to system preferences>keyboard&mouse>keyboard shortcuts and at the buttom changed the tab button to move between "all controls"...
now when i press the tab button there's a "shadow" that moves between the buttons on screen, but it doesn't really highlight the button, so when i press return/enter it uses the one that is highlighted...
thanx
d
(imac g5 osx 10.4)
iMac G5   Mac OS X (10.4.4)  
iMac G5   Mac OS X (10.4.4)  

Type the letter that the command starts with.
For example, in the Save dialogue box, press D for Don't Save.
The universal command for Cancel is to press the Esc(ape) key, and for Save press Enter or Return.
Now try pressing Command-Eject. To Sleep, press S, to Restart press R, to Cancel press Esc, and to Shutdown press Enter or Return.

Similar Messages

  • Open tabs are not on tab strip. Have to click on List All Tabs button to find tabs. Tabs used to display on tab strip and stopped doing this. Suggestions?

    Been using Firefox for years, running Windows XP. This morning when I opened pages in another tab, did not see them on tab strip. Only way to find them is to click on List All Tabs Button and it shows list. Cannot get them to display on tab strip. If I open in another window, it works, like it should. If I click on plus sign on tab strip it opens another tab, but can't see the previous ones except with List All Tabs Button. Any suggestions on how to turn tab strip back on? Thanks, jayem33

    If it works in a new window then you can drags tabs from the not working window to that new window.
    You can also try to close the tabs via Ctrl+W and restore the closed tabs via Shift+Ctrl+T

  • APEX 2-level tab App. not showing tabs in IE 8

    Hi everybody!
    I've created a 2-level tab application (first it was APEX 3.2 and I upgraded to APEX 4 but it's still happening) and I can only see the parent tabs in Firefox, cause in Internet Explorer 8 they won't show, both over Windows XP or 7.
    The strange thing is that it won't display them in the default page but once I manage to navigate to another page they show as long I'm standing on that other page of the App, so it would seem a tab config. problem, though Firefox shows it right!
    Would this be a compatibility problem or bug, or am I just coming across a developing problem that hopefully Firefox is managing to understand anyway? Following a summary of my App. tab setup in case it was helpful:
    UTILIZATION:_
    Tab Set Page References Tab Name Tab Text Tab Page Parent Tab Set
    TS1 9             T_SERVICES             Services             1              TS1
    T_COUNTRIES          Countries            6              TS1
    T_ENVIRONMENTS    Environments      7              TS1
    T_OWNERS              Owners              8              TS1
    T_SERVERS              Servers               9             TS1
    T_TYPES                 Types                10             TS1
    T_PRODUCTS           Products            11             TS1
    T_REQUIREDSTATUS Required Status  12             TS1
    T_REPORTS 2 T_SUMMARYCHARTS  Summary           16             TS1
    Dependencies           Dependencies    18              TS1
    MANAGE TABS:_
    Tab Set: TS1
    Tab: Services
    Page 1. Service Maintainer - Default Page (2)
    Tab: Countries
    Page 6. Country Maintainer - Default Page (2)
    Tab: Environments
    Page 7. Environment Maintainer - Default Page (2)
    Tab: Owners
    Page 8. Owner maintainer - Default Page (2)
    Tab: Servers
    Page 9. Server Maintainer - Default Page (2)
    Tab: Types
    Page 10. Type Maintainer - Default Page (2)
    Tab: Products
    Page 11. Product Maintainer - Default Page (2)
    Tab: Required Status
    Page 12. Required Status Maintainer - Default Page (2)
    Tab Set: T_REPORTS
    Tab: Summary
    Page 16. Chart - Default Page (2)
    Tab: Dependencies
    Page 18. Dependency Tree - Default Page (2)
    As you can see every tab has a number (2), which means that all pages should display the 2 levels of tabs and there's not conflict, like in a (*) case.
    Thanks.

    Many thanks for answering quickly!, but I created the tabs using blog examples in fact, and as I stated before, under Firefox it's displayed as it should be. My problem is on Internet Explorer, versions 7 and 8 on Win XP or 7.
    Anyone having this same problem with tabs on IE?

  • Programatically disclosing tab does not cause tab contents to be displayed

    I'm using Jdev 11g, update 2.
    I have a page with a panelStretchLayout. The Start facet has a tree component. The Center facet has a panelTabbed component with 2 showDetailItems, each with different panelForms.
    Manually clicking on the tabs shows the correct contents.
    The tree has a SelectionListener mapped to a managed bean method. When a node is selected, the bean method sets one of the showDetailItems to disclosed.
    There is PRR for the showDetailItems based on the tree.
    This code does cause the right tab to become current. The problem is that the tab contents do not also display IF that tab was not previously the disclosed one.
    An example:
    Tree shows Departments & Employees, The first tab shows the selected Dept from the tree in a form, the other shows the selected Employee from the tree in a form.
    When the page is run, the Dept tab is disclosed by default because it is the first one.
    Select a Dept in the tree. The Dept tab remains disclosed and the correct Dept is displayed.
    Select an Emp in the tree. The Emp tab become disclosed but it is blank. The Emp form does not appear.
    Select a Dept in the tree to reset tabs.
    Now manually click the Employee tab. The Employee formis displayed correctly with the last Emp selcted from the tree.
    Select a Dept in the tree. Now the Dept tab becomes disclosed but it is blank.
    My first thought was that this is a PRR problem with the tab children. But I've tried setting PRR on the panelForms so they are refreshed when the showDetailItems are refreshed. That didn't help.
    I've also tried setting the rendered and visible properties for the tab child (form) programatically. No luck.
    My current code for the selectionListener is:
    public void setSelData(SelectionEvent selevt)
    RichTree tree = (RichTree)selevt.getSource();
    RowKeySet sel = tree.getSelectedRowKeys();
    Iterator seliter = sel.iterator();
    while (seliter.hasNext())
    Object rowKey = seliter.next();
    tree.setRowKey(rowKey);
    FacesCtrlHierNodeBinding node =
    (FacesCtrlHierNodeBinding)tree.getRowData();
    String viewDefName = node.getHierTypeBinding().getStructureDefName();
    if (viewDefName.contains("Dept"))
    setSelDeptNo((oracle.jbo.domain.Number)node.getAttribute("Deptno"));
    OperationBinding ob =
    (OperationBinding)bindings.get("setCurrentRowWithKeyValue1");
    ob.execute();
    } else
    setSelEmpId((oracle.jbo.domain.Number)node.getAttribute("Empno"));
    OperationBinding ob =
    (OperationBinding)bindings.get("setCurrentRowWithKeyValue");
    ob.execute();
    if (viewDefName.contains("Dept"))
    panTab.getChildren().get(0).getAttributes().put("disclosed", false);
    panTab.getChildren().get(1).getAttributes().put("disclosed", true);
    empsTab.setDisclosed(false);
    empsTab.setDisabled(true);
    deptsTab.setDisabled(false);
    deptsTab.setDisclosed(true);
    } else
    deptsTab.setDisclosed(false);
    deptsTab.setDisabled(true);
    empsTab.setDisabled(false);
    empsTab.setDisclosed(true);*/
    panTab.getChildren().get(1).getAttributes().put("disclosed", false);
    panTab.getChildren().get(0).getAttributes().put("disclosed", true);
    }

    That was it. I don't need to set up PPR for the showDetailItems either - just the panelTabbed. I'll remember to walk up and try PPR on all the parent components next time. Thanks.

  • About tab page:not all tab page can view when have many tab page

    It has 12 tab page in a tab canvas,when it is running ,
    not all tab page can view.
    the tab canvas's Tab Attachment Edge is Top.
    How can it view all tab page?
    Pleae help me!
    Thanks.
    Daniel Liang
    2007.3.20
    Message was edited by:
    DanielLiang

    The number of tabs that you can show at once is limited by the size of the canvas. If you have too many tabs, then you can set up one tab to be a 'MORE'. When the user clicks on it, it hides the current set of tabs and displays the set of tabs that were not shown. By having a MORE for each set of tabs, you can toggle between the sets of tabs. The Help documentation describes how to show and hide tabs, and how to set focus to a particular tab.

  • Since upgrading to 4.0 and now 5.0 tabs do not have tab close buttons and I must use CNTL-W to close open tabs, what's the problem?

    Since upgrading to Firefox 4.0 the close tab button, usually in the upper right corner of the tab has been missing. I have just recently upgraded automatically to 5.0 and the tab close 'X' button is still missing from all open tabs. The only way to close a tab is to click on it and use CNTL-W to close out the tab.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions 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
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Excise Invoice Tab is not display in MIGO for Cancelled document

    Hi,
    We are execuating the incoming excise cycle then in MIGO and J1IEX.It is perfectly working.But in case of cancellation the excise tab is not dispplaying in MIGO.We are using option "Only Capture and Both Capture & Post".Whatever the excise captured and Posted , it is updated in Excise Invoice tab in MIGO.
    As per my understanding the excise tab should come for cancelled doucment also.
    Regards
    Rajev

    Hi,
    You are correct it won'y come for 102 but it will come for 101.But it is not coming for 101 .It is not coming when we cancelled the document.
    but it will come for 101
    .But it is not coming for 101
    can you explain your statement  ?
    If it is not coming for 101 movement type
    check following point
    1) tax code in PO ,all excise condition should be there
    2) Maintain chapter ID material combination in J1ID
    3) Maintain Vendor and Plant excise details in J1ID
    Regards
    Kailas Ugale

  • How can i print all the tab pages not just the first page (tab)

    how can i print all the tab pages not just the first page (tab)

    You would need to do this programmatically. Here's one way:
    Attachments:
    Example_VI_BD6.png ‏3 KB

  • Can not update tab if its not the default sub-tab.

    Can not update tab if its not the default sub-tab.
    JDeveloper Version 10.1.2.1.0 (Build 1913)
    Hi. I have a problem with a “lovOpenWindowAction”
    The UIX is created with a master UIX and have several sub-tab that is included as UIX-pages.
    The lovOpenWindowAction lies in the included UIX-page
    The sub-tab I have a problem with has a table with users. Then I have a “Create New” button than I want to click on and select a new user that should be included in the table in the sub-tab.
    When I click on the button I open a LOV-window. Here I select the user that I want to add.
    In the LOV Action-class I save my new value in the database. Then in the method “onLovUpdate” I update the iterator with the new values from the database.
    But in my GUI the subtab is not updated until I click on it.
    But if I make the subtab the default subtab then it all works just fine and the GUI is updated directly.
    Here is the code for the tableAction in the subtab. This code lies in an included UIX-page. Target is the table id.
    <tableActions>
    <button text="Create New" id=" createNewRollperson" accessKey="N">
    <primaryClientAction>
    <lovOpenWindowAction destination="FiskeRollpersonerLOV.do"
    source=" createNewRollperson "
    targets="joinedRollpersfiskeer message"/>
    </primaryClientAction>
    </button>
    </tableActions>
    Here is some code from the master UIX-page
    <subTabLayout id="flikar">
    <subTabs>
    <subTabBar selectedIndex="${ui:defaulting(param.index,0)}">
    <contents>
    <link id="resorFlik" text="Resor"
    disabled="${sessionScope.fiske.id == null}"
    selected="${(param.source == 'resorFlik') or empty param.source}">
    <primaryClientAction>
    <firePartialAction event="changeTab" targets="flikar globalHeader">
    <parameters>
    <parameter key="source" value="resorFlik"/>
    </parameters>
    </firePartialAction>
    </primaryClientAction>
    </link>
    <link id="rollpersonerFlik" text="Rollpersoner"
    disabled="${sessionScope.fiske.id == null}"
    selected="${param.source == 'rollpersonerFlik'}">
    <primaryClientAction>
    <firePartialAction event="changeTab" targets="flikar globalHeader">
    <parameters>
    <parameter key="source" value="rollpersonerFlik"/>
    </parameters>
    </firePartialAction>
    </primaryClientAction>
    </link>
    </contents>
    </subTabBar>
    </subTabs>
    <contents>
    <switcher childName="${param.source}"
    defaultCase=”ResorFlik">
    <case name="resorFlik">
    <include node="${ctrl:parsePage(uix, 'includes/ResorFlik')}"/>
    </case>
    <case name="rollpersonerFlik">
    <include node="${ctrl:parsePage(uix, 'includes/FiskeRollpersonerFlik')}"/>
    </case>
    </switcher>
    </contents>
    </subTabLayout>
    What am I missing?? I can’t have this subtab as the default subtab! Please help me with a solution!

    hi,
    Change the condition type to manual entry.
    or
    for example delivery costs will be different at the time of PO and actual delivery costs then at the time of invoice we select planned delivery costs and settle them first with the actual delivery cost.
    Thanks & Regards,
    Kiran

  • Resp Person Tab is not coming in CJ20N for a particular project type

    Hi All,
    I am unaware of the standard SAP screen in CJ20N but we have a screen in CJ20n wherein we can assign a person / link a person this particular tab is not coming at all for a particular project type (Resp Person) rather a different tab (cust enhancement) is coming but our problem is we have a mass program which works on BDC and hence if the required screens are not there it fails.
    Can someone please tell me if there is come config i can check/ maintain for this resp person tab so that it starts coming for all project types.
    Regards
    Anmol Pareek

    Hey Sarang,
    Thanks a lot, it was helpful, one more thing though, In Resp Persons tab there is something called Link Employees and my problem is that i have a mass linking program (using BDC) which cannot work if i dont see that screen in my BDC (without changing BDC). The way you have told is in OPUK/ OPUJ check for proj type and see if person responsible is hidden or not. I dont think that is what i am asking because no matter what this person responsible is hidden, but for certain project types Resp Person tab itself is not coming and that is the problem.
    Regards
    anmol

  • Reporting Tab is not showing in SCSM 2012 SP1 Console

    I'm working with SCSM 2012 SP1. But after installing data ware house only "DataWareHouse" tab appares no "Reporting" tab. And it shows below MSG:
    And only the below reporting management pack are available in the Data Ware House >> Management pack area.
    I already check data warehouse server 'System Center Data Access Service' and 'SQL Server reporting Service', borth are running. But still 'Reporting' tab is not there.
    Mithun Dey Web: http://cloudmithun.wordpress.com If this may give your necessary resolution please mark it as Answre.

    At last I solve the problem. THere is 2 solution for resolve the issue.
    Force start all warehouse job.
    Un register and reregistared DataWareHouse againg.
    In my case I do the borth after reregister datawarehouse I wait 1hr after that I manualy start the warehouse jobs. And it works for me.
    Mithun Dey Web: http://cloudmithun.wordpress.com If this may give your necessary resolution please mark it as Answre.

  • Reporting tab is not shown in the console

    hi everyone
    the reporting tab is not shown in the service manager console, the topology i am using is 2 servers [one for DW and the other for management server] both servers have their SQL server installed on each one, could you please tell me how i can start to get
    this working or the steps i have to follow ?? isn't supposed to be working out of the box ? i have checked reporting services and they are running

    Probably your report server is not pointing to the DWDATAMART database, try login to:
    http://YourDWDatabase/Reports/Pages/Folder.aspx?ItemPath=%2fSystemCenter%2fServiceManager&ViewMode=List
    click on DWDATAMART Connection, under connection string, do you see your DWDATAMART DB name and server name?
    Antoine AL Ibry

  • Every time I close a window that has opened up (not a tab) all the open windows close and it's driving me nuts!

    If I have opened up a link and it comes up as a separate window and not a tab, then I go to close that window, all the other Firefox windows that are open will close too. Is there anything to prevent this? It is extremely annoying when I have to go and open all the windows/tabs again!
    == This happened ==
    Every time Firefox opened
    == since upgrading

    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Tabs are not working after upgrade to DS 1.3

    Hi All,
    I have 4 tabs Region, Plant , Plant section and Unit.
    When I select one tab it sets as a filter values to the next tab and displays data(drilldown).
    We also have a back button in the each level to go back .
    It was working perfectly in DS 1.2 and we have upgraded to DS 1.3 and now when I click on the back button it comes back to same screen.
    here is the steps.
      Step 1) select Region data will be displayed based on selected Region
      step 2) select Plant data will be displayed based on selected plant
      step) click Back button on Plant screen by disabling plant tab and enabling region tab.
    Once I click on Back to Region button it quickly goes to Region tab and then come back to Plant tab.
    not sure why this is happening.
    please advise.
    Thanks,
    Manju

    The chart select event fires again when it's redisplayed in tab 2.
    Do this in your chart select event to prevent it:
    var temp = REGIONBU_CHART1.getSelectedMember("0MAINTPLANT").internalKey;
    if(temp!=XOperatingAsset_Plant){
         Tab_3.setEnabled(true);
         Tab_1.setEnabled(false);
         Tab_2.setEnabled(false);
         Tab_4.setEnabled(false);
         Tab_5.setEnabled(false);
                XOperatingAsset_Plant=REGIONBU_CHART1.getSelectedMember("0MAINTPLANT").internalKey;
         LV4_REGITPMCOMTREND.setFilter("0CALMONTH", {"low":XMetric_Period_Low,"high":XMetric_Period_High});
         LV4_REGITPMCOMTREND.setFilter("0MAINTPLANT",REGIONBU_CHART1.getSelectedMember("0MAINTPLANT"));
         LV4_REGITPMCOMTREND.setFilter("ZMETRICID","PMR02");
         LV4_REGITPMCOMTREND.setFilter("0MAINTPLANT__ZPMFNORG", XFunctional_Org);
         LV4_REGITPMCOMTREND.setFilter("0MAINTPLANT__ZPMOPAREA", XOperating_Area);
    }else{
      XOperatingAsset_Plant = "";

  • Firefox 24.0 does not update any YouTube page for the download extensions. Video aivalable for download is the 1th opened in the tab and not the video playing.

    On YouTube, when more than one video have been played, staying on the same page, videos aivalable for download, by any Firefox Download Extension as Downloader Helper, Flash Video Downloader or 1 Click Video Download, are the format options for the first video opened in the tab, and not format options for the video actually playing.
    I have tried resetting Firefox ( Firefox menu : ? \ Troubleshooting Information \ Reset Firefox), and reinstall Videos Downloaders (without Adblock Plus that I normally use), it did not solve the problem.
    Temporary Solution :
    Refreshing the http://www.youtube.com/... page ( by hitting the round arrow at the right of the adress bar ) allows me to update the download features but it is annoying as it restarts the playback every time I decide to download a video ( so is it having to remember to refresh the page ).
    I am surprised it seems no one have experience and solved this problem yet.
    Regards to the team
    Running under
    Windows XP SP3 updated
    Adobe Flash Player 11 ActiveX and Plugin
    Adobe Shockwave Player 12.0
    Java 7 update 25
    Windows Media Format 11
    QuickTime Plugin 7.7.4
    Avast Free Antivirus

    What hardware are you on? Flash is always a finicky beast, especially on older hardware. This is not an entirely uncommon problem. Try looking at this [[Flash Plugin - Keep it up to date and troubleshoot problems|support article]] and see if that helps.

Maybe you are looking for

  • IOS 7.0.3 upgrade killed Facetime, iMessage and Push Notifications

    Facetime, iMessage and Push Notifications were working fine on my iPhone 4. Since I upgraded to iOS 7.0.3 Facetime and iMessages cannot be activated because of 'Network error' and every app that supports 'Push Notifications' suggest to 'Connect to iT

  • Creation of shortend Fiscal year for the Merger of two Companies.

    Company 'A'is getting Merged with the Company 'B' on 15th February 2010. Company 'A' is suppose to submit all the financial details to the Company 'B' on 15th February 2010, furthermore the users with the Company 'A' should not be allowed to post any

  • How to get filename from mail attachment

    Hi all, I have a XI scenario Mail->XI->RFC. I have created my own adapter module which handle all attachments from incoming mail. Everything work fine, but in my module I try to get information about filename of mail attachment. I use getContentType(

  • Bridge (& Prelude & Media Encoder) included in a Premiere-only account?

    Hi! I have a full CC account myself, but for a client of mine, I'm looking into different accounts. A production company I work for, is going to make the transition to Adobe CC. Because I have years of experience using it, they have asked me to overs

  • 2.1 & Exchange Setup

    Greetings, Everything was working fine before I upgraded. Things seem to be okay afterwards, but the unit was heating up and the batter was draining very quickly. I figured there was some run-away process so I restored my phone without the backup opt