Unable to scroll right to left while using google images

See above

Maybe you should update to the last Firefox 3.6.28 version.
You can find the latest Firefox release in all languages and for all Operating Systems here:
*Firefox 3.6: http://www.mozilla.org/en-US/firefox/all-older.html
A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
*http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
Create a new profile as a test to check if your current profile is causing the problems.
See "Basic Troubleshooting: Make a new profile":
*https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
If the new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
See:
*http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

Similar Messages

  • Unable to change reference point location while using the Transform Functions in Photoshop Elements 6.0.

    Unable to change reference point location while using the Transform Functions in Photoshop Elements 6.0.

    Which operating system are you using?
    In photoshop elements 6, as far as i know, you can only change the Reference Point Location for transforms using the small grid in the left hand corner of the tool options bar with Transform enabled.

  • Microphone auto adjust while using google Hangout,

    Hi,
    While using Google Hangout the micrphone adjust itself, there is an option within Skype to stop it, but couldn't find it in Google Hangout, and it does it also when recording the sound, which lead me to believe it is Als/pulse related.
    Is there any option to disable it?
    Looking forward for your reply,
    Regards,

    Right,
    After searching the web a little bit more - actually quite easy to fine - but I was trying hangout for the first time.
    I found that solution, I haven't tested it yet; so if you do please let us know if it work.
    To turn off the auto adjust:
    cd ~/.config/google-googletalkplugin    # get to google chat's directory
    cp -p options options.bak        # make a backup before changing stuff !
    gedit options                # edit the config file
    now change one of the lines so that it reads as follows:
    audio-flags=1
    Now restart you machine and google chat will no longer auto-adjust!!!
    Remember to go to PulseAudio volume control just to make sure the left channel stays at 0
    Found here => http://productforums.google.com/forum/# … 1cpJq1mC8U

  • While using google, my searches come up in french how do i change it back to english?

    I am a recently switched from microsoft to apple. i have a 13 inch macbook pro. while using google i noticed that my searches are coming up in french even though i type in english. i have looked in system preferences>personal>language&text and english is at the top of the list......that is all i have been able to figure out on my own:( Just to add everything else about my mac seems to be in english.....Looking forward to having help!!

    http://support.google.com/toolbar/bin/answer.py?hl=en&answer=9279
    Also, on the results page, there will be a little gear icon in the upper right corner.   Click that.   Click Languages along the left.  Choose "English" at the bottom.

  • My 4s has grainy low res images when I use google image search, imdb and USA today app. But not FB. How do I fix this?

    My 4s images are grainy and low res when I use google image search, imdb and a couple other apps. My photos roll pics are hi def just not images. What's up with this?

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Reliably calculating character bounds for Right-To-Left languages using flash.text.engine.* classes?

    I just filed a bug in the Adobe bugbase about this, but I thought maybe the community could help with a workaround (or point me in another direction if I'm looking at it wrong).
    I don't know an elegant way to describe the defect, but it's something like this:
    Create a Vector of ContentElements and add a TextElement containing a right-to-left string in a language such as Hindi (ex. "वह बाग़ में दोपहर का खाना ")
    Create a TextBlock with a GroupElement and use it to create a TextLine to display the right-to-left string
    Walk through each character in the right-to-left string and try to calculate its boundaries using the TextLine's "getAtomBounds" method.
    What I'm seeing in my test project is that the number of characters (atoms?) the TextLine reports is fewer than the number of characters that were in the original string. I was under the impression that TextLine would offer some method of automatically converting from a logical character index into a display index (to keep things simpler for the end user). That doesn't seem to be the case, and I don't see any way to use TextLine's methods to do that conversion.
    Am I overlooking something obvious?

    Update: I was missing something obvious!
    It seems like TextLine's getAtomTextBlockBeginIndex and getAtomTextBlockEndIndex methods were exactly what I was looking for. It just took me a while to find them and realize that. So to convert from a logical (unicode) character index to a display (atom) index, you can do this...
    private function getCharBounds( charIndex:int ):Rectangle {
         for ( var childIndex:int = 0; childIndex < textContainer.numChildren; childIndex++ ) {
              var textLine:TextLine = textContainer.getChildAt( childIndex ) as TextLine;
              for ( var atomIndex:int = 0; atomIndex < textLine.atomCount; atomIndex++ ) {
                   var charIndexRangeStart:int = textLine.getAtomTextBlockBeginIndex( atomIndex );
                   var charIndexRangeStop:int = textLine.getAtomTextBlockEndIndex( atomIndex );
                   if ( charIndex >= charIndexRangeStart && charIndex <= charIndexRangeStop ) {
                        var rectangle:Rectangle =
                             textLine.getAtomBounds(
                                  atomIndex );
                        var point:Point =
                             textContainer.globalToLocal(
                                  textLine.localToGlobal(
                                       new Point( rectangle.x, rectangle.y ) ) );
                        rectangle.x = point.x;
                        rectangle.y = point.y;
                        return rectangle;
         return null;

  • Scroll bar keeps sliding while using internet

    While using the internet, on certain web-pages, the scroll bar keeps sliding down or up and page will turn dark in color. I have linux operating system. What is causing this and how can I fix the problem.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Can you post a link where you see this?

  • Unable To Write Right To Left (After Installing Win7 SP1)

    Hey You All!
    Yesterdy I've Installed Windows 7 Sp1,
    And Today When I Tried Writing In Hebrew (Right To Left)
    In My Photoshop CS5 - ME (Supports TRL Writing), It Writes Backwards
    Like If I Were Using Regular Non Hebrew/Arabic Supporte Text...
    Has Anyone Else Encountered This Problem? Please Help, It's Slows Me Down In My Workplace!!!
    Thanks!

    Hey Again!
    Well First Of All Thank You For Trying And Helping Me!
    I've Tried To Look For A Sloution But With No Luck, But...
    It's Seems That There Is Something Even More Weird Going On,
    As You May Know Once You Install Photoshop CS5 (ME Or Not) On A Win7 64Bit OS
    It Installs Both 32Bit And The 64Bit Versions... So Here's The Weird Part:
    1. If I'm Typing In Hebew In Ther 64Bit Version - You Get The Letters Backwards
    2. But If I Use The 32Bit, Evertyhing Seems To Be Working Okay...
    What Do You Think Is Going On?
    I Also Failed To Mention That I Also Updated To IE9 Perhaps It Is Causing The Problem Also?
    Anyone?

  • System Stop while using Google Earth

    Hi,
    Today I downloaded google earth and installed it on my system, while using the program my system stopped for the first time.
    As suggeted in the message I shut down the notebook and restarted after sometime, once again it shut down while google earth was running. The message displayed was;
    system stopped: 0x0000008E (0x80000004, 0x80709AD1, 0xA8B9454C, 0x00000000)
    Whats the problem.
    Solved!
    Go to Solution.

    i see you have not mentioned your system specs?if your's is a new system or has direct x support or even(opengl) you may not have to these kinds of issues kindly post your system configuration to have further assesement regarding this matter
    ps:google earth works flawlessly on my system
    Cheers and regards,
    • » νιנαソѕαяα∂нι ѕαмανє∂αм ™ « •
    ●๋•کáŕádhí'ک díáŕý ツ
    I am a volunteer here. I don't work for Lenovo

  • While using Google to find a website, the catagories appear, but when I click on one of the links, it takes me to a different website. Most of the time the sites seem to be like larger versions of pop-ups, and are all advertising or trying to sell somethi

    When using Google to find a website, Google lists the various sites, but when I click on them, the take me to a larger version of a pop-up. Most are advertising sites that are trying to seel something
    == This happened ==
    Every time Firefox opened
    == A few days ago

    Maybe these will help:
    https://discussions.apple.com/message/17677533#17677533
    https://discussions.apple.com/message/18324129#18324129
    https://discussions.apple.com/message/18203126#18203126

  • Recording views to show later while using google earth. Thank You.

    Can I video record to SD, or thumb drv map views when using google earth to show later where there is no net connection.
    I want to record, and show an old guy what his mountain property looks like from the air via his TV which has USB & RCA video in.
    There is no net available where he is convelsing.
    OS= Win 7 Home Priemium.
    or; XP pro 3.
    Thank You for all your programs.
    David Braddy

    Try to download google earth software then go to area you want it to be offline and done

  • Camera icon does not appear when use Google Image Search

    Hello,
    I am working on a much older macbook pro (2006) running OS 10.6.8 and Safari 5.1.10.
    Just the other day I reinstalled Safari, as some things appeared to not be working properly. However, there was nothing wrong with Google. SInce then, when I try to search by Google Image, the camera icon does not appear in the search bar. I have tried reinstalling Safari twice, but nothing changes. I have checked in Firefox and it shows up as expected.
    I have cleared the cache, deleted cookies, and cleared browser history. None of these steps have produced any changes.
    Also, I seem to have reverted to some earlier version of Google, since the search tools now appear on the top left, as show below.
    Can you please assist me in sorting this out so that Safari and Google perform as expected.
    Thank you very much.
    Val

    I posted that work around on the google forums and it actually came from the Apple forums from users 'Society Girl' and refined by 'spiza' from this thread.
    Google Reverted to Old Layout
    I called a friend at a tech magazine and he *cough* unofficially* cough* said via contacts it was a very deliberate move by Google... nothing to do with their upgrades or a hack coincidentally not working as a by product with old browsers.
    oh boy...
    'Google flushes out users of old browsers by serving up CLUNKY, AGED version of search'
    'Ad giant: Yeah, we did that deliberately'
    In a separate thread, as spotted by a Reg reader who brought this sorry affair to our attention, user MadFranko008 was able to show that even modern browsers - including the current version of Chrome - were apparently spitting out glitches on Apple Mac computers.
    Google then appeared to have resolved the search "bug" spotted in Chrome.
    http://www.theregister.co.uk/2014/08/31/google_search_browser_support/
    and on the BBC website...
    Google 'discourages' users of old browsers
    Google has started showing old versions of its search page to people using out-of-date versions of some web browsers.
    The problem was most pronounced among those using variants of Safari 5.1 and Opera 12.
    A Google message posted to the forum said the change was made to "encourage" people to upgrade their browser
    http://www.bbc.co.uk/news/technology-29012038
    Google and Apple are not the best of friends...
    I expect this will run a little longer 

  • Everything shifts to the left while using flash player on Chrome

    So, for a month or so Flash has been doing this to me:
    http://i.imgur.com/6VjST.png
    Notice how there are two scroll bars? Now i could deal with that, but the problem is, everything shifts to the left - meaning i have to go further to the right to select text, links, or change the options in the Youtube flash player. This doesn't just happen with Youtube, but really with any website i've seen so far that has video playback. Also, it may seem like the left bar in the video is bigger, that's Fraps's fault. This only seems to happen on Chrome, and only on this very specific laptop i'm using (An HP Pavillon g6 if that helps).
    I'd like to know how i can fix this bug, because it's been... well, bugging me. Pun not intended.

    I believe you are running into the following bug: Issue 140239 - An additional scroll bar appears at the right on many sites
    From what I understand, this is fixed with the Chrome Canary build (a beta release of Chrome) and if all goes to plan, will eventually wind up in their released build soon.

  • Unable to connect wireless print server while using wireless modem to ISP

    Unable to connect an HP Laserjet 1320 thru the JetDirect ew2400 External Print Server to an imac G5 that uses the 2WIRE352 modem for ISP access thru ATT. Either the ISP is connected and works, or the printer works but no internet access. HP (after 1hr 15 min.) said I need to change/access the "infrastructure" in the OSX. Is that correct? & if so, how do I do this? Do I need to hire Apple Tech Support to do this? How much will that cost. I'm ready to send the Print Server back to HP for a refund.

    I would post your issue in the Printing & Faxing forum area. More chance for some of the gurus like Greg Sahli to respond.

  • I find myself unable to pinch to home screen while using iPad Air..it  hapenned twice

    While I was opening some applications and then I wanted to pinch to home screen but I found it doesn't work then I tried closing the opened applications then I tried pinching ..finally it works.. This happened twice ..is it just an incident or there is something wrong in my ipad

    As Bob said Newsstand doesn't always pinch to close.  In my limited experience it has behaved differently in different versions of the iOS, and behaves differently for different magazines.
    Otherwise, were you using all 5 fingers?
    You don't have a practical joker friend who may have turned multitasking gestures off in Settings?

Maybe you are looking for

  • Partial Trigger is not working with Panel Group Layout using ADF 11g.

    Friends, I have a requirment , Based on the <af:selectBooleanCheckbox> value I have to render <af:panelGroupLayout> dynamically. If the check box is checked then I have to display panel group layout otherwise not. The problem what I am facing here is

  • IChat AV - not fit for purpose

    I love Apple stuff. I love the way stuff just works. But iChat AV is the fly in the ointment. The sand in the vaseline, the worm in the Apple. Take a look through this forum and see just how many people can't even make a connection. This is just unac

  • Ipod wont restore, why?

    my ipod touch 4g wont restore or go into recovery mode, keeps coming up with error code 11. however error code 11 isnt on the apple website. Help anyone? Thanks

  • Have Adobe Photoshop Elements 11 and it's running very slow.  I don't know what's wrong!

    I have Adobe Photoshop Elements 11 and it's running very slow.  Have no idea what's wrong or how to fix.  Op Sys is Apple, OS X, ver 10.9.1.

  • 10.3 - any way to throttle connection attempts?

    An elderly friend has a mac running 10.3 on an ADSL link. She's seeing many thousands of ssh login attempts per day, sufficient to eat significantly into her monthly download allowance (the isp charges for traffic, whether there is a successful conne