Mouse Scroller Algorithm question

I have a mouse controlled scroller which I've fashioned from Lee Brimelow's excellent tutorial. I'm at the stage now where I want to add more thumbnails to the scroller's content area, though when I do, the scroller will not scroll any more than 8 thumbnails in either direction.
My question is (for those of you who are way better at Math, than me) how do I complete the algorithm to compensate for adding more than just 8 thumbnails - into, say, 30 thumbnails and have the scrolling behavior always show the last or first thumbnail when the mouse is at either side of the scroller movieclip?
this.addEventListener(MouseEvent.MOUSE_MOVE, scrollPanel);
        private function scrollPanel(e:MouseEvent):void {
            var xdist:Number = mouseX - 250;
            //_xContainer is an mc which holds the thumbnail images
            TweenLite.to(_xContainer, 0.3, { x:Math.round(-xdist)});

when the mouse is at one extreme position the thumbnails should be at an extreme position and when the mouse is at the other extreme the thumbs should be at their other extreme.  then use linear interpolation for all other mouse positions.
so, for example, if you want mouseX=0 to correspond to the thumbnail parent (_xContainer) being at zero (assuming a left edge reg pt) and you want mouseX=stage.stageWidth to correspond to -_xContainer.width+stage.stageWidth, declare and type your variables and use:
findParamsF(0,0,stage.stageWidth,stage.stageWidth-_xContainer.width);
function findParamsF(x1,y1,x2,y2){
m=(y1-y2)/(x1-x2);
b=y1-m*x1;
private function scrollPanel(e:MouseEvent):void {
            var xdist:Number = m*mouseX + b;
            //_xContainer is an mc which holds the thumbnail images
            TweenLite.to(_xContainer, 0.3, { x:Math.round(-xdist)});

Similar Messages

  • Mouse scrolling on Firefox?, i have the question of how i can get mouse scrolling on Firefox?

    i try to put mouse scrolling functions on firefox, but i can't
    this is my code:
    <pre><nowiki><!DOCTYPE html>
    <html>
    <head>
    <title>Canvas</title>
    <meta charset="UTF-8">
    <meta name="author" content="http://programmingheroes.blogspot.com.es">
    <style>@font-face {
    font-family: "PlaneCrash";
    src: url('Calligraffiti.eot?') format('eot'),
    url('Calligraffiti.woff') format('woff'),
    url('Calligraffiti.ttf') format('truetype'),
    url('Calligraffiti.svg#Calligraffiti') format('svg');
    body {
    background-color: #000;
    overflow: hidden;
    margin: 0;
    div {
    -moz-user-select: none;
    -moz-user-select: none;
    canvas {
    background-color: #000;
    position: absolute;
    #title {
    -moz-transform: rotateZ(-5deg);
    -moz-transition: -moz-transform 2s;
    -moz-box-reflect: below -40px
    -moz-gradient(linear, left top, left bottom,
    from(transparent), to(rgba(255, 255, 255, 0.6)));
    -moz-transform-origin: 0% 100%;
    font-family: "PlaneCrash";
    position: relative;
    text-align: center;
    top: 30px;
    font-size: 6em;
    color: red;
    text-shadow: 0px 0px 20px white;
    #title:hover {
    -moz-transform: rotateZ(5deg);
    </style>
    <script>
    window.addEventListener("resize", resizeCanvas, false);
    window.addEventListener("DOMContentLoaded", onLoad, false);
    window.requestAnimationFrame =
    window.requestAnimationFrame ||
    window.mozRequestAnimationFrame ||
    window.mozRequestAnimationFrame ||
    window.oRequestAnimationFrame ||
    window.msRequestAnimationFrame ||
    function (callback) {
    window.setTimeout(callback, 1000/60);
    var canvas, ctx, w, h, particles = [], probability = 0.09,
    xPoint, yPoint;
    var img = new Image();
    img.src = "img/fire.png";
    function onLoad() {
    canvas = document.getElementById("canvas");
    canvas.addEventListener("mousedown", mouseDown, false);
    canvas.addEventListener("DOMMouseScroll", DOMMouseScroll, false);
    ctx = canvas.getContext("2d");
    resizeCanvas();
    window.requestAnimationFrame(updateWorld);
    } // fin de onLoad();
    function mouseDown() {
    createFirework();
    } // fin de moveDown(e);
    function DOMMouseScroll(e) {
    e = e || window.event;
    if (e.DOMMouseScroll > 0) {
    probability += 0.01;
    else
    (e.DOMMouseScroll < 0)
    probability -= 0.01;
    probability = probability<0? 0: probability;
    } // fin dw mouseWheel();
    function resizeCanvas() {
    if (!!canvas) {
    w = canvas.width = window.innerWidth;
    h = canvas.height = window.innerHeight;
    } // fin de resizeCanvas();
    function updateWorld() {
    update();
    paint();
    window.requestAnimationFrame(updateWorld);
    } // fin de update();
    function update() {
    if (particles.length < 500 && Math.random() < probability) {
    createFirework();
    var alive = [];
    for (var i=0; i<particles.length; i++) {
    if (particles[i].move()) {
    alive.push(particles[i]);
    particles = alive;
    } // fin de update();
    function paint() {
    ctx.globalCompositeOperation = 'source-over';
    ctx.fillStyle = "rgba(0,0,0,0.2)";
    ctx.fillRect(0, 0, w, h);
    ctx.globalCompositeOperation = 'lighter';
    for (var i=0; i<particles.length; i++) {
    particles[i].draw(ctx);
    } // fin de paint();
    function createFirework() {
    xPoint = Math.random()*(w-200)+100;
    yPoint = Math.random()*(h-200)+100;
    var nFire = Math.random()*50+100;
    var c = "rgb("+(~~(Math.random()*200+55))+","
    +(~~(Math.random()*200+55))+","+(~~(Math.random()*200+55))+")";
    for (var i=0; i<nFire; i++) {
    var particle = new Particle();
    particle.color = c;
    var vy = Math.sqrt(25-particle.vx*particle.vx);
    if (Math.abs(particle.vy) > vy) {
    particle.vy = particle.vy>0 ? vy: -vy;
    particles.push(particle);
    } // fin de createParticles();
    function Particle() {
    this.w = this.h = Math.random()*6+1;
    // Position
    this.x = xPoint-this.w/2;
    this.y = yPoint-this.h/2;
    // Velocidades x e y entre -5 y +5
    this.vx = (Math.random()-0.5)*10;
    this.vy = (Math.random()-0.5)*10;
    // Tiempo de vida
    this.alpha = Math.random()*.5+.5;
    // color
    this.color;
    } // fin de Particle();
    Particle.prototype = {
    gravity: 0.05,
    move: function () {
    this.x += this.vx;
    this.vy += this.gravity;
    this.y += this.vy;
    this.alpha -= 0.01;
    if (this.x <= -this.w || this.x >= screen.width ||
    this.y >= screen.height ||
    this.alpha <= 0) {
    return false;
    return true;
    draw: function (c) {
    c.save();
    c.beginPath();
    c.translate(this.x+this.w/2, this.y+this.h/2);
    c.arc(0, 0, this.w, 0, Math.PI*2);
    c.fillStyle = this.color;
    c.globalAlpha = this.alpha;
    c.closePath();
    c.fill();
    c.restore();
    } // fin de Particle.prototype;
    </script>
    </head>
    <body>
    <noscript>
    No tiene habilitado JavaScript. Debería habilitarlo para poder
    disfrutar al completo de los contenidos de esta página.
    </noscript>
    <div>
    <canvas id="canvas">
    Tu navegador no soporta el elemento <code>canvas</code> de HTML5.
    </canvas>
    </div>
    <div id="title">
    fireworks!
    </div>
    </body>
    </html></nowiki></pre>

    Note that some CSS properties now longer need or can be prefixed with a -moz- prefix.
    *https://developer.mozilla.org/en-US/docs/Web/CSS/transform
    A good place to ask advice about web development is at the mozillaZine "Web Development/Standards Evangelism" forum.
    *http://forums.mozillazine.org/viewforum.php?f=25
    The helpers at that forum are more knowledgeable about web development issues.<br>
    You need to register at the mozillaZine forum site in order to post at that forum.

  • Might Mouse scroll wheel indesign

    (oops I thought this category was "other" hardware products. Why isn't there a category for keyboards and mice??)
    I want to thank Apple for being forward looking in all aspects of design, formost the input devises. The new keyboard is amazing. Thanks. The Mighty Mouse is the first decent Apple mouse since pre-G3 days. In fact it is a very nice mouse – for 2 months.
    My Mighty Mouse stopped scrolling after 2 months of heavy use. I took it to the Genius Bar, they told me it was dirty and sprayed air into it. It worked great again for another 4 days. That was April. I've just learned to live without it since then – occasionally trying to spray air into it to no avail.
    I found this:
    http://discussions.apple.com/thread.jspa?threadID=1243940
    which gives us a simple how-to on cleaning the mouse. I can figure that out myself.
    Does anybody know how to break open the mighty mouse so I can actually clean it?
    I am a very clean person. If it takes two months for me to clog up the scroll wheel, somebody else has got to have a solution? I fear any professionals who use a Mac day in and day out must be using a third party mouse. I've not had any problems with a third party optical mouse ever – after many years of use. My Mighty Mouse's scroll wheel is really terrible.
    My questions are:
    A) How do I open up the mighty mouse so I can clean it?
    B) Is there a third party mouse that scrolls left and right and connects via bluetooth?
    C) Is apple reinventing the wheel again? Seriously.
    Okay, I had to vent. Better than throwing this thing against the wall.
    Message was edited by: Ahab the Eskimo

    A) How do I open up the mighty mouse so I can clean it?
    You can't without breaking it.
    B) Is there a third party mouse that scrolls left and right and connects via bluetooth?
    There are other scroll-ball mice (the only ones I know of that have dual-axis scroll), but they'll have the same problem though some might be easier to clean. As a possible help for the problem with your current mouse, perhaps this will help:
    http://theappleblog.com/2008/09/27/revive-your-mighty-mouse-scroll-ball/
    C) Is apple reinventing the wheel again?
    Constantly. Apple has applied for a patent on a mouse with a touchpad rather than a mechanical ball, but whether such a product will ever make it to market is unknown.

  • After upgrading to 20.0.1, my mouse scrolling speed is slow

    I've just updated to 20.0.1 from 19.0.2 and suddenly, the speed of my mouse scrolling has decreased dramatically. When I tried other browsers, it was usual/normal speed but for firefox, it was very slow (i.e around 5+ lines decreased).
    I have looked at one of the recent post about this problem (https://support.mozilla.org/en-US/questions/948356?esab=a&s=mouse+wheel+scroll&r=0&as=s) however, even setting mousewheel.enable_pixel_scrolling to "false", it didn't revert back to normal/usual speed.
    FYI, this is without smooth scrolling. I don't use this feature due to personal preference.
    Help would be appreciate it.

    I had a similar problem where it seemed like smooth scrolling was always "ON". Whenever I moved my mouse scrollwheel for 1 notch, the page only scrolled for a few pixels. So it looked like smooth scrolling was enabled somewhere even though it was set to "OFF" in Firefox options.
    It turned out that it was a Logitech extension that was causing the problem, more precisely Logitech SetPoint software which was smoothing the scrolling and overriding Firefox's settings.
    So if you have a Logitech mouse and Logitech SetPoint software installed, go into Firefox menu Tools -> Add-ons, then click on "Extensions" on the left and then find Logitech SetPoint entry and DISABLE it. I did that and scrolling was then back to normal, as configured within Firefox settings.

  • Mouse scroll on cover flow skips albums

    Hello all,
    as the title states, when I did a mouse scroll, it used to flow through every album. At one point it started skipping some album. I have this problem quite a while now but it starts to get annoying. I have Windows x64 with the latest version of iTunes x64 and Logitech mouse with latest drivers (even thought the mouse doesn't seem to be the problem because mouse-pad scrolling is acting the same). I have tried changing how many lines the mouse roll scrolls each time but when I put one line at a time it skips one album (for 3 lines I think it scrolls 4 by 4). I have hundreds of albums so I'm not sure if there is some kind of algorithm that when you have many albums it goes 2 by 2 so you can scroll them or something... Any help will be appreciated.
    Cheers Jimmy

    If not a bug, it's certainly a design oversight rather than intentional behaviour. As far as I can tell it's present on all iPods, it's just more obvious on the classic, and to some extent it's also present in iTunes. If you select the browser view so that you get a listing albums on the top right you might expect that each line would represent a single album, but if you have more than one album with the same title you still only get one line. Workarounds are as Jeff suggested, e.g. *Album - Artist*, appending different numbers of spaces to the album title for each different album or giving each album different Sort Album values. Personally I prefer the first method as it clearly distinguishes albums in the iTunes browser.
    tt2

  • How to zoom in even steps (50%, 66,7%, 100% etc) with mouse scroll on a Mac?

    I just switched to a mac from PC and I was used to zoom with my mouse scroll and hold shift to zoom in even increments to keep the image as crisp as possible. Now on a mac I still haven't found a way to do this. When the zoom with mouse scroll is enabled (I use Apple's Magic Mouse), I'm only able to zoom in and out getting uneven values such as 88,7%, 97,6% etc - the same action as in Photoshop WITHOUT shift pressed. But on a mac pressing shift doesn't help. I've also tried plenty of different keys with mouse scroll zoom but none of them seem to help.
    Is there any way to zoom in even steps with Magic Mouse on a mac? This is driving me crazy, as now I have to select the zoom tool and use it to zoom in and out, which significantly slows down my work flow.

    While Magic Mouse is really cool, it is not really the best bet for a Photoshop user. Read here: http://store.apple.com/us/question/answers/product/MB829LL/A?pqid=QXF99PAC4UX2C4PDCFTTP4XP YXH2YTDFC
    Other than that, you can press 'Option' key on your Mac keyboard and use the 2 finger zoom on Magic Mouse to zoom in. But, I doubt if this will give you even step zoom.
    The other keyboard combination you could use (I'm sure you're probably already aware) is Cmd + & Cmd - key combination which will give you equal step zoom.
    You can also take a look at this article: http://creativetechs.com/tipsblog/11-ways-to-zoom-in-photoshop-cs4/
    Even though it is for CS4, it works across all versions of Photoshop (so far).

  • NEWBIE-Using Mighty Mouse scroll wheel to control Color's SMH wheels

    Hi, new here & new to Color, working thru Ripples iTunes Color tutorials right now. Loving Color so far. I hope to be back with less rudimentary questions one day but here's the 1st:
    Lacking a dedicated hardware interface, I'd hoped the Might Mouse scroll wheel would drive the shadow midtone and hilight wheels. I've tried various permutations in system prefs but no dice. Have I missed something? Thank you.

    nadsta, I've found using a ShuttlePRO2 unit very handy. It's cheap, and I can map whatever shortcut I want, and then I use a Wacom tablet for the color wheel adjustments.
    I've mapped the ShuttlePRO to jump between grade 1-4, and the different rooms I use the most (primary in/out, secondaries, color fx), turning grade on/off, set/delete keyframes and adjust keyframe type, two buttons for ALT/OPT and SHIFT modifiers which comes in very handy for selecting and adding to a color selection (in secondaries for instance) or holding ALT while click-and-drag in the color wheels and different parameters around the interface.
    It's not perfect, but I can at least do some things in less time than I would using the keyboard.

  • Using Mouse Scroll Button In Swing

    Hi all, here's my question:
    When using a JScrollPane, how is it possible to use the mouse scroll button found in the middle of the mouse to scroll up or down?

    Hi,
    if you are using JDK1.4 it should work. If not you would need a native implementation to catch the wheel.
    Regards
    Andre

  • Viewing a video (YouTube, etc.) disables the mouse scroll wheel - switch to Opera and scroll on a page, return to FF and wheel is reenabled.

    After viewing a video (usually YouTube, but not exclusively; either directly, or embedded in a web page), the mouse scroll wheel will become disabled. If I then switch over to Opera and use the scroll wheel on any open page, the scroll wheel will be re-enabled upon return to FireFox.

    Important questions:
    What ActiveX control are you using?
    I'm using the PDF activex control to display a PDF on the front panel of my VI.
    What version of LabVIEW are you using?
     I'm using LabVIEW 7.1
    What "control pages" are you talking about?
    The pages of the PDF: it has several pages. If a mouse is held over it the user can scroll using the scroll wheel, or if they right click they can access the Adobe menu.
    It's these that I'd like to inhibit them doing.
    Thanks
    Andy
    Attachments:
    Display PDF 7.1.vi ‏98 KB

  • Overlay an item over an activex control and/ or disabling the mouse scroll wheel

    There seems to be several references in the discussion forum to placing a picture control over an activex item to prevent the activex item being selected etc.
    The thing is, I can't seem to do it: the activex control is always on top, no matter what I do and no matter what control, or decoration I use.
    What am I doing wrong?
    Failing that, is there another way of stopping the user getting access to the activx control?
    Essentially what I want to do is stop them accidentally scrolling through the control's pages with the mouse scroll wheel. I've stopped them accessing the scroll bars, BUT it is still possible to use the scroll wheel unfortunately.
    Something else I tried was a tab control: placing the activex control on a page and then trying to make the page on top transparent. Needless to say that didn't work....
    Andy

    Important questions:
    What ActiveX control are you using?
    I'm using the PDF activex control to display a PDF on the front panel of my VI.
    What version of LabVIEW are you using?
     I'm using LabVIEW 7.1
    What "control pages" are you talking about?
    The pages of the PDF: it has several pages. If a mouse is held over it the user can scroll using the scroll wheel, or if they right click they can access the Adobe menu.
    It's these that I'd like to inhibit them doing.
    Thanks
    Andy
    Attachments:
    Display PDF 7.1.vi ‏98 KB

  • Is it possible to Override Flex Default behaviour of loading Images on mouse scroll over ??

    Hi ,
    I am displaying Images on to a DataGrid .
    This works fine .
    My question is that  ,  Flex 3 is not loading all the Images at once , its loading Sometimes on mouse scroll down on a
    browser and sometimes on Mouse down .
    I dont want to have this behaviour , is it possible to override such behaviour and load all the Images at once ??

    Hi,
    What has been going wrong with your post ? You can use external USB sound card for your laptop. Here are few of them:
      http://www.shopbot.com.au/external-sound-card-usb/​price/australia/582295
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • My Rocketfish wireless mouse scrolls fine on other browsers but I can't on Firefox. Any help is appreciated as I really want to use Firefox but need the scroll function. Thanks.

    Question
    My Rocketfish 2.4ghz wireless mouse scrolls fine on other browsers but I can't on Firefox. Any help is appreciated as I really want to use Firefox but need the scroll function. Thanks

    Had this problem for quite a while but found a work-a-round. I click anywhere in the text I want to delete and insert any character. I am then able to block and delete any text I want to. It's been working great.

  • Spice on KVM, mouse scrolling no longer works

    Hi,
    Using a redhat workstation, I have installed archlinux on KVM using virt-manager, set the display to spice and video to qxl. On the guest arch linux, I have installed from AUR xf86-video-qxl and spice-vdagent.  So far so good.  However,  scrolling using the wheel mouse does not work anymore when the spice-vdagentd is running.  If I stop spice-vdagent, scrolling works again.
    Anybody have a workaround with spice-vdagent and mouse scrolling?
    Thanks in advance.

    It probably needs a clean the instructions are at
    http://docs.info.apple.com/article.html?artnum=302417
    I clean the scroll ball about every 4 weeks or so
    chris

  • Why does the mouse scroll no longer work in Firefox 4?

    I upgraded to Firefox 4 and suddenly my mouse scroll no longer works. It works fine for other programs and IE also Chrome, just not Firefox 4. How do I fix this? If this cannot be fixed, how can resort back to the old version?

    Spoke too soon. It worked fine for 10 minutes then died again. Closed and re-opened Firefox and it's working again. If this keeps up I will end up back with Chrome or IE. Way too inconvenient for me to stay with a browser and lose this functionality.

  • Mouse scroll wheel do not command Photoshop input fields correctly

    Hi guys,
    Some general info:
    1. I have Logitech Keyboard K800 - it have its own receiver
    2. I have Logitech Mouse (MX1100) - it have its own receiver
    3. Photoshop CS6 x64 - latest updates
    4. Windows 7 x64 - latest updates
    5. SetPoint - latest version
    6. More about the system (please let me know if I have to post all the text from Photoshop System Info popup):
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 3410 MHz
    Built-in memory: 16342 MB
    Free memory: 9098 MB
    Memory available to Photoshop: 14718 MB
    Memory used by Photoshop: 90 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GTX 560/PCIe/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1050, right: 1680
    Video Card Number: 1
    Video Card: NVIDIA GeForce GTX 560
    OpenCL Version:
    Driver Version: 9.18.13.1090
    Driver Date: 20121229000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 1680 x 1050 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GTX 560
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: 92298292820550253494
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\kckfm\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      F:\, 685.6G, 198.8G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Some other info:
    You  know that you can control Photoshop input fields http://screencast.com/t/ApVseKYRxz with the mouse scroll wheel. Pretty handy indeed. You just have to click on the field and spin the wheel and values changing.
    The problem:
    My mouse wheel cannot control the input fields in this way. I select the field, spin the wheel and nothing happen. When I spin it faster a couple of times, than the values get changing - pretty strange ha? Scrolling normally - do not change, scrolling fast change. But to scroll fast is not an option because I cannot change the values slightly with small increments... There is a bug really...
    What I tried and didn't work:
    1. Restarted Photoshop
    2. Plug/Unplug and change different USB slots for both receivers.
    3. Reintalling latest SetPoint Drivers (after uninstall I run ccleaner)
    4. Put all SetPoint settings to defaults (because I programmed some mouse keys to Photoshop specifically).
    5. Install earlier versions of SetPoint drivers.
    6. Set my UEFI BIOS to defaults.
    7. Restarted the BIOS to load all the drivers again, but still no luck
    (the last think I didn't do is to reinstall Photoshop)
    What I have investigated so far:
    1. When I restart the computer and run Photoshop it works perfect HA! , but after a seconds it do not words again ...
    2. When I stop SetPoint software, when I shut down it, it words perfect.
    3. When I unplug keyboard receiver it words perfect, but I do not have keyboard:)
    4. Everything works perfect in Illustrator and After effects.
    5. Also I noticed that when I scroll images in CameraRaw - http://screencast.com/t/xKnn6cY9 the I have to scroll harder and spin the wheel harder to scroll - the same problem.
    6. Also in photoshop and bridge scrolling here - is pretty smooth and works perfect - http://screencast.com/t/75IXMG6Zria
    Maybe the most important part - When I start experiencing the problem:
    I had same configuration , same everything and everything worked fine.
    I installed SSD disk, reinstalled Windows (same like before), updated my BIOS to UEFI. Installed Photoshop and SetPoint and problem started.
    Posted same request to Logitech, but want to ask you for help too.
    Thanks!

    Hi all,
    I found a solution.
    1. Uninstall your current Setpoint Driver.
    2. Run CCleaner - http://www.piriform.com/ccleaner
    3. Download an older version of SetPoint - http://www.oldapps.com/setpoint.php
    (I used SetPoint 6.15 (x64), I tried 6.20, 6.32, 6.50 , but no luck)
    4. Now everything is all right!
    Thanks!
    Can somebody mark this as solved? Thanks!
    SK

Maybe you are looking for

  • Why won't the app store download apps to my i phone

    I just got an IPhone 4S and the app store won't let me download any apps. It keeps giving me an "Sorry your request can not be processed at this time." I keep signing in to my Apple ID account and still won't work. Need help!

  • Dreamweaver and Indesign won't open, Adobe Creative Suite 6 Design & Web Premium

    Installed Adobe Creative Suite 6 Design & Premium on MacBook Pro which uses OS X Version 10.9.5 with Intel Core i7. The Dreamweaver won't open at all, click on icon and nothing happens no response. InDesign Keeps showing an error code message when tr

  • Calculate a sum by date

    I had an Excelsheet imported in siena. First column is Date (01/01/2011 for example) - second column is a Value. For each day i have one row and each new day i add one value. (Date and Value) In siena i would like to calculate a sum from the beginnin

  • Russian pdf file

    Im using Adobe Reader X ver. 10.1.0 running on a windows xp sp3 - and have now discovered a problem, which actually has started a long tim ago, but only have com to my attention now.´ When opening a Russian pdf file - I can not read some of the conte

  • Usb port can't find hardware for ipod so won't show on itunes

    My computer says it the usb port for my ipod is unknown and won't show it on my my itunes so i can't add new music. I already installed the whole thing again but it still didn't work. Any ideas?