Trying to disable animation on tab bar

''locking as a duplicate - /questions/887078#answer-261172''
I used to use Firefox 3.6 and have just upgraded to version 7.0.1 (Pale Moon build, that shouldn't actually affect anything).
There's a really annoying issue that I'm noticing and I can't figure out how to disable it. I can only describe it as an animated scrolling tab-bar. I have about 35 tabs open at any given time, so obviously the screen is over-filled with them and they won't all show at once. That's not a problem, that's why I can scroll through them myself!
Well, say I'm on the far left of my tabs. If I open a new tab, or even click on a link that opens in a new tab, it will open in the far right (as I want it to), but it shows the entire tab bar scrolling over to the right, which takes a good 2-3 seconds with the huge number of tabs I keep open. Then when I close that tab, it scrolls all the way back.
I do remember Firefox 3 doing the same thing, I believe it was called smooth scrolling? At the time I was able to figure it out, there was something in about:config I had to modify. I can't find this option with FF7 anymore. I tried disabling the tab animation, but from what I've read, that only prevents it from "growing" the tab from scratch, which doesn't really happen if the screen's already filled anyway.
Even if I'm on the far right tab and open a new one, the new tab "appears" as an animation, from the far right of the screen and shifts into place. That's cool and all for those who like fancy graphics, but I'm using a web browser here, not a movie player. It's just obnoxious when I have to watch the animations move around when I have large numbers of tabs open.
Can somebody help me disable this setting? If I install the addon "Tab Mix Plus", the issue goes away... however, that program does all sorts of other weird stuff like make my tabs all in italics and in red color. I'd rather not use an addon to fix what seems like a simple solution if I don't have to.

Please see [/questions/887078#answer-261172]

Similar Messages

  • Cannot disable "always show tab bar" in FF 28.0?

    FF 19 had an option to deselect "always show tab bar" so that the tab bar is shown only when 2 or more tabs are open.
    FF 28 seems to always show the tab bar. I don't see any way to disable that (unless 2 or more tabs are open).
    How can I coerce FF 28 to not show tab bar unless 2 or more tabs are open?

    waka wrote: "In Firefox 23 and up, as part of an effort to simplify the Firefox options set and facilitate future improvements to Firefox, the option to hide the tab bar was removed. Fortunately, this can easily be resolved if you desire the keep tabs hidden. You can install "Hide tab bar with one tab", an extension hosted on Mozilla's add-ons site".
    That definitely "helps" insofar as you addressed my question dispositively.
    However, I do not agree with the decision. How does removing one option substantially "simplify" things? How does forcing me to install an add-on "simplify" things for me, the customer?
    FYI, I few add-ons as potential risks and a definite maintenance headache. A GUI add-on is probably more susceptible to compatibility issues.
    If you want to "simplify" the GUI by removing one option from a menu (that isn't very "busy" in the first place; klunk!), at least provide an about:config option to control this behavior.
    As for "facilitating future improvements", that is not my concern, a customer. Everything is SMOP.
    I was in product development and maintenance for 35 years, and we always put the customer first. One of our cardinal rules was: do not remove a feature unless it is a security risk; and even then, we might leave an option to re-enable the feature "at your own risk".
    Oh well, I'm probably p.i.s.s.ing into the wind. But thanks again for an accurate response.

  • New tabs dont pop up when I click to add a new tab, either by the tab bar or through the file menu.

    when I try to open up a new tab on my browser it doesn't do anything. I've tried the add a tab button on the tab bar, I've tried right clicking on the tab bar to add a tab, and I've gone through the file menu and nothing happens, like the command was never made....all other features work just fine..is there something wrong in my settings that I need to change??

    Try the Firefox SafeMode. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    # You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    # Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • I want to get rid of the tab bar in firefox 3.6

    I have tried to get rid of Tab bar in FireFox 3.6 but unchecking everything in the Tab section of Options will not stop them.
    Anyone know how to permanently get rid of Tabs?

    Download Tab Killer from here: <br />
    http://piro.sakura.ne.jp/xul/_tabkiller.html.en#download<br />
    Click on - '''Download Latest Version (via HTTPS, GitHub) /''' - then '''"allow"''' at the top of the window on the yellow bar that will appear.
    Ver.2.0.2009110201 is what should get installed.

  • Trouble adding new view to tab bar

    Hello All,
    I am trying to build a first Tab Bar Application through Interface Builder. I created a stock Tab Bar application using XCode but I am having trouble replacing the views with different ones (mine).
    For example, I have created a new view called PostView from XCode with just a simple label. I then went to Interface Builder, clicked on the second tab, and go to Tools->Attribute Inspector and change the NIB name from SecondView to my new PostView.
    However, when I run this, it crashes when I click on the the second tab with the following error in GDB:
    2008-06-30 23:22:26.623 TG2[5855:20b] * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[UIViewController loadView] loaded the "PostView" nib but no view was set.'
    I can't for the life of me figure out where I should be loading or setting this view as SecondView doesn't seem to be programmatically loaded anywhere and I can't seem to find any other reference to it in IB.
    I'm sure this is noob easy -- any ideas?
    Many thanks in advance,
    Tim

    First of all, click on File's Owner in the PostView.xib window. In the inspector window (it's on the right by default--if you don't see it, press Cmd-Shift-I), click the "i" button to display the Identity pane. There should be a drop down box labeled "Class". Is the class set to your controller class? If not, adjust it so it is.
    Next, click the blue circle with the white arrow. This will bring up the Connections pane. Look at the line that says "view". Is it connected to anything? (If it is, the name of the object it's connected to will appear next to it, with an "x" to undo the connection.)
    If not, hold down the circle to the far right of "view", then drag to the "View" icon in the PostView.xib window. (I'm assuming you haven't renamed the view.) A box should appear around the icon if it's the right type for that outlet. Now let go, and Interface Builder will establish the connection.
    Save, then go back to Xcode and build and run your project. Did that fix the problem?

  • How can I disable animated tab effects in Firefox 19.0?

    I updated Firefox a few days ago from 18.0.2 to 19.0 and now see that the tabs slide around when I drag to rearrange them or try to ppostion a tab over a bookmarks toolbar folder for bookmarking. The tab being dragged also gets transparent although I don't recall that happening previously unless it was moved over the browser window. Although I see reference to a similar animation problem for 17.0 I had no issues until the recent update.
    I have Tab Mix Plus installed but see no settings that have to do with tab animation. Browser.Tab.Animate in about:config is already to set to "false".
    This is annoying, useless and when I am trying to drag a tab across the tabs bar onto the bookmarks toolbar the tab will hang up in a "phantom" position at the point where it crosses the tab bar. How do I undo this or turn it off, short of adding yet another extension to deal with it (Tab Utilities)?

    Good, so I'm not crazy.
    I'm still having the same problem and it slows down my browsing experience considerably since I do a lot of drag-and-drop bookmarking. The browser hangs frequently after dragging a tab to a toolbar folder, then you have to wait for the tab to "fly back" to its original position.
    The same with rearranging tabs -- it has to be positioned _just so_ where it is being moved to or the move doesn't take and I have to do it again
    As you confirmed, this has nothing to do with browser.tabs.animate as mine is currently set to "false" and had been all along, even before this maddening behavior (including tab transparency when tabs overlap) became visible.
    I suspect there is a css edit or Greasemonkey script solution but have not have time to look anything up. I wasted enough time Googling this only to keep turning up the browser.tabs.animate "solution" over and over. It would be nice if there was at least some acknowledgement from other users or the usual problem solvers that this was not normal behavior before.

  • How to disable "Double Click on Tab Bar to Open New Tab" feature?

    Since I upgraded to FF3 I've noticed this very annoying feature with tabs. If you double-click the 2-3 pixel wide bar just beneath tabs, it opens a new empty tab and sets the focus to that new tab (Which means I then have to go close that tab before going back to the tab I originally wanted). I happen to do this a lot by mistake (I go to click on a tab, but haven't clicked high enough, and of course, it doesn't change to the tab, so I unconsciously click again, which activates a new tab). I never open new empty tabs (alt-enter + middle click), and I have tabs to load in the background (i.e. to not *steal* the focus), so everything about this feature serves as an annoyance to me. Is there anyway to disable this "feature" (Either by disabling it, or making the width of the bar 0. I don't care either way)?
    == This happened ==
    Every time Firefox opened
    == I upgraded to FF3

    You can hold down the mouse button on a scroll button a bit longer to initiate scrolling multiple tabs.<br />
    Otherwise you need to wait longer between the clicks on the scroll button.<br />
    If you click twice on a tab bar scroll button too fast then you perform a 'page up' or 'page down' and the tabs scroll a tab bar width like you noticed.
    I'm not sure what you mean with new feature because this is the behavior in Firefox 3.6.x as well.

  • I opened my computer and the whole top only shows web search, I can not find my bookmarks and I tried reloading firefox and still nothing but tab bar

    Question
    I opened my computer and the whole top only shows web search, I can not find my bookmarks and I tried reloading firefox and still nothing but tab bar. Tried f10, alt, nothing! Can I reload an old firefox? There is no firefox logo at top. When I rt click at top I see hide toolbar and leave full screen. To the right there is only a home sign. How can I get my BOOKMARKS ??????? I so need them and hate what ever this is that now shows up on firefox.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • How do i disable orientations for a specific view in my tab bar project without disabling for the other views?

    How do i disable orientations for a specific view in my tab bar project without disabling for the other views?
    Any suggestions?

    Note that you can also hide the tab bar completely with code in the userChrome.css file.
    Add code to the <b>userChrome.css</b> file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #TabsToolbar { display: none !important; }
    </nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the <b>chrome</b> folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration

  • How to disable a tab in a spark tab bar?

    I have a spark tab bar linked to a ViewStack.  In olden days, IIRC,  setting the enabled property of a viewstack member would set the corresponding tab inactive.  However, if I try that now, the tab control is still active, but the contents of the viewstack for that tab is indeed disabled.
    To reiterate:  I want certain tabs in a spark tab bar to be disabled (i.e. unable to be chosen and displaying their disabled skin state).
    <s:TabBar id="tabBar" dataProvider="{tabStack}" x="70" y="91" skinClass="CalculatorTabsSkin"/>
    <mx:ViewStack id="tabStack" width="100%" height="100%" creationPolicy="all" change="tabStack_changeHandler(event)">
         <s:NavigatorContent id="nc1" label="PIERS">
         <comp:Tab1 id="tab1"  width="100%" height="100%" continue="tab1_continueHandler(event)" />
         </s:NavigatorContent>
         <s:NavigatorContent id="nc2" label="FOOTINGS">
         <comp:Tab2 id="tab2" width="100%" height="100%" continue="tab2_continueHandler(event)" numberOfPiers="{totalNumberPiers}" />
         </s:NavigatorContent>
         <s:NavigatorContent id="nc3" label="BAGS OR TRUCK?">
         <comp:Tab3 id="tab3"  width="100%" height="100%" totalCubicYards="{totalCubicYards}" totalNumberBags="{totalNumberBags}" />
         </s:NavigatorContent>
    </mx:ViewStack>

    Addendum:
    Literally two minutes after I got back to actually working, I found a more "elegant" solution.  I posted it elsewhere, but I guess I forgot to share it here. =/ So I thought I'd update this real quick. =)
    If you apply a custom skinClass to your tab bar you can bind the tab.enabled property just like you'd expect/want.
    <!-- some component that has the TabBar in it... -->
        <fx:Script>
             <![CDATA[
        [Bindable] private var tab2IsReady:Boolean = false;
        private function checkCriteria():void{
             tab2IReady = someOtherThing.isFinished;//Boolean
        ]]>
        </fx:Script>
    <s:TabBar id="theTabBar"
       dataProvider="{viewStack}"
       skinClass="skins.CustomTabBarSkin"/>
    <mx:ViewStack id="viewStack">
          <s:NavigatorContent label="Tab index 0">
               <!-- Your first tab's content -->
          </s:NavigatorContent>
          <s:NavigatorContent label="Tab index 1" enabled="{tab2IsReady}">
               <!-- Your second tab's content -->
          </s:NavigatorContent>
    </mx:ViewStack>
    <!-- rest of the component that has the the TabBar in it... -->
    When you type "skinClass" use the auto complete to generate the custom skin (named whatever you want).
    The generated code will appear like below (I left out the Script tag).
    <?xml version="1.0" encoding="utf-8"?>
    <!-- skins/CustomTabBarSkin.mxml
    Adobe's copyright & doc comments
    -->
    <s:Skin
        xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:fb="http://ns.adobe.com/flashbuilder/2009"    
        alpha.disabled="0.5">
        <fx:Metadata>
            <![CDATA[
             * @copy spark.skins.spark.ApplicationSkin#hostComponent
            [HostComponent("spark.components.TabBar")]
            ]]>
        </fx:Metadata>
          <!-- optional Script tag here -->
        <s:states>
            <s:State name="normal" />
            <s:State name="disabled" />
        </s:states>
        <!--- @copy spark.components.SkinnableDataContainer#dataGroup -->
        <s:DataGroup id="dataGroup" width="100%" height="100%">
            <s:layout>
                <s:ButtonBarHorizontalLayout gap="-1"/>
            </s:layout>
            <s:itemRenderer>
                <fx:Component>
                    <s:ButtonBarButton skinClass="spark.skins.spark.TabBarButtonSkin" />
                </fx:Component>
            </s:itemRenderer>
        </s:DataGroup>
    </s:Skin>
    <!-- End skins/CustomTabBarSkin.mxml -->
    Then add the enabled property to the ButtonBarButton & bind it to data.enabled in your skin class.
    Change:
               <fx:Component>
               <s:ButtonBarButton skinClass="spark.skins.spark.TabBarButtonSkin" />
           </fx:Component>
    To:
               <fx:Component>
               <s:ButtonBarButton skinClass="spark.skins.spark.TabBarButtonSkin"
                    enabled="{data.enabled}" />
         </fx:Component>
    Then any <s:NavigatorContent/> used with a TabBar using that skin will respect the enabled property and do exactly what you expect & want (be enabled when true, & disabled when false).
    Hope this helps some people.  WIsh I'd remembered to re-post it here when I first figured it out.
    Happy Coding! =D
    Todd
    Message was edited by: Chaos7703 - Just made one statement a bit more explicit.

  • Disable hide/show of tab bar

    Most of the sample applications use a tab bar at the bottom to switch between features. This tab bar usually has a little blue button to hide and show the tab bar. Examples are the DeviceDemo and DvtGalery. For me, this feel not very iOS like and I don't want to show this button to hide/show the tab bar. For example: https://docs.google.com/open?id=0B0EvDYuyTjZzdGh3YS1YaWZrdEE
    Other sample apps, like LifeCycle do not show this button but I can't see what the difference is at design time to disable this feature. For example: https://docs.google.com/open?id=0B0EvDYuyTjZzdWNXLXJ6SVRzaDg
    Does anyone know how I can disable the feature of showing/hiding the tab bar?

    Never mind. Already found it. It's in the adfmf-application.xml which can be found in the Application Resources > Descriptors > ADF META-INF. That has a checkbox to show the navigation bar toggle button, or in XML:
    <adfmf:navigation>
        <adfmf:navigationBar displayHideShowNavigationBarControl="false"/>
    </adfmf:navigation>

  • HT4623 I am trying to update my iPad. When I go to ,settings then general I do not have the tab bar to update software

    Hi I'm not unable to update my iPad software as when I go to settings then general I don't have the tab bar that offers me the opportunity to update software. Any ideas why as I am unable to download some apps etc as it says I need a different iOS-

    Settings>General>Software Update is only available in IOS 5 and above.
    If you are using IOS 4, you need to connect to iTune (computer) to update software.
    http://support.apple.com/kb/HT4972

  • How can I make the Smooth Scrolling option in the Advanced menu apply ONLY to the tab bar?

    So, I'm one of those people who usually have 60+ tabs open at any given time. I'm also on a Lenovo laptop with a trackpoint (that may be relevant later).
    Right now, I have smooth scrolling disabled.
    In previous versions of Firefox, if I sat my cursor on the tab bar and scrolled either up or down, it would scroll across my tab bar at a constant, quick rate, usually taking about two or three seconds to reach the end. This wasn't an animated scroll (I've disabled that animated scroll via about:config in the current Firefox version).
    However, now, it's doing something different. There's acceleration to the scroll. If I just tap the scroll in either direction, it scrolls only a few tabs. However, if I hold the scroll for a second, it instantaneously takes me to the far end of the tab bar, completely skipping at least thirty tabs in between.
    I have tab scroll buttons added by Tab Mix Plus (smooth scrolling is also not enabled in that addon), and the same accelerating behavior occurs there. One or two taps of the button moves the bar a few tabs to the left or right, but several taps in quick succession takes me all the way to the far end of the bar.
    I can restore the old scrolling behavior for the tab bar by turning on smooth scrolling in the Options > Advanced menu, but that turns on smooth scrolling for web pages at the same time. I don't like the web page smooth scrolling, and would rather not have it on.
    Or if there's any other way to make it so that scrolling the tab bar moves the tab bar a fixed amount no matter what, that would be great.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Tab Bar Application save order

    Hi,
    I am creating a Tab Bar application with 8 Tabs. As usual, at the fith tab, the More appears. When the user goes there, he/she can modify the order of tab bars, as he/she wants.
    My problem is, that I want to save the order of these tabs, and display it in the same order, when the user opens the app again.
    I am using storyboard, so the views are created, and hooked up over there.
    The AppDelegate looks like this:
    //  AppDelegate.h
    #import <UIKit/UIKit.h>
    @interface AppDelegate : UIResponder <UIApplicationDelegate, UITabBarControllerDelegate>
    @property (strong, nonatomic) UIWindow *window;
    @end
    //  AppDelegate.m
    #import "AppDelegate.h"
    @interface AppDelegate()
    @property (nonatomic, retain) UITabBarController *mainTabBarController;
    @end
    @implementation AppDelegate
    @synthesize window = _window;
    @synthesize mainTabBarController;
    - (void)customizeInterface
        UIImage* tabBarBackground = [UIImage imageNamed:@"tabbar.png"];
        [[UITabBar appearance] setBackgroundImage:tabBarBackground];
    #pragma mark UINavigationControllerDelegate
    - (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
        [[NSUserDefaults standardUserDefaults] setInteger:mainTabBarController.selectedIndex forKey:@"mainTabBarControllerSelectedIndex"];
    - (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated {
        [[NSUserDefaults standardUserDefaults] setInteger:mainTabBarController.selectedIndex forKey:@"mainTabBarControllerSelectedIndex"];
    #pragma mark UITabBarControllerDelegate
    - (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
        [[NSUserDefaults standardUserDefaults] setInteger:tabBarController.selectedIndex forKey:@"mainTabBarControllerSelectedIndex"];
    #pragma mark UITabBarControllerDelegate
    - (void)tabBarController:(UITabBarController *)tabBarController didEndCustomizingViewControllers:(NSArray *)viewControllers changed:(BOOL)changed {
        int count = mainTabBarController.viewControllers.count;
        NSMutableArray *savedTabsOrderArray = [[NSMutableArray alloc] initWithCapacity:count];
        for (int i = 0; i < count; i ++) {
            [savedTabsOrderArray addObject:[NSNumber numberWithInt:[[[mainTabBarController.viewControllers objectAtIndex:i] tabBarItem] tag]]];
        [[NSUserDefaults standardUserDefaults] setObject:[NSArray arrayWithArray:savedTabsOrderArray] forKey:@"tabBarTabsOrder"];
        [[NSUserDefaults standardUserDefaults] synchronize];
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
        [self customizeInterface];
        NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
        mainTabBarController.delegate = self;
        int count = mainTabBarController.viewControllers.count;
        NSArray *savedTabsOrderArray = [defaults arrayForKey:@"tabBarTabsOrder"];
        if (savedTabsOrderArray.count == count) {
            BOOL needsReordering = NO;
            NSMutableDictionary *tabsOrderDictionary = [[NSMutableDictionary alloc] initWithCapacity:count];
            for (int i = 0; i < count; i ++) {
                NSNumber *tag = [[NSNumber alloc] initWithInt:[[[mainTabBarController.viewControllers objectAtIndex:i] tabBarItem] tag]];
                [tabsOrderDictionary setObject:[NSNumber numberWithInt:i] forKey:[tag stringValue]];
                if (!needsReordering && ![(NSNumber *)[savedTabsOrderArray objectAtIndex:i] isEqualToNumber:tag]) {
                    needsReordering = YES;
            if (needsReordering) {
                NSMutableArray *tabsViewControllers = [[NSMutableArray alloc] initWithCapacity:count];
                for (int i = 0; i < count; i ++) {
                    [tabsViewControllers addObject:[mainTabBarController.viewControllers objectAtIndex:
                                                    [(NSNumber *)[tabsOrderDictionary objectForKey:
                                                                  [(NSNumber *)[savedTabsOrderArray objectAtIndex:i] stringValue]] intValue]]];
                mainTabBarController.viewControllers = [NSArray arrayWithArray:tabsViewControllers];
        // Override point for customization after application launch.
        return YES;
    - (void)applicationWillTerminate:(UIApplication *)application {
        [[NSUserDefaults standardUserDefaults] synchronize];
    - (void)applicationWillResignActive:(UIApplication *)application
         Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
         Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
    - (void)applicationDidEnterBackground:(UIApplication *)application
         Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
         If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
    - (void)applicationWillEnterForeground:(UIApplication *)application
         Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
    - (void)applicationDidBecomeActive:(UIApplication *)application
         Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
    - (void)dealloc {
    @end
    This is where I am currently, and it is not working.
    I checked the .plist file, and there is no entry called tabBarTabsOrder, so it is not evan saving it.
    I'm really confused at this point, got no idea what to do.
    Does anyone know, ehat's the problem? What am I missing?
    Thank you very much in advance!
    Daniel

    This works in a project created from the Tabbed Application template. I set the tag on each TabBarItem in the storyboard.
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
        UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
        tabBarController.delegate = self;  // couldn't figure out how to do this in the storyboard
        [self orderTabBar:tabBarController];
        return YES;
    - (void)orderTabBar:(UITabBarController *)tabBarController {
        NSArray *tabsOrderArray = [NSUserDefaults.standardUserDefaults arrayForKey:@"tabBarTabsOrder"];
        if (tabsOrderArray) {
            NSMutableArray *orderedViewControllers = [[NSMutableArray alloc] initWithCapacity:tabBarController.viewControllers.count];
            for (NSNumber *tabOrder in tabsOrderArray) {
                [orderedViewControllers addObject:[self viewControllerForTabBar:tabBarController TabBarItemTag:tabOrder.integerValue]];
            tabBarController.viewControllers = orderedViewControllers;
    - (UIViewController *)viewControllerForTabBar:(UITabBarController *)tabBarController TabBarItemTag:(NSInteger)tag {
        for (UIViewController *viewController in tabBarController.viewControllers)
            if (viewController.tabBarItem.tag == tag)
                return viewController;
        return nil;
    - (void)tabBarController:(UITabBarController *)tabBarController didEndCustomizingViewControllers:(NSArray *)viewControllers changed:(BOOL)changed {
        NSMutableArray *tabsOrderArray = [[NSMutableArray alloc] initWithCapacity:tabBarController.viewControllers.count];
        for (UIViewController *viewController in viewControllers) {
            [tabsOrderArray addObject:[NSNumber numberWithInt:viewController.tabBarItem.tag]];
        [NSUserDefaults.standardUserDefaults setObject:[NSArray arrayWithArray:tabsOrderArray] forKey:@"tabBarTabsOrder"];
        [NSUserDefaults.standardUserDefaults synchronize];

  • Odd icon or symbol is displayed in the tab bar.

    In FF 4, I have a weird little symbol (like a blue 'Q' with a long straight tail) that shows up in the tab bar. If I open enough tabs, it is right at the break between the third and fourth tab.It is definitely coming from FF, as it follows the window if I drag it around. Closing and relaunching FF will sometimes removes it, but it comes back. I can't click it or select it and I can't tie its appearance to any particular site or other app open at the same time.

    Hi AJ,
    Thanks for the link.
    None of the solutions mentioned in it could solve the issue.
    The issue is indeed in IE7 and IE8.
    Problem : I cannt tell my user not to USE IEs.
    My Requirement.
    I want to redirect to the same page on click of button B.(when A is disabled and then B remains enabled)
    A) I tried using ResetButton also but this issue still remains.
    B) I got it done using a Link type item but user wants it as a Button.
    More over the link doesnot always gives me the desired result or (rather soemtimes gives me stale data as well)
    Thanks,
    Sombit

Maybe you are looking for

  • Podcasts only in reverse order?

    Why would I want to listen to the newest ones before the older ones? And why after I deleted the podcast app (which I put on myiPad not realizing it would also put itself on my phone) will the podcasts still not sync with my smart playlist that was w

  • Edit process chain in 3.5

    Hi Experts, I created one process chain ( copy with another chain) now i need to add one info package, so where can i find out edit mode and how to add that info package? Thanks

  • /BI0/0200000157 in R3P10DATA type *FILE not found

    Hi all, while exporting BW 3.5 database, I got this error : (EXP) ERROR: DbSlPrepare/BegRead failed   rc = 103, table "/BI0/0200000157"   (SQL error 204)   error message returned by DbSl: /BI0/0200000157 in R3P10DATA type *FILE not found. MSGID= Job=

  • RFC_ERROR_COMMUNICATION ERROR Group PUBLIC not found

    I using the SAP Discovery 2004s system.  When I logon to Portal using J2EE_ADMIN, then enter any tab for HR like HR admin or ESS I get the following error: com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to message server host fa

  • NIWeek 2010 Discussion Forum

    This forum has been thrashed with posts clearly having nothing to do with NIWeek. For the past year and a half, nearly all the threads have been "the same two posts":  "DEAR SIRS, FORGIVE MY LANGUAGE, I AM NEW TO LBVEW, I HAVE HARDWARES ANDLVBEW, WHA