Search bar glitch

Hello, the search bar in my itunes is not working, i cant type anything in it.
i have the latest version of itunes, i have removed and reinstalled it a couple of times too.
PC Windows 7
Any help would be appreciated.
Thanks,
Jim

Fixed it. Make sure that you do not leave iTunes app while still on search page. Go to something else and then exit. When you reopen the app, the search bar will be back.

Similar Messages

  • Autofill in Safari search bar for iPod Touch

    I have read lots of threads, but none seem to answer this question...
    How do I delete previous search items in the Google/Yahoo search bar in Safari on my iPod Touch??? Autofill displays these previously entered searches with a drop down menu. There are inappropriate searches from previous users that I can not remove by deleting history, deleting cookies, or clearing the cache. Anyone able to help?!?
    Thanks!

    Today 11/2/11 the YouTube function on my iPod & iPad1 are working correctly again, in fact, seems to be loading videos faster on my 4G Wi-Fi connection.   APPLE must have corrected the glitch over Wi-Fi since I authorized iCloud access.   Thank you APPLE for correcting this bug which was certainly 'bugging' me...  KUDOS~!

  • Google Chrome Search-bar Lag?

    I have the new 2015 XPS 13 - just got it 2 days ago, but I noticed while I was using google chrome that when I was typing things into the search bar there was a slight lag and for a split second it'll show very zoomed in, low resolution search results before it jumps back to what it's supposed to look like. I attempted to take a screenshot.. this is a minor one that happened. The search result font gets larger then shrinks back - sometimes it'll be 3X larger than this:
    The glitch:
    The original:
    I mean it's not the end of the world but I expect for this not to happen on a brand new $1500 laptop..

    Hi jacquelinehan,
    Welcome to the Dell Community forum, hope you're having a nice day.
    Could you please confirm if you are running the most up to date version of Chrome?
    Are you noticing similar slow issues when you search using Google in other web browsers such as Firefox or Internet Explorer?
    Could you try running Chrome in incognito mode and let me know if you're still seeing this problem?
    Could you please confirm that you don't have any extensions installed?
    I suggest you clear your cache and other browser data.
    Hope you have a great day and please keep me posted on this issue!

  • I cannot seem to add the search bar which should be located next to the address bar. it was removed when I updated one of the last times.

    I have been trying to figure out why this search bar where you type in keywords for a google search had been removed during one of the beta updates, but this is quite annoying to not have.

    Hello,
    Sometimes toolbars are missing because they are hidden, you just need to bring them back up. Visit this article to learn how to bring them back: [[Customize Firefox controls, buttons and toolbars]]. You can learn tips and tricks at the same time.
    Did this fix your problems? Report back to us!
    Thank you.
    Sometimes the time and date is wrong on your device causing that error message to appear.
    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • Search bar bug?

    This is just a minor annoyance, but after updating to version 35 (now 35.0.1), the search bar's green go/search button always opens the drop-down search options. It still does a functional search, but the only way to avoid opening the options is to click the suggestions. Is there a point to this or is it an unnoticed glitch? This can get quite frustrating when "redoing a search" after browsing something else...

    hi MJV1989, thanks for bringing this up. i can reproduce the issue with firefox 35, however it's no longer there in firefox 36 beta. i'm not sure if the glitch has been addressed specifically or if it is gone as a by-product of some other change though...
    firefox 36 will be released in two weeks time, but you could also try it with firefox beta right now: https://www.mozilla.org/firefox/beta/

  • How do I search for a specific artist in the itunes store? I can't find a search bar.

    I am trying to find a specific artist who's music I want to purchase but I can not locate a manual search bar to input the artist name. I do not want to nor do I have the time to look through all featured artists to locate the specific artist to purchase. At this point I'm about to go to a brick and mortar store and just buy the CD.
    This is very irritating.
    Chuck D.

    If you are missing the Search field you may be missing the entire top section, together with the progress bar when playing and the red, yellow and green buttons. This can happen if iTunes overlaps the top of the screen (which of course it shouldn't do).
    If this is the case, click and drag on the very bottom right-hand corner of the window (when in Library/Music or the iTunes Store) and drag upwards to reduce the height of the window. Then click on the bottom bar and drag downwards.

  • How can I implentate a search bar in TableViewController iOS

    How can I implentate a search bar in my TableViewController? Code:
    //  ViewController.m
    //  Movie List
    //  Created by Damian on 20/02/15.
    //  Copyright (c) 2015 Tika Software. All rights reserved.
    #import "ViewController.h"
    @interface ViewController ()
    These outlets to the buttons use a `strong` reference instead of `weak` because we want
    to keep the buttons around even if they're not inside a view.
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *editButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *cancelButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *deleteButton;
    @property (nonatomic, strong) IBOutlet UIBarButtonItem *addButton;
    // A simple array of strings for the data model.
    @property (nonatomic, strong) NSMutableArray *dataArray;
    @end
    #pragma mark -
    @implementation ViewController
    - (void)viewDidLoad
        [super viewDidLoad];
         This option is also selected in the storyboard. Usually it is better to configure a table view in a xib/storyboard, but we're redundantly configuring this in code to demonstrate how to do that.
        self.tableView.allowsMultipleSelectionDuringEditing = YES;
        // populate the data array with some example objects
        self.dataArray = [NSMutableArray new];
        NSString *itemFormatString = NSLocalizedString(@"Movie %d", @"Format string for item");
        for (unsigned int itemNumber = 1; itemNumber <= 0; itemNumber++)
            NSString *itemName = [NSString stringWithFormat:itemFormatString, itemNumber];
            [self.dataArray addObject:itemName];
        // make our view consistent
        [self updateButtonsToMatchTableState];
    #pragma mark - UITableViewDelegate
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
        return self.dataArray.count;
    - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
        // Update the delete button's title based on how many items are selected.
        [self updateDeleteButtonTitle];
    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
        // Update the delete button's title based on how many items are selected.
        [self updateButtonsToMatchTableState];
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
        // Configure a cell to show the corresponding string from the array.
        static NSString *kCellID = @"cellID";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellID];
        cell.textLabel.text = [self.dataArray objectAtIndex:indexPath.row];
        return cell;
    #pragma mark - Action methods
    - (IBAction)editAction:(id)sender
        [self.tableView setEditing:YES animated:YES];
        [self updateButtonsToMatchTableState];
    - (IBAction)cancelAction:(id)sender
        [self.tableView setEditing:NO animated:YES];
        [self updateButtonsToMatchTableState];
    - (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
        // The user tapped one of the OK/Cancel buttons.
        if (buttonIndex == 0)
            // Delete what the user selected.
            NSArray *selectedRows = [self.tableView indexPathsForSelectedRows];
            BOOL deleteSpecificRows = selectedRows.count > 0;
            if (deleteSpecificRows)
                // Build an NSIndexSet of all the objects to delete, so they can all be removed at once.
                NSMutableIndexSet *indicesOfItemsToDelete = [NSMutableIndexSet new];
                for (NSIndexPath *selectionIndex in selectedRows)
                    [indicesOfItemsToDelete addIndex:selectionIndex.row];
                // Delete the objects from our data model.
                [self.dataArray removeObjectsAtIndexes:indicesOfItemsToDelete];
                // Tell the tableView that we deleted the objects
                [self.tableView deleteRowsAtIndexPaths:selectedRows withRowAnimation:UITableViewRowAnimationAutomatic];
            else
                // Delete everything, delete the objects from our data model.
                [self.dataArray removeAllObjects];
                // Tell the tableView that we deleted the objects.
                // Because we are deleting all the rows, just reload the current table section
                [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationAutomatic];
            // Exit editing mode after the deletion.
            [self.tableView setEditing:NO animated:YES];
            [self updateButtonsToMatchTableState];
    - (IBAction)deleteAction:(id)sender
        // Open a dialog with just an OK button.
        NSString *actionTitle;
        if (([[self.tableView indexPathsForSelectedRows] count] == 1)) {
            actionTitle = NSLocalizedString(@"Are you sure you want to remove this movie?", @"");
        else
            actionTitle = NSLocalizedString(@"Are you sure you want to remove these movies?", @"");
        NSString *cancelTitle = NSLocalizedString(@"Cancel", @"Cancel title for item removal action");
        NSString *okTitle = NSLocalizedString(@"OK", @"OK title for item removal action");
        UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:actionTitle
                                                                 delegate:self
                                                        cancelButtonTitle:cancelTitle
                                                   destructiveButtonTitle:okTitle
                                                        otherButtonTitles:nil];
        actionSheet.actionSheetStyle = UIActionSheetStyleDefault;
        // Show from our table view (pops up in the middle of the table).
        [actionSheet showInView:self.view];
    - (IBAction)addAction:(id)sender
        [self.dataArray addObject:@"New Movie"];
        // Tell the tableView about the item that was added.
        NSIndexPath *indexPathOfNewItem = [NSIndexPath indexPathForRowself.dataArray.count - 1) inSection:0];
        [self.tableView insertRowsAtIndexPaths:@[indexPathOfNewItem]
                              withRowAnimation:UITableViewRowAnimationAutomatic];
        // Tell the tableView we have finished adding or removing items.
        [self.tableView endUpdates];
        // Scroll the tableView so the new item is visible
        [self.tableView scrollToRowAtIndexPath:indexPathOfNewItem
                              atScrollPosition:UITableViewScrollPositionBottom
                                      animated:YES];
        // Update the buttons if we need to.
        [self updateButtonsToMatchTableState];
    #pragma mark - Updating button state
    - (void)updateButtonsToMatchTableState
        if (self.tableView.editing)
            // Show the option to cancel the edit.
            self.navigationItem.rightBarButtonItem = self.cancelButton;
            [self updateDeleteButtonTitle];
            // Show the delete button.
            self.navigationItem.leftBarButtonItem = self.deleteButton;
        else
            // Not in editing mode.
            self.navigationItem.leftBarButtonItem = self.addButton;
            // Show the edit button, but disable the edit button if there's nothing to edit.
            if (self.dataArray.count > 0)
                self.editButton.enabled = YES;
            else
                self.editButton.enabled = NO;
            self.navigationItem.rightBarButtonItem = self.editButton;
    - (void)updateDeleteButtonTitle
        // Update the delete button's title, based on how many items are selected
        NSArray *selectedRows = [self.tableView indexPathsForSelectedRows];
        BOOL allItemsAreSelected = selectedRows.count == self.dataArray.count;
        BOOL noItemsAreSelected = selectedRows.count == 0;
        if (allItemsAreSelected || noItemsAreSelected)
            self.deleteButton.title = NSLocalizedString(@"Delete All", @"");
        else
            NSString *titleFormatString =
            NSLocalizedString(@"Delete (%d)", @"Title for delete button with placeholder for number");
            self.deleteButton.title = [NSString stringWithFormat:titleFormatString, selectedRows.count];
    @end

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: Command+Shift+F).
    *https://support.mozilla.org/kb/how-to-use-full-screen
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible.
    *Firefox menu button > Options
    *View > Toolbars (press F10 to display the menu bar)
    *Right-click empty toolbar area
    Use Toolbar Layout (Customize) to open the Customize window and set which toolbar items to display.
    *check that "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    *if "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette into the Customize window to the Bookmarks Toolbar
    *if missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *if you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar setup
    *https://support.mozilla.org/kb/How+to+customize+the+toolbar
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • Search bar in save as dialog box

    I just updated to windows 7 and realized that when I go to save a document I don't have the "search bar" avalable? Is there a way I can get that in the save as UI? Or do I have to manually find my folders on my network?

    Not to start it going, no. But you can change it to name only. Type something, anything, in the Search box. When the search gets started you'll notice you have a new line under the toolbar that has
    Computer Home "SomeFolder" Save +
    With "SomeFolder" probably being either the last folder used in the application, or else the one you have navigated to. Then there is the Save button (although I can't imagine what it would actually be useful for) and the "plus" inside a little circle. Click the + and another line appears, with "Kind: Any"--change to Name in the drop down menu and select which of the usual options you want (Contains, Begins with, etc). BTW, I was just fooling around with it, and discovered that while the Name option works perfectly well, the options for Date Created and Date Modified don't work at all, although Last Opened seems to be OK. Ah well.
    Francine
    Francine
    Schwieder

  • Firefox won't allow typing into Google search bar whereas Chrome will

    Hi,
    I'm currently running Firefox 6.0.2 on Windows XP SP3 with Outlook 2003 SP3. No changes made recently to anything.
    Suddenly several errors happening at once, most involving Firefox.
    1) Homepage Google. I cannot type anything in Google search bar.
    If I replace it with e.g. Yahoo I can type anything, but replace it with Google and it is blocked again. I have re-booted, removed and replaced homepage etc no help.
    2) If I type www.hotmail.co.uk in Firefox address bar at top of screen it refuses to find the site. Nothing happens at all. Any other address I have typed in it had found ok, but this one remains blocked.
    3) It is difficult to see an immediate relationship to Firefox with this one, but it started at exactly the same time and also involves Google, so it is a bit of a coincidence otherwise. I keep getting Google delay messages on many of my emails. In fact they never get through, and I don't even have a Google email account!
    I use SKY email, Outlo0k as above and both are working normally apart from the bizarre Google messages as below:
    Thought you might like this!
    http://www.bbc.co.uk/news/10611973
    This is an automatically generated Delivery Status Notification
    THIS IS A WARNING MESSAGE ONLY.
    YOU DO NOT NEED TO RESEND YOUR MESSAGE.
    Delivery to the following recipient has been delayed:
    fsmail.com
    Message will be retried for 1 more day(s)
    Technical details of temporary failure:
    The recipient server did not accept our requests to connect. Learn more at http://mail.google.com/support/bin/answer.py?answer=7720
    [lb-collector.example.com (1): Destination address required]
    ----- Original message -----
    Received: by 10.227.7.7 with SMTP id b7mr6038396wbb.63.1315380110685;
    Wed, 07 Sep 2011 00:21:50 -0700 (PDT)
    Received: by 10.227.7.7 with SMTP id b7mr6038394wbb.63.1315380110525;
    Wed, 07 Sep 2011 00:21:50 -0700 (PDT)
    Return-Path: <
    Received: from esystem (5ad8be9b.bb.sky.com [90.216.190.155])
    by o7sm2699363wbh.8.2011.09.07.00.21.48
    (version=SSLv3 cipher=OTHER);
    Wed, 07 Sep 2011 00:21:49 -0700 (PDT)
    FromToSubject: BBC News - Australian drunk survives attempt to ride crocodile
    Date: Wed, 7 Sep 2011 08:21:45 +0100
    Message-ID: <BCAF1AEE7D2846098EFA1C2439F081FC@esystem>
    MIME-Version: 1.0
    Content-Type: multipart/alternative;
    boundary="----=_NextPart_000_0079_01CC6D37.30045180"
    X-Mailer: Microsoft Office Outlook 11
    Thread-Index: AcxtLswxm6e7lPntQMujFWSD94fu/w==
    X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6109
    Thought you might like this!
    http://www.bbc.co.uk/news/10611973
    I have removed the actual email addresses but they were perfectly accurate. Resending the emails by cutting and pasting worked in all cases so it is hard to see why the originals failed.
    I would be grateful for any help or suggestions
    Many thanks

    In the address bar type "about:config" without the quotation marks.
    Then in the Filter field type keyword.
    Then double click keyword.URL
    and type or copy and paste the following: "http://www.google.com/search?ie=UTF-8&sourceid=navclient&gfns=1&q=" without the quotations.
    And there you have it. Your browser will use google to search.
    These instructions were found here: http://support.mozilla.com/en-US/kb/Location%20bar%20search

  • Why do google search results reset to match the search bar terms when i use the back button?

    Since the update to FF 23, the list of Google search results clears and the on-page search box is reset to match the address bar search box when I hit the back button to re-view the results list after checking a result.
    To see this issue for yourself, set your search provider to Google and make sure Instant is on. Type a search term into the search bar and press enter. A google page appears with your results list. Now, change your search terms or conduct a new search directly from the google page (without using the FF search bar). Click on the first result in the search list, then click the back button to return to the search results so you can check a differest result. As FF goes back to the google page, it will reset the on-page search box to match the FF search bar (although you were no longer on this search) and all search results will disappear, replaced by the message "Press enter to search". Pressing enter reconducts your old search, not the one you were on.
    This is incredibly maddening since searching for something requires frequent use of the back button to check through the list of search results, and then frequently trying the search again with slightly different terms. Although it sounds like a Google issue, it did not occur on the old firefox and has me wanting to revert. I tried to revert to the old search function via the "keyword search" addon, but this did not fix my issue. Is there a way to force FF to go back to the actual google search page I was just on instead of conducting a new google search from the FF search box when I hit the back button?

    In Firefox 23 versions and later the keyword.URL pref is no longer supported and it is no longer possible to specify the search engine for the location bar via the keyword.URL pref.<br />
    The search engine that is used on the location bar and on the about:home page is the search engine that is selected in the search Bar on the Navigation Toolbar.<br />
    Current Firefox versions do not update the about:home home page until you refresh the page (future versions will do this automatically without a refresh) and that is what happens if you use the Back key.
    You can install the Keyword Search extension to specify with search engine to use for the location bar and which search engine to use for the about:home page via the Options/Preferences windows of this extension, accessible via the about:addons page.
    * Keyword Search: https://addons.mozilla.org/firefox/addon/keyword-search/

  • How to type a URL if Google search bar removed for privacy

    Because it appears that in Safari it is impossible to remove the Google Search Bar that's off to the right at the top without also removing the now connected URL Location bar to its left, I removed both. I had noticed that when I did this in Camino, I could still go to a web page by clicking Command L for Open Location (found in the File dropdown menu of most browsers).
    But in Safari just now, when I remove the Google search bar that Apple has hard coded to be inseparable from the Location bar to its left, I find I cannot use the File / Open Location command (which I mentioned is Command key - L) and therefore -- is my browser useless if I do not want to document my travels on the world wide web with Google's databases by having the Search Bar up?
    In other words is it not possible to enter a URL into Safari in a blank and open the URL Location if you remove the Google Search Bar?
    Is the only way to get to a webpage after removing that item to use one's old bookmarks to get to a page?
    Or is this a bug and is my "Command key - L" (Open Location command) supposed to be working? I also started to test this with Firefox but it appears my Firefox browser does not have this problem so my Open Location bar remains even if I remove a search bar and the removable search bar it does have is not tied to google in particular, I don't think, in Firefox even if I remove the search bar though I never use a search bar anyway because I don't care to go to any search engine unless I type their URL into my Location bar personally. That's just my preference because I don't trust having third party search bars forced into the browser design.
    Is this really true as it appears that there's no way to open a Location in Safari without having the annoying Search Bar up? Is Open Location disabled without the Google Search bar?
    If so, it looks like that, of my several browsers, the only one that won't allow me to Open Location (go to a webpage that I type into a Location bar) if I remove the Google Search bar is Safari. I am finding I can successfully extricate myself from Google search if I use Opera, Camino, and Firefox and select Remove after right clicking on the search bar.
    Why would the industry be trying to force this Google data mining and surf habits info collection on people? Evidently because Apple would rather take the money from google for forcing google into our browser than protect its customers privacy? I hope this disease does not spread to the other browsers left for me to use. What a monopoly google is building. Too bad antitrust litigation is dead.
    (If this is true, this is depressing to me because I had set Safari to be my primary browser. But it seems the least secure browser anyway (compared to using NoScript with Firefox) so I guess I'll have to avoid using it (except on those few pages that won't work without it) until Apple starts taking people's privacy a little more seriously instead of sneaking in more and more features that force us into an unholy logging relationship with Big Brother Google. And I'm disappointed in this development also because I used to like Google before I realized its lawyers were so dedicated to writing privacy policies that are as vague as possible and as unprotective of privacy as possible. I would like to use Google more if they would just stop taking 100 miles when a person gives an inch by using their search engine. I get nervous any time I have to use anything connected with them as things stand and I really wish that would improve and that google will improve its privacy policies rather than finding new ways to log every movement a person makes on the Web.)

    The question posed in this thread was:
    How do I type a URL such as "www.apple.com" etc. into a blank in SAFARI to go to the URL if I remove the Google search bar?
    I cannot seem to get Open Location (Command - L) to function if I remove the Google search bar. Removing the Google Search Bar seems to also remove the location bar to type into. This is not the case in Opera, Camino, or Firefox, so I am wondering if my Safari is just corrupted. If the only way to have the option of Open Location (Command L) is to put the Google Search bar back in, which means the two are connected, does that mean that Google is able to record all url's typed in the Location bar even if you don't use the Search bar? I believe the story used to be that any time you type a url into a google search engine, google records your IP and search; so I'm wondering if Apple has now set up the Location bar in Safari in a deal with Google to let Google track every URL you type into the location bar if it is the case that the Location bar is inseparable from Google Search.

  • After updating to FireFox 16.0.1 in Windows, the address bar stopped working, as well as the search bar, though not immediately. Reinstall didn't fix it.

    Initially I downloaded an AOL-optimized version, but when the problems came up I reinstalled the regular version and it was fine. Two days ago it randomly started again. Address bar won't go anywhere with enter or pressing the arrow button, and the search bar has no search engine. Trying add a search engine by clicking "manage search engines" doesn't help; the "add search enginges" button is unresponsive and there are none in the list to choose from. I uninstalled everything including my customizations and personal settings and reinstalled, which still didn't help. I tried disabling all the plugins and that didn't work either. I even tried searching from the FireFox home page search, since at that point it was the only page I could get to, and even that wouldn't search. The most recent add-on I downloaded was the Evernote Web Clipper I think, but it didn't seem to coincide with the start of the problems.
    Update: I ran a malware program (MalWareBytes) and it came up with nothing. I also got back into FireFox to get the Troubleshooting Information and added it in. In addition, here's my complete plugin/extension list:
    Plugins:
    Foxit Reader Plugin for Mozilla 2.2.1.530
    Google Earth Plugin 6.2.0.5788
    Google Update 1.3.21.123
    Java Deployment Toolkit 7.0.90.5 10.9.2.5
    Java (TM) Platform SE 7 U9 10.9.2.5
    Microsoft Office 2010 14.0.4761.1000
    Microsoft Office 2010 14.0.4730.1010
    Microsoft Windows Media Services 4.1.0.3917
    Shockwave Flash 11.4.402.287
    Silverlight Plugin 4.1.10329.0
    Windows Live Photo Gallery 14.0.8081.709
    Extensions:
    avast! WebRep 7.0.1473

    Sorry you are having problems. First of all try Fifrefox's safemode.
    *[[Troubleshoot Firefox issues using Safe Mode]]
    If that works post back for further advice.
    Next step, if safe mode did not work.
    <u>First: Try a clean install, <sub>(you have had a none standard version installed previously)</sub></u><br /> that involves deleting the program files. Then if necessary try troubleshooting by creating and using a clean empty Firefox profile.
    See
    * this recent post [/questions/940399#answer-377134]
    * http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall
    <u>Second: try a New Profile</u>
    *http://kb.mozillazine.org/Profile_Manager#Creating_a_new_profile
    * this will be an additional profile, it is still worth backing up any existing or currently working profile on a regular basis
    **[[Back up and restore information in Firefox profiles]]
    * Until you are absolutely confident about the repercussions I suggest
    ** always use an empty folder when creating a new profile
    ** never delete or rename profiles, just disable or remove shortcuts
    ** after creating a new test profile open it and check for any addons or plugins that may be have been included by default

  • WHY CAN I NOT EDIT THE DEFAULT SEARCH ENGINE USED BY THE ADDRESS BAR (NOT THE SEARCH BAR NEXT TO IT) FROM BING TO GOOGLE?

    I am asking this question again, because upon checking the forum for a solution I was shocked and appalled by the severe lack of grammar, punctuation and spelling I encountered while reading answers to this question. Obviously several people where to busy to actually read the question being asked and simply answered with instructions on how to change the default search engine for the search bar. SO, here I am asking the same question, why? because it still has not been answered and I myself still CANNOT find this setting anywhere. I use multiple browsers for different tasks, Chrome is KICKING the .... out of you guys Mozilla, why did you ever let your self get taken in by Micro-crack (Microsoft), if I recall correctly the inception of this program was partly motivated by the need for an alternative to the idiosyncrasies and vulnerability of Microsoft Internet Explore. This really feels like a HUGE step backwards, I would love to see a return to the days when Mozilla Firefox was and inspiration to developers and techs everywhere. And please will someone just answer the right question this time. Trust me when I say it will be obvious who does and does not read this in it's entirety.
    ''Edited by a moderator due to language. See the [http://support.mozilla.com/kb/Forum+and+chat+rules+and+guidelines Rules & Guidelines] .''

    HAHA! I have solved it! Ok here is the URL for Google, as mentioned above by bram:
    "Go to About:config
    Search for keyword.URL
    Double click the Value entry field, and change it to the search engine you prefer"
    Enter this URL for the string value
    http://www.google.com/#hl=en&output=search&sclient=psy-ab&q=

  • My centre search bar will not work, I type in it then hit search or enter but no response, it does absolutely nothing. What is wrong and how do i fix?

    when i start up firefox it loads as normal. I have the main web search bar (top left) and the google search bar (top right) then there is also the mozilla logo and third search bar just below it in the centre of the screen. This was my main bar as i liked the feature of left clicking in it and it instantly displaying my last searches and choosing from them what i wanted to do. Now it has just stopped working, it has none of my last searches stored and whatever i type in it doesn't matter anyway as it just doesn't do anything, it is totally non responsive. help please?

    It works again, thanks. It was only a small thing but so annoying. Do you know why this happened so I can maybe avoid it in future?

  • "Select all" in search bar on linux - can I configure this on mouse click?

    Hi,
    On windows, when you click in search bar you get your text selected (like when you press Ctrl+k). On ubuntu when you click - you just activate the text box to edit.
    I have looked through about:config and found "browser.urlbar.clickSelectsAll" - but unfortunately I don't find similar configuration for search bar.
    Is there a way to tune this except of getting my hands dirty in code?
    This may seem really small and stupid thing - but it is really annoying if you use fox intensively.
    Regards,
    Bogdan
    == This happened ==
    Every time Firefox opened
    == Always has been there on linux version

    Sure triple-clicking works, but for those of us struggling with RSI, it is a very good reason not to use Firefox

Maybe you are looking for

  • Windows Printer Share-Worked... now its not

    I have 7 computers, mac and PC that are all able to connect to a printer share except for 1 computer. The Lexmark T522 is connected via Serial to a Windows XP box that has standard printer sharing enabled. For months all the computers on the network

  • Nokia E72 not charging on pin or USB

    Hi, I am having a charging issue with my Nokia E72 which has the latest software. I have taken it into a Nokia Service centre but they cannot resolve. The phone will not charge and when you connect the charger into the small pin socket the phone disp

  • FrameMaker and SDL Author Assistant

    I just attended a webinar on SDL's Author Assistant (a content Management software)that looks like a good solution to some of my technical manual issues regarding consistency with terminology and general verbiage. It is supposed to be compatible with

  • Custom xpath function

    i am creating custom xpath function in jdeveloper(10g).i hav followed every step given in http://prsync.com/oracle/custom-xpath-function-in-bpel--7718.even after configuring jdeveloper,the custom function is nt there in the list of functions.also if

  • Que on Material Master Data Migration

    Hi All We are trying to allocate parallel currency to an existing co code, and since SAP recommends not to add parallel currency to an existing co code, we have decided to go ahead with a new co code - thereby transferring all master and transaction