Go down, mouses

This is driving me crazy. My Mac Mighty Mouse (hardwired, not airborne, and not the new MagicMouse or whatever the digitally stimulated mouse is called) will NOT SCROLL DOWN.
It will scroll up and sideways. But it won't go down, like that evening sun, or whatever Elton John was singing about.
My iMac is 2 years old, and I'm now on my third mouse. The Original and Warranty Replacement 1 both had problems recording clicks and tracking; I'm on WR2 now.
With the last mouse and now with this one, after a while, the cursor on screen does not track downward when I spin the trackball. I've done all the tricks: used the black lint-free cloth, rolled it on a white piece of paper to dislodge anything, and cleaned it with alcohol. Often, when I turn the mouse over and roll it on the wheel, the cursor responds properly and without hesitation. but when I turn the mouse over and use my finger, nothing happens. [Don't get carried away with parallel interpretations: this isn't an entendre about other things!]
When I try to fix it, I make sure my hands are clean, I have just run the mouse through a bath of alcohol, and I often tap the mouse on its side to dislodge any small specks of dirt on the inside. The best that happens is that the cursor tracks properly for the first test or two, then stops tracking. As I said, it's still tracks properly in the other three directions, just not downward.
Is there some special kind of chiropractic therapy for this damned thing? Or do I need to turn it in for Warranty Replacement 3?
Thanks.

Michael,
It's just dirty, turn it over and rub it very vigorously on a piece of plain white paper for about 30 seconds. If it still isn't clean then repeat. You should do this about 1x a month just to keep the back cleaned up.
Regards,
Roger

Similar Messages

  • I use to be able to scale down objects highlted in box by clicking any corner holding down mouse and scaling down, that option is gone, is it an error on my settings or has that option been removed I now have to go to menu option click edit, then scale, a

    i use to be able to scale down objects highlted in box by clicking any corner holding down mouse and scaling down, that option is gone, is it an error on my settings or has that option been removed I now have to go to menu option click edit, then scale, and then manually have to scale down a percentage.

    Copy cat.

  • Iphoto ver 8.1.2 unable to open iphoto. can hold down mouse button and 1 page of iphoto will open. click anywhere on screen and iphoto closes

    Cannot open iPhoto. It's on the toolbar, but will not open. I can hold the mouse over the icon and hold the mouse button down and iPhoto will open to a thumbnail photo, but if I click anywhere on the page, iPhoto closes. iPhoto shows open on top of page, but practically all selectable items are gray.

    It sounds like the window might have slipped down below the Dock or similar. Try change your screen resolution and (SystemPreferneces -> Displays) and that should force it back into reach. The return the resolution to whatever it was.

  • Mouse Down ,Mouse Click conflict

    Dear Flexmasters ,
      I have a view component that I would like to be draggable when the mouse is held down ,  and dispatch an event when clicked ( single-click ).  However , when I go to drag and the mouse is released , a click event is dispatched.  Is there a way I can prevent the click event from being fired during a drag and drop operation ?  As always points WILL be awarded.
    Here is the code if you would like to see it.
                public function init():void
                     this.addEventListener(MouseEvent.MOUSE_DOWN , handleStartDrag );
                    this.addEventListener(MouseEvent.MOUSE_UP , handleStopDrag );
                    this.addEventListener(MouseEvent.CLICK , layerClick );
                private function handleStartDrag(event:MouseEvent):void
                     event.preventDefault();
                    var target:UIComponent = UIComponent(event.currentTarget);
                    target.startDrag(false);
                private function handleStopDrag(event:MouseEvent):void
                    event.preventDefault();
                    var target:UIComponent = UIComponent(event.currentTarget);
                    target.stopDrag();
                private function layerClick(event:MouseEvent):void
                    if(event.type == MouseEvent.CLICK )
                        var uiEvent:UIEVENT = new UIEVENT(UIEVENT.LAYERSELECTED);
                        uiEvent.layer = layer;
                        dispatchEvent( uiEvent );

    I overrided the MouseEvent and Group classes to differenciate the MouseEvent.CLICK and MouseEvent.MOUSE_DOWN -> MouseEvent.MOUSE_UP
    utils.RealMouseEvent.as
    package utils
         import flash.events.MouseEvent;
         import flash.events.TimerEvent;
         import flash.geom.Point;
         import flash.utils.Timer;
         import settings.Settings;
         import spark.components.Group;
         [Event(name="realClick", type="utils.RealMouseEvent")]
         [Event(name="realMouseUp", type="utils.RealMouseEvent")]
         [Event(name="realMouseDown", type="utils.RealMouseEvent")]
         public class RealMouseEventsGroup extends Group
              public function RealMouseEventsGroup()
                   super();
                   _isTimeOut = false;
                   addEventListener(MouseEvent.MOUSE_DOWN,mouseDownHandler,false,1);
                   addEventListener(MouseEvent.CLICK,mouseClickHandler,false,1);
              public var stopPropagation:Boolean = false;
              private var _timer:Timer = new Timer(parseInt(Settings.getSetting("clickDelay")),1);
              private var _mouseMoveTolerance:Number = parseInt(Settings.getSetting("mouseMoveTolerance"));
              private var _isTimeOut:Boolean;
              private var _isMoved:Boolean;
              private var _event:MouseEvent;
              private var _lastMouseDownPt:Point;
              private function mouseDownHandler(event:MouseEvent):void{
                   _lastMouseDownPt = new Point(mouseX,mouseY);
                   _isTimeOut = false;
                   _isMoved = false;
                   _event = event;
                   addEventListener(MouseEvent.MOUSE_UP,mouseUpHandler,false,1);
                   addEventListener(MouseEvent.MOUSE_MOVE,mouseMoveHandler,false,1);
                   _timer.addEventListener(TimerEvent.TIMER_COMPLETE,clickTimeOut,false,1);
                   _timer.reset();
                   _timer.start();
                   if(stopPropagation)
                        event.stopPropagation();
              private function mouseUpHandler(event:MouseEvent):void{
                   if(_isTimeOut || _isMoved)
                        dispatchEvent(new RealMouseEvent(RealMouseEvent.REAL_MOUSE_UP,event));
                   removeEventListener(MouseEvent.MOUSE_MOVE,mouseMoveHandler);
                   _timer.stop();
                   if(stopPropagation)
                        event.stopPropagation();
              private function mouseClickHandler(event:MouseEvent):void{
                   if(!_isTimeOut && !_isMoved)
                        dispatchEvent(new RealMouseEvent(RealMouseEvent.REAL_CLICK,event));              
                   _timer.stop();
                   if(stopPropagation)
                        event.stopPropagation();
              private function mouseMoveHandler(event:MouseEvent):void{
                   var pt:Point = new Point(mouseX,mouseY);
                   if(Point.distance(_lastMouseDownPt,pt) > _mouseMoveTolerance){
                        _timer.stop();
                        dispatchEvent(new RealMouseEvent(RealMouseEvent.REAL_MOUSE_DOWN,_event));
                        removeEventListener(MouseEvent.MOUSE_MOVE,mouseMoveHandler);
                        _isMoved = true;
              private function clickTimeOut(event:TimerEvent):void{
                   _isTimeOut = true;
                   _timer.removeEventListener(TimerEvent.TIMER_COMPLETE,clickTimeOut);
                   removeEventListener(MouseEvent.MOUSE_MOVE,mouseMoveHandler);
                   dispatchEvent(new RealMouseEvent(RealMouseEvent.REAL_MOUSE_DOWN,_event));
    utils.RealMouseEventsGroup.as
    package utils
         import flash.display.InteractiveObject;
         import flash.events.MouseEvent;
         public class RealMouseEvent extends MouseEvent
              public static const REAL_CLICK:String = "realClick";
              public static const REAL_MOUSE_DOWN:String = "realMouseDown";
              public static const REAL_MOUSE_UP:String = "realMouseUp";
              public function RealMouseEvent(type:String, src:MouseEvent, bubbles:Boolean=true, cancelable:Boolean=false)
                   super(type, bubbles, cancelable, src.localX, src.localY, src.relatedObject, src.ctrlKey, src.altKey, src.shiftKey, src.buttonDown, src.delta);
    exemple of use :
    <utils:RealMouseEventsGroup id="myGroup"                                         realClick="myGroup_realClickHandler(event)"                                        realMouseDown="myGroup_realMouseDownHandler(event)"                                        realMouseUp="myGroup_realMouseUpHandler(event)"/>

  • Mouse down & mouse down in one event

    I am trying to put a mouse down with a mouse down in the same event. The first mouse down is to control a graph and the second a table. When I add the second mouse down event the Graph mouse down doesn't work.
    What am I doing wrong>
    Paul Power
    I have not lost my mind, it's backed up on a disk somewhere

    By stopped working I mean a broken run arrow and disabled property nodes giving broken wires
    I have attached the xy graph code being used
    Paul Power
    I have not lost my mind, it's backed up on a disk somewhere
    Attachments:
    XY graph - closest point.vi ‏24 KB
    scatter plot.vi ‏27 KB

  • Path disappearing when holding down mouse

    Hello everyone!
    I have come across a quite irksome issue with Illustrator. It may be a matter of preferences, but I somehow doubt it.
    When I use the pen tool to create a new path, the path seems to disappear whenever I hold down the left mouse button to adjust the curve of the anchor point of just add a new one.
    Attached below is the picture of the problem, I sincerely hope someone will be able to help me since the issue has been draining the life out of me!
    Left: What the entire path looks like when i'm dragging out another point
    Right: what it looks like after I release left mouse button - I'd very much like for the entire path to appear during the entire creation process
    Thanks,
    Lunar Sky

    Yep, CS3 is the earliest version I have on this box and it works the same there.

  • Holding down mouse in Pen tool drops a new point

    I am using the pen tool to trace around an object that has curves. If I click and hold down my mouse for like a second, trying to figure out the best curvature, PS creates a new anchor point right there. This doesn't happen on my PC - only on my Mac. Not surprised there. Does anyone know why this may be happening. I know it seems like a small deal, but it's just another little glitch that seem to pop up more frequently on my Mac vs my PC. Thanks

    Mr. Katz was talking about the fact that there are two tools housed in the toolbox at the pen location: The Pen tool and the Freeform Pen tool. And if you happen to be using the latter, the options bar offers a toggle for magnetic operation. I was just making sure you were using the former.

  • IMac 21.5 inch mid 2011 white screen when I wake it,  holding down mouse button and sweeping the screen restores the desktop.  Any one else had this and what was the solution?

    When the Mac is awaken from sleep mode the screen is white.  I can hold the mouse button down and sweep the screen and the desktop reappears and everything works as normal..This just started and I am concerned that some hardware, video card or video memory is failing.  Has anyone else had this problem and what was the solution?

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem.  Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Right-click down mouse-move gives no onMouseMove event in Safari on  Mac

    I am trying to detect on-mouse-event in JavaScript, when the mouse is moving while the right-button is down in Safari on Mac. But it seems the onmousemove event is not fired.
    Note: I am able to detect the mouse move combined with right mouse down on windows event FF on Mac.
    To see also the following links to test:
    http://www.codelifter.com/main/javascript/capturemouseposition1.html
    http://www.webreference.com/programming/javascript/mk/column2/
    Thanks.
    Laine

    I figured that the form wasn't public, but I asked just in case.
    Yahoo in general is not very Mac-friendly, but still, what you are experiencing is not normal and must be very frustrating, especially when someone is looking over your shoulder (isn't that when computers act up the most?).
    Because the form works in Internet Explorer, the problem is not a general OS X problem, but if this is the only form that you have problems with in Safari, then my first guess is that the page the form is on is not written to the accepted standards for writing web pages. Safari is one of the least forgiving when it comes to bad or incorrect coding of web pages.
    If you have this problem on all or most forms, but things continue to work in Internet Explorer, then one thing I would try is to delete Safari's Preference file. I have seen all sorts of seemingly unrelated but Safari-specific problems arise when this file gets corrupted (which isn't often). The file is named com.apple.Safari.plist. Not all problems are caused by a bad preference file, so this procedure may not work.
    First quit Safari. You can copy the file name (com.apple.Safari.plist), click on the Spotlight icon in the upper right of your screen, and paste it in the search box. One entry should be found. If you click on "Show All" in the results window, a larger Spotlight window will appear and you can drag com.apple.Safari.plist to the Trash from that window. You will loose any changes you have made in Safari's Preferences and a new one will be created when you restart Safari.
    You might want to consider Firefox as an alternate browser. Internet Explorer is now longer being updated or developed and is now behind the times and renders many pages poorly.

  • Disc stuck in drive, holding down mouse button doesn't work!

    My G4 is very ill, and there is a DVD stuck in the drive. Normally, I would hold down the mouse button while restarting, but my startup sequence is quitting before the G4 reboots. How can I manually remove the disc, so that I can run some diagnostics off of a startup disc?

    Push harder.
    If that doesn’t work, look at these links:
    Ejecting media in Mac OS X: Removing 'stuck' CDs/DVDs http://www.macfixit.com/article.php?story=20041011075232575
    PowerPC-based Macintosh: How to eject a disc when other options don't work
    http://docs.info.apple.com/article.html?artnum=106752
     Cheers, Tom

  • How to use touch start, touch move, mouse down, mouse move to move elements in edge

    How to use touch move and mouse move events events to move elements n edge?

    Here is my code for a vertical carousel for mouse and touch interaction.  it's not perfect, but it does the job.  change from Y to X for horizontal path.  past at Stage.compositionready event.
    // these are my elemens
    var temp1 = sym.getSymbol("vmenu2").$("tvchannels").position().top;
    var temp2 = sym.getSymbol("vmenu2").$("videosondemand").position().top;
    var temp3 = sym.getSymbol("vmenu2").$("radiochannels").position().top;
    var temp4 = sym.getSymbol("vmenu2").$("music2").position().top;
    var temp5 = sym.getSymbol("vmenu2").$("info").position().top;
    var temp6 = sym.getSymbol("vmenu2").$("vrtour").position().top;
    var temp7 = sym.getSymbol("vmenu2").$("weather").position().top;
    var temp8 = sym.getSymbol("vmenu2").$("clock").position().top;
    var temp9 = sym.getSymbol("vmenu2").$("settings").position().top;
    var tempa = sym.getSymbol("vmenu2").$("tvchannels").height();
    var tempb = 200;
    var tempdiff = temp2 - temp1;
    var y1=0;
    var y2=0;
    var t = 0;
    $(document).bind("touchstart", function(e) { 
      e.preventDefault(); 
      y1 = e.originalEvent.touches[0].pageY;
      temp1 = sym.getSymbol("vmenu2").$("tvchannels").position().top;
      temp2 = sym.getSymbol("vmenu2").$("videosondemand").position().top;
      temp3 = sym.getSymbol("vmenu2").$("radiochannels").position().top;
      temp4 = sym.getSymbol("vmenu2").$("music2").position().top;
      temp5 = sym.getSymbol("vmenu2").$("info").position().top;
      temp6 = sym.getSymbol("vmenu2").$("vrtour").position().top;
      temp7 = sym.getSymbol("vmenu2").$("weather").position().top;
      temp8 = sym.getSymbol("vmenu2").$("clock").position().top;
      temp9 = sym.getSymbol("vmenu2").$("settings").position().top;
      t = 1;
    $(document).bind("touchend", function(e) { 
      e.preventDefault(); 
      t = 0;
    $(document).bind("touchmove", function(e) { 
      e.preventDefault(); 
      //var x = e.originalEvent.touches[0].pageX;
      y2 = e.originalEvent.touches[0].pageY;
      //sym.getSymbol("vmenu2").$("tvchannels").css({top: y, left: x}); 
      if (t==1) {
        var y = y2 - y1; 
        var top1 = temp1 + y + tempdiff;
        var top2 = temp2 + y + tempdiff;
        var top3 = temp3 + y + tempdiff;
        var top4 = temp4 + y + tempdiff;
        var top5 = temp5 + y + tempdiff;
        var top6 = temp6 + y + tempdiff;
        var top7 = temp7 + y + tempdiff;
        var top8 = temp8 + y + tempdiff;
        var top9 = temp9 + y + tempdiff;
        if (top1<10) {
          if (top9>250) {
            sym.getSymbol("vmenu2").$("tvchannels").css({top: top1}); 
            sym.getSymbol("vmenu2").$("videosondemand").css(); 
            sym.getSymbol("vmenu2").$("radiochannels").css();
            sym.getSymbol("vmenu2").$("music2").css();
            sym.getSymbol("vmenu2").$("info").css();
            sym.getSymbol("vmenu2").$("vrtour").css();
            sym.getSymbol("vmenu2").$("weather").css();
            sym.getSymbol("vmenu2").$("clock").css();
            sym.getSymbol("vmenu2").$("settings").css();
    var d = 0;
    $(document).bind("mousedown", function(e) { 
      e.preventDefault(); 
      y1 = e.pageY;
      temp1 = sym.getSymbol("vmenu2").$("tvchannels").position().top;
      temp2 = sym.getSymbol("vmenu2").$("videosondemand").position().top;
      temp3 = sym.getSymbol("vmenu2").$("radiochannels").position().top;
      temp4 = sym.getSymbol("vmenu2").$("music2").position().top;
      temp5 = sym.getSymbol("vmenu2").$("info").position().top;
      temp6 = sym.getSymbol("vmenu2").$("vrtour").position().top;
      temp7 = sym.getSymbol("vmenu2").$("weather").position().top;
      temp8 = sym.getSymbol("vmenu2").$("clock").position().top;
      temp9 = sym.getSymbol("vmenu2").$("settings").position().top;
      d = 1;
    $(document).bind("mouseup", function(e) { 
      e.preventDefault(); 
      d = 0;
    $(document).bind("mousemove", function(e) { 
      e.preventDefault(); 
      //var x = e.originalEvent.touches[0].pageX;
      y2 = e.pageY;
      //sym.getSymbol("vmenu2").$("tvchannels").css({top: y, left: x}); 
      if (d==1) {
        var y = y2 - y1; 
        var top1 = temp1 + y + tempdiff;
        var top2 = temp2 + y + tempdiff;
        var top3 = temp3 + y + tempdiff;
        var top4 = temp4 + y + tempdiff;
        var top5 = temp5 + y + tempdiff;
        var top6 = temp6 + y + tempdiff;
        var top7 = temp7 + y + tempdiff;
        var top8 = temp8 + y + tempdiff;
        var top9 = temp9 + y + tempdiff;
        if (top1<10) {
          if (top9>250) {
            sym.getSymbol("vmenu2").$("tvchannels").css({top: top1}); 
            sym.getSymbol("vmenu2").$("videosondemand").css(); 
            sym.getSymbol("vmenu2").$("radiochannels").css();
            sym.getSymbol("vmenu2").$("music2").css();
            sym.getSymbol("vmenu2").$("info").css();
            sym.getSymbol("vmenu2").$("vrtour").css();
            sym.getSymbol("vmenu2").$("weather").css();
            sym.getSymbol("vmenu2").$("clock").css();
            sym.getSymbol("vmenu2").$("settings").css();

  • Duplicate Pannning With Mouse Wheel Down + Mouse Move to Pan Vision Image

    I am trying to duplicate an image panning operation using the middle mouse scroll wheel depressed while moving the mouse.
    Code is pretty simple, but pan occurs in opposite direction of normal pan and opposite to direction of mouse.  I have tried a number of options to try to reverse this but none successful. 
    Thoughts?
    Thanks for looking.
    Don
    Attachments:
    test_mouse_pan.vi ‏50 KB

    Hello!
    From testing the code, it behaves as I would expect? The default behavior for pan is to sort of "drag" the image to you. If you want the opposite behavior, you could manipulate the output of Last Mouse Position.
    Rahul B.
    Applications Engineer
    National Instruments

  • Hi. Having trouble getting the superdrive on my daughters circa 2009 mac mini to eject discs.  Even the 'hold down mouse button on restart' trick isn't working now and there's a disc stuck in the drive. Anyone out there with a fix? Here's hoping :-)

    It doesn't seem to matter whether it's a DVD or a CD it just won't eject :-(

    Is there a very small pin hole, just inside the drive opening on the right? If true, you can very gently press the tip of a paperclip into this hole (with the machine on) to eject the disk.
    With the mini off. Turn it upside down and thunk the bottom with your hand a couple of times. This may dislodge that stuck drive sufficiently to allow normal eject.
    It may be possible to (again gently) pry up on an edge of that stuck disc with an old, unused credit card.
    If you made it this far, better make an appointment with an Apple store to have the drive removed, disassembled, and reinstalled. If you go this route, might as well upgrade the memory too if it needs it.

  • New ProRet: Slow when shutting down, mouse freezes

    Hello everyone, I'm new here so welcome any suggestions if I'm doing something wrong. This is my first mac, I've always only used Windows.
    My notebook is a Mbook Pro Retina 13inch mid-2014 (bought in Nov). Running OS X 10.9.5. Memory is 8GB and storage is 121GB (currently 75GB free), it only has the applications and the odd Word file, for itunes library and pictures we use an external hard drive.
    I don't think I've done anything too bad to it, but I did install a couple of applications a few days before the computer started to go funny: Popcorn Time, but deleted it after 2 days. Then it went a little bit slow so I downloaded and installed CCleaner for Mac and ESET Cyber Security, in case Popcorn Time had virus or malware, but nothing came up in the virus check.
    Up until last week, it was running okay, very fast turning on and shutting down, no freezing, no spinning beach ball. But last week, the display went distorted for under a minute (gave me time to take the picture I'm attaching) and since then, every time I shut it down, it takes longer than normal and shows a spinning wheel on a white background. Yesterday, the first episode of non-appearing pointer happened but very briefly, only a few seconds. However, today I was busy typing on Microsoft Word and when tried to use the trackpad, the pointer wasn't there, never appeared again, I could no longer even type anything and neither F4 or F3 responded. Tried Command+Option+Esc and nothing. Pressed shut down button for 3 seconds but the pointer didn't respond to click on any of the options, so had to force shut down with the button. Now I'm scared this will happen again and I will have to force shut down more than is safe.
    In case it's relevant, we use the HDMI connection a lot to watch movies on a TV and the display does sometimes move around or briefly show horizontal line but I assume it's normal when plugging in a hdmi cable.
    Does anyone have any idea why this could be happening and is there a way to find out what is wrong with it? I wasn't expecting to have problems so early on with a macbook :/
    Any ideas will be most welcome (I've no idea about changing system settings or the like).
    Thank you

    The picture you have included in your post looks like your Mac may be having some kind of hardware graphics problem. (It's definitely not caused by a virus!)
    I'd recommend making an appointment at the Genius Bar at your nearest Apple Store and have the techs run some diagnostics. Be sure to show them that picture as well, assuming the machine doesn't exhibit the symptoms during your appointment.

  • NOTHING will allow me to mouse wheel scroll through fonts in CS6

    OMG, I am about to have a coronary trying to find fonts!  I have looked on this forum for an answer that works and cannot find anything thus far.  First, WHY is it necessary for CS6 font list in the Character Pallet to take up 1/2 of my screen?!  Second, do i REALLY have to click the little arrows at the top and bottom of the font list to scroll through fonts, ONE.BY.ONE?  Typing the first letter does not work either, it takes me to say the "D" fonts but when i click the drop down arrow to see my list of "D's", it shows a list from the top, not the D section.  I REALLY hope I am missing something here, because seriously, this is totally unusable.
    ETA:  Going to the TYPE>FONT menu at the top does not scroll either and Photoshop CS6 works beautifully...
    ETA (again):  i CAN scroll through the menu on the top (under the FILE-EDIT-etc menus), but there is no font preview (and it is selected as med in preferences)

    Thank you for the reply.  System is a fairly new Windows 7, 64 bit, plenty of RAM, hard drive space, i5 dual core processor.  To have this issue in Illustrator only and not in Photoshop seems less likely a software conflict (just guessing)?  I attached screen shots.
    Character Pallet drop down (mouse wheel, keyboard arrows, typing a letter key...all do nothing)  Only way to navigate is by hitting the little arrows on the top/bottom of the drop down.  And no scroll bar?
    Top Menu Drop Down - scrolls, hit a letter key and works, arrow keys work.  Could use this permanently, but there is no font preview..
    All of what you said works on your system, is how I would expect it to be programmed.  Partially making sure this is not the way it was designed, and hoping to find a fix for why its not working correctly.
    Main programs installed:
    Firefox
    MS Office 2007
    quickbooks
    CS3 Design suite (I JUST upgraded to CS6 and have kept it there for a backup...probably can uninstall now if that could be an issue)
    Thank you for any advice and if you would like to upload the video, that would be great.

Maybe you are looking for

  • Alphabetically ordering a Linked List

    Would anyone please be able to give me help in ordering a linked list alphabetically. I'm new to java so please be gentle. Many thanks in advance.

  • ITS and SSL- how do I make this work?

    We have several systems running ITS 6.20 on Windows 2003 Servers. The systems also use Requisition web site pages for SRM, IPC, and Siteminder. When someone logs in with our normal URL, Siteminder itself runs them through a secure link and into the a

  • How can I edit items in a listbox?

    What I need to do is:  when the user clicks the 'edit' button, it should reference the listbox to ensure an item was selected.  So, if an item is selected, I need to store the item to a string variable. Next, the user should be able to use a textbox

  • Pass word for Apple ID not accepted in Newstand?

    Help! I changed my password for Apple ID and had no problem using it to purchase items in ITUNES. However when attempting to puchase magazines through APPs and newstand it is not accepting the same password. States not regonised for the same user nam

  • OSX 10.8.2 will not airplay to airport express

    I am running 10.8.2 on my Late 2011 Macbook and a MacMini (2013).  I have no problems viewing or accessing all of my airiplay devices within itunes.  However, I am unable to airplay (pandora) to the airport express devices only. I can stream to the a