Safari 5.1 for Windows 7 x64 (Scrolling Problem)

I know its known to some that scrolling is broken or at least is very flakey with Safari 5.1 on Windows 7.  I have two questions.  First, has anyone found a fix yet? Second, if not, how would I contact Apple specifically about this problem?  Thanks.

I know it isn't what was asked in the post but it might help if this is the problem you have until they fix this.
My scroll wouldn't work unless I rolled the wheel real fast. After disabling "Smooth Scrolling" the scrolling worked.
I hope this helps someone because I was just about to stop using Safari befor I got it to work.
Windows 7 Pro
Logitech - MX Revolution
Set Point Control Center - Ver. 6.30.41
Driver - 5.30.67

Similar Messages

  • J2SE 1.4.2 for Windows x64 bit download link

    Dear All,
    Can any one give me the link to download J2SE 1.4.2 for Windows x64 bit architecture?
    Your help is highly appreciated.
    Regards,
    Syed

    There should be no issues with using SAP JVM from the start.
    Probably no notes because is straightforward:
    - Extract the SAP JVM (e.g. c:\sapjvm_4)
    - Set JAVA_HOME (c:\sapjvm_4)
    And start installation as per guide.
    We have done this recently with Solman 7 EHP1 and NW 7 EHP1 (J2EE stack).
    We did have issue on central instance install where the J2EE instance would not start part way through installation (server0 continually crashed and restarted with memory issues) so we had to adjust the instance settings as per SAP Note#1603093, before retrying in SAPINST and continuing.
    We had this problem with both Solman & NW 7 EHP1.

  • ITunes 11.2.2 for Windows x64 will not successfully install.  Removed prior iTunes, and still will not install. 10.7 installs just fine, but constantly asks to upgrade to 11.2.2.  Any Thoughts?

    iTunes 11.2.2 for Windows x64 will not successfully install.  Removed prior iTunes, and still will not install. 10.7 installs just fine, but constantly asks to upgrade to 11.2.2.  Any Thoughts?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    The section Install missing components has advice on breaking down the iTunes installer into the individual .msi files which might prove useful if one component won't install normally.
    If needs be, the Microsoft Program Install and Uninstall Utility (MS Installer "Fixit") may be able to help force through the installation.
    tt2

  • Installing  64-bit ODAC 11.2 Release 3 (11.2.0.2.1) for Windows x64

    Dear all;
    I just downloaded 64-bit ODAC 11.2 Release 3 (11.2.0.2.1) for Windows x64 on my local pc...I am trying to run the install.bat after unzipping the file however, the black pop-up window comes up and disappears almost immediately. Does anyone know what is causing this. Also all help is appreciated with the installation. Kindly note, I have read the installation manual and it is not really helpful.

    this is the content of it
    @echo off
    REM ====================================
    REM ODAC 11.2.0.2.1 XCOPY INSTALL SCRIPT
    REM ====================================
    REM
    REM  This batch file installs components in an Oracle Instant Client Home
    REM
    REM  ====================
    REM  MODIFICATION HISTORY
    REM  ====================
    REM 
    REM  11/15/10 - change version number to 11.2.0.2.1
    REM  06/30/10 - change version number to 11.2.0.1.2
    REM             Add ODP.NET 4 and ASP.NET 4 components
    REM  08/21/09 - change version number to 11.1.0.7.20
    REM  08/21/09 - remove component odp.net 1.x
    REM  01/22/08 - Handle directory names with spaces
    REM  01/22/08 - Fixed oracle.key file generation so that products that rely on
    REM             it can reference the appropriate registry location
    REM  01/22/08 - Log all xcopy operations to the install.log in the destination
    REM             directory
    goto :ParseArgs
    REM **********************
    REM INSTALL ALL COMPONENTS
    REM **********************
    :InstallAll
    REM installing everything so set DEP to false or else dependencies such as
    REM basic client will get installed needlessly by each component
    set DEP=false
    call :basic %1 %2 %3 %4
    call :odp.net20 %1 %2 %3 %4
    call :odp.net4 %1 %2 %3 %4
    call :asp.net %1 %2 %3 %4
    call :asp.net4 %1 %2 %3 %4
    call :oledb %1 %2 %3 %4
    call :oramts %1 %2 %3 %4
    goto :EOF
    REM ************************
    REM INSTALL ASPNET Providers
    REM ************************
    :asp.net
    REM echo Please wait... installing Oracle Providers for ASP.NET
    if {%DEP%} == {true} (
    call :odp.net20 %1 %2 %3 %4
    echo *************************************** >> %2\install.log
    echo Installing Oracle Providers for ASP.NET >> %2\install.log
    echo *************************************** >> %2\install.log
    REM copy the files
    xcopy asp.net %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM pass in false for dependency because odp.net2x files are not copied over yet
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat asp.net %3 false
    call configure.bat asp.net %3 false
    popd
    echo.>> %2\install.log
    echo ************************************** >> %2\install.log
    echo Oracle Providers for ASP.NET installed >> %2\install.log
    echo ************************************** >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Providers for ASP.NET installed in an Oracle Instant Client Home.
    goto :EOF
    REM **************************
    REM INSTALL ASPNET Providers 4
    REM **************************
    :asp.net4
    REM echo Please wait... installing Oracle Providers for ASP.NET 4
    if {%DEP%} == {true} (
    call :odp.net4 %1 %2 %3 %4
    echo ***************************************** >> %2\install.log
    echo Installing Oracle Providers for ASP.NET 4 >> %2\install.log
    echo ***************************************** >> %2\install.log
    REM copy the files
    xcopy asp.net4 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM pass in false for dependency because odp.net4 files are not copied over yet
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat asp.net4 %3 false
    call configure.bat asp.net4 %3 false
    popd
    echo.>> %2\install.log
    echo **************************************** >> %2\install.log
    echo Oracle Providers for ASP.NET 4 installed >> %2\install.log
    echo **************************************** >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Providers for ASP.NET 4 installed in an Oracle Instant Client Home.
    goto :EOF
    REM *******************
    REM INSTALL ODP.NET 2.0
    REM *******************
    :odp.net20
    REM echo Please wait... installing Oracle Data Provider for .NET 2.0
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ******************************************** >> %2\install.log
    echo Installing Oracle Data Provider for .NET 2.0 >> %2\install.log
    echo ******************************************** >> %2\install.log
    REM copy the files
    xcopy odp.net20 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat odp.net20 %3
    call configure.bat odp.net20 %3
    popd
    echo.>> %2\install.log
    echo ******************************************* >> %2\install.log
    echo Oracle Data Provider for .NET 2.0 installed >> %2\install.log
    echo ******************************************* >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Data Provider for .NET 2.0 installed in an Oracle Instant Client Home.
    goto :EOF
    REM *****************
    REM INSTALL ODP.NET 4
    REM *****************
    :odp.net4
    REM echo Please wait... installing Oracle Data Provider for .NET 4
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ****************************************** >> %2\install.log
    echo Installing Oracle Data Provider for .NET 4 >> %2\install.log
    echo ****************************************** >> %2\install.log
    REM copy the files
    xcopy odp.net4 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat odp.net4 %3
    call configure.bat odp.net4 %3
    popd
    echo.>> %2\install.log
    echo ***************************************** >> %2\install.log
    echo Oracle Data Provider for .NET 4 installed >> %2\install.log
    echo ***************************************** >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Data Provider for .NET 4 installed in an Oracle Instant Client Home.
    goto :EOF
    REM *************
    REM INSTALL OLEDB
    REM *************
    :oledb
    REM echo Please wait... installing Oracle Provider for OLEDB
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ************************************* >> %2\install.log
    echo Installing Oracle Provider for OLE DB >> %2\install.log
    echo ************************************* >> %2\install.log
    REM copy the files
    xcopy oledb %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat oledb %3
    call configure.bat oledb %3
    popd
    echo.>> %2\install.log
    echo ************************************ >> %2\install.log
    echo Oracle Provider for OLE DB installed >> %2\install.log
    echo ************************************ >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Provider for OLEDB installed in an Oracle Instant Client Home.
    goto :EOF
    REM **************
    REM INSTALL ORAMTS
    REM **************
    :oramts
    REM echo Please wait... installing Oracle Services for MTS
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ********************************** >> %2\install.log
    echo Installing Oracle Services for MTS >> %2\install.log
    echo ********************************** >> %2\install.log
    REM copy the files
    xcopy oramts %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat oramts %3
    call configure.bat oramts %3
    popd
    echo.>> %2\install.log
    echo ********************************* >> %2\install.log
    echo Oracle Services for MTS installed >> %2\install.log
    echo ********************************* >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Services for MTS installed in an Oracle Instant Client Home.
    goto :EOF
    REM ***********************************
    REM INSTALL Basic Oracle Instant Client
    REM ***********************************
    :basic
    REM echo Please wait... installing Basic Oracle Instant Client
    echo ************************************** >> %2\install.log
    echo Installing Basic Oracle Instant Client >> %2\install.log
    echo ************************************** >> %2\install.log
    REM copy the files
    xcopy instantclient_11_2 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    call configure.bat basic %3
    popd
    echo.>> %2\install.log
    echo ************************************* >> %2\install.log
    echo Basic Oracle Instant Client installed >> %2\install.log
    echo ************************************* >> %2\install.log
    echo.>> %2\install.log
    REM echo Basic Oracle Instant Client installed.
    REM echo.
    REM echo Please prepend %2 and %2\bin to system path environment variable
    goto :EOF
    REM =======================
    REM Parse Script Arguments
    REM =======================
    :ParseArgs
    if /i {%1} == {} goto :Usage
    if /i {%2} == {} goto :Usage
    if /i {%3} == {} goto :Usage
    if /i {%1} == {-h} goto :Usage
    if /i {%1} == {-help} goto :Usage
    REM install dependencies or not - default is true
    set DEP=true
    if /i {%4} == {false} set DEP=false
    if NOT EXIST %2\*.* (
      mkdir %2 > NUL 2>&1
    echo ****************** >> %2\install.log
    echo ODAC install files >> %2\install.log
    echo ****************** >> %2\install.log
    REM /R to overwrite readonly files at destination
    REM /Y to overwrite an existing file without prompting
    xcopy configure.bat %2 /R /Y /F >> %2\install.log
    xcopy unconfigure.bat %2 /R /Y /F >> %2\install.log
    xcopy uninstall.bat %2 /R /Y /F >> %2\install.log
    echo.>> %2\install.log
    if /i {%1} == {basic}     goto :basic
    if /i {%1} == {odp.net20} goto :odp.net20
    if /i {%1} == {odp.net2}  goto :odp.net20
    if /i {%1} == {odp.net4}  goto :odp.net4
    if /i {%1} == {asp.net}   goto :asp.net
    if /i {%1} == {asp.net2}  goto :asp.net
    if /i {%1} == {asp.net4}  goto :asp.net4
    if /i {%1} == {oledb}     goto :oledb
    if /i {%1} == {oramts}    goto :oramts
    if /i {%1} == {all}       goto :InstallAll
    goto :Usage
    :Usage
    echo.
    echo Usage:
    echo   install.bat component_name oracle_home_path oracle_home_name [install_dependents]
    echo.
    echo Example:
    echo   install.bat all       c:\oracle myhome       (install all components)
    echo   install.bat odp.net2  c:\oracle myhome true  (install ODP.NET 2 and its dependent components)
    echo   install.bat odp.net4  c:\oracle myhome true  (install ODP.NET 4 and its dependent components)
    echo   install.bat asp.net2  c:\oracle myhome true  (install ASP.NET Providers 2 and its dependent components)
    echo   install.bat asp.net4  c:\oracle myhome true  (install ASP.NET Providers 4 and its dependent components)
    echo   install.bat oledb     c:\oracle myhome true  (install OraOLEDB and its dependent components)
    echo   install.bat oramts    c:\oracle myhome true  (install ORAMTS and its dependent components)
    echo   install.bat basic     c:\oracle myhome false (install Oracle Instant Client)
    goto :EOF

  • No PKCS#11 support in JDK 6 Update 14 for Windows x64?

    Hi there,
    I successfully installed GlassFish 2.1 on Windows 2008 x64 with JDK 6 Update 13 for x64. Everything was ok until I wanted to access my USB token with a certificate on it trough an EJB.
    I then had to reinstall everything based on 32-bit versions. Now it works again, but I'm not very satisfied with the solution because I wanted to have everything based 64-bit.
    Why JDK 6 Update 14 for Windows x64 does not contain PKCS#11 support? When you have look to the x86 version support is available there.

    If you load successfully your pkcs11 lib into java 32bit mean that the lib is 32bit.
    You cannot load a 32bit native lib into java 64bit ( http://java.sun.com/docs/hotspot/HotSpotFAQ.html#64bit_native_porting ).
    If you find the 64bit lib for your token, you should be able to use java64.

  • I bought a scanner Fujitsu (model sv600) in which is delivered a CD of installation of Acrobat 11 for Windows. The problem is that I possess an iMac. How can it be done?

    I bought a scanner Fujitsu (model sv600) in which is delivered a CD of installation of Acrobat 11 for Windows. The problem is that I possess an iMac. How can it be done?

    This page ScanSnap SV600 : Fujitsu Global shows that Acrobat is for Windows, not for Mac. There is no trade-up option so far as I know. Indeed, Acrobat Standard does not exist for Mac at all, only Acrobat Pro. Which you could buy.
    Or, you can invest in Parallels Desktop which will allow you to run Windows apps on your Mac.

  • Content Server for Windows x64

    Hi,
    I need to install Content Server on x64 Windows machine.
    I downloaded the SR3 installation master CD.
    I need to find the "Content Server 6.40" cd labeled "SAP:SAP_CS:640:*:PPMS component SAP_CS:PPMS-LABEL)". From where can I download it?
    Thanks,
    Omri

    starting point for newer content server installations is currently service.sap.com/contentserver -> Media Library
    -> Literature , where I found a new "installation guide for SAP Content Server for Windows 2008".
    Unfortunately, SAP Note Note 1556824 "Direct navigation to SAP Contentserver download page in SMP" does not mention details on how to find the source for the content server installation, but I got help by Content Server for Windows x64
    Regards
      Walter Dieringer

  • New Driver Creative Sound Blaster Live! 24-bit 1.04.0050 WHQL For Windows x64

    This is the new  Official Audio driver  released by Creative for  Sound Blaster Live! 24-bit for Windows x64.
    You can not install this driver in your MSI nForce4 based boards without first applying the OnBoard Sound EEPROM fix first found  here
    You have to boot in win98 or  winMe using a boot diskette in order to run the fix.
    enjoy 
    Markoul

    Quote from: Markoul on 22-May-05, 00:07:32
    This is the new  Official Audio driver  released by Creative for  Sound Blaster Live! 24-bit for Windows x64.
    You can not install this driver in your MSI nForce4 based boards without first applying the OnBoard Sound EEPROM fix first found  here
    You have to boot in win98 or  winMe using a boot diskette in order to run the fix.
    enjoy 
    Markoul
    Have you actually tired it yourself?  I'm wondering if this is a workaround, or will this be the official solution.  I wouldn't mind trying it, but I don't want to mess it up for when the Official driver is released.

  • Safari 4 browser for Windows F11?

    Is there an option to duplicate F11 windows function in Safari 4 browser for Windows? I want ALL the tool bars to hide.

    you can go to the view menu and turn everything off. If you want the tool bar (with back & forward buttons, address bar & google bar), hit Ctrl + L. If you want the menu bar (file, edit, etc.), hit the "alt" button. That should give you the full screen solution while still having access to those navigation elements.

  • Safari for Windows - Downloading application problems

    Hi
    Everytime I try to download Safari for Windows all I get is a small file of 4k, called SafariSetup.exe.
    Seems to be an incomplete download.Tried on my MacBook and my PC same result. Is there a problem with the download? Tried in safari mac, opera, firefox and google chrome.

    Everytime I try to download Safari for Windows all I get is a small file of 4k, called SafariSetup.exe.
    That's the right filename, but certainly the wrong file size for a Safari Installer.
    How are you connecting to the internet with the MacBook and the PC, Mark?
    For example, my Lenovo T61 is connecting wirelessly to a LinkSys WRT54G wireless router that is plugged into a Motorola SB5100 Surfboard cable modem.
    What sort of setup do you have?

  • Safari not working for windows vista

    everytime i start up safari it just quits unexpectedly and windows just can't seem to find a solution for this problem. wondering whether it's a bug and whether there's any updates for it!
    thanks!

    Hi,
    Welcome to  discussions
    Help others to help you by posting what you have tried to stop the crashing.
    In mac, cleaning up internet clutter has been known to help.
    Cookies, cache, Icons folder etc...
    Enable the debug Menu in Safari that may help, if like Mac there are net files there you can empty.
    To enable the Safari debug menu on Windows
    C:\"Program Files"\Safari\Safari.exe /enableDebugMenu
    See Macosxhints for more details, on how to use the command.
    Ok leave I you to the Window users hope someone can help you get it sorted, albeit i hope something I posted helps.
    Eme '~[) i ♥ S 3 beta

  • I can't view PDF files on Safari 5.1 for windows 7, how do I fix this?

    I like using Safari 5.1 for my web browser at work (I use a windows 7 machine). But the recent update won't let me view PDF files. I have to open up Google Chrome then copy and paste the address into it so I can view the PDF. How do I fix this?

    I use Adobe Acrobat 9 Pro 9.4.5
    There are no updates for this. Are you suggesting I unistall then reinstall this?

  • SAPGUI for Windows via Portal - problem with frame

    We are launching SAPGUI for Windows via Portal to drive single sign-on via AD.  Our problem is that when SAPGUI launches, it is contained within an IE browser frame that causes some of the SAPGUI screens to not fit on the screen well.  Those same screens fit just fine if we launch SAPGUI directly.
    Is there any way to launch SAPGUI from Portal, with SSO enabled, but without the IE frame around it?

    Lonny,
    The best way to authenticate users when they logon using SAP GUI for Windows, is to use SNC authentication in SAP GUi. Then, the browser iview will launch the GUI and the GUI will authenticate the user using their AD credentials issued during the Windows logon. You will need to setup an SNC library on both the ABAP system which the user is logged onto, and the workstation where SAP GUI is installed.
    If you don't use SNC, and you just launch SAP GUI for Windows from browser, then an SSO2 ticket is used to authenticate the user to the ABAP stack, and this is not secure due to the fact that the SAP GUI session which is used to pass the SSO2 ticket is not protected - anybody can intercept the SAP GUI session, take the SSO2 ticket from this traffic and logon as that user - clearly this is bad security and needs SNC to make it secure.
    Thanks,
    Tim

  • Creative webcam driver for windows x64

    Hi! i'm looking for a driver for windows xp x64 for my creative webcam go but i dont find it. Is there a driver from creative or a generic driver?
    Thanks

    fredn,
    You can find a compatibility list in our knowledgebase by searching for article SID7824. Unfortunately, it appears that the WebCam Vista and NX have no development planned for x64.
    Daniel

  • What versions of Safari were released for windows?

    Omniture reports Safari version numbers, but not the OS.
    I need to download older versions of Safari to QA webpages.
    The platform being QA'd is Windows (XP-SP3 & Windows7).
    It seems as if there were more than 2 versions of Safari for Windows.
    I can only find a download for 5.1.7 and 3.1.2 - what about interim versions?

    Hi MIke,
    Are you still facing this issue?
    Have you tried to install latest update patch 11.0.09. Do you have any GPO's for Reader. Have you tried to disable and checked again.
    Regards,
    Ajlan Huda.

Maybe you are looking for