Make mouse scroll map and not page when over map ?

Hi,
here is our code:-
scroll wheel works fine on screens where webpage has no scroll bar. On a 1024x768 res screen the webpage with map requires scroll bars at side, design beyond my control. This situation will no doubt occur regularly so ...
What needs changing to make it such that maps zooms when cursor over map, )page doesnt scroll) and page scrolls and map doesnt zoom when cursor off the map ?
scroll zoom code is in blue, I left in the entire code, incase stripping anything out took out something important, just playing safe really and time too short !
Envirographics.
// ******** Public vars ******** \\
// The percentage of the map to be shown
// Basically, it limits the width and height of the map (because of excess graphics)
// Change these values  to 1 if you see flickering of the map on the first zoom
var widthPercentage:Number = 1;
var heightPercentage:Number = 1;
// ******** Private vars ******** \\
var stageWidth:int = stage.stageWidth;
var stageHeight:int = Map_Collection.height;
//var Gmap:Sprite = new Map_Collection();
stage.addEventListener("enterFrame", OEF);
// The onEnterFrame script that runs every second
function OEF(event:Event):void
if (Map_Collection.x > 0)
  Map_Collection.x = 0;
else if (Map_Collection.x<-Map_Collection.width * widthPercentage + stageWidth)
  Map_Collection.x = -Map_Collection.width * widthPercentage + stageWidth;
if (Map_Collection.y > 0)
  Map_Collection.y = 0;
else if (Map_Collection.y<-Map_Collection.height * heightPercentage + stageHeight)
  Map_Collection.y = -Map_Collection.height * heightPercentage + stageHeight;
// Make the routes not visible
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
// Add listeners
Button41.addEventListener(MouseEvent.CLICK, hideShow41);
Button42.addEventListener(MouseEvent.CLICK, hideShow42);
Button43.addEventListener(MouseEvent.CLICK, hideShow43);
Button71.addEventListener(MouseEvent.CLICK, hideShow71);
Button351.addEventListener(MouseEvent.CLICK, hideShow351);
Button375.addEventListener(MouseEvent.CLICK, hideShow375);
Button388.addEventListener(MouseEvent.CLICK, hideShow388);
Button389.addEventListener(MouseEvent.CLICK, hideShow389);
Button395.addEventListener(MouseEvent.CLICK, hideShow395);
Button521.addEventListener(MouseEvent.CLICK, hideShow521);
Button526.addEventListener(MouseEvent.CLICK, hideShow526);
Button540.addEventListener(MouseEvent.CLICK, hideShow540);
Button545.addEventListener(MouseEvent.CLICK, hideShow545);
Button562.addEventListener(MouseEvent.CLICK, hideShow562);
ButtonCycleRouteOffRoad.addEventListener(MouseEvent.CLICK, hideShowCycleRouteOffRoad);
ButtonCycleRouteFootwayMethod2.addEventListener(MouseEvent.CLICK, hideShowCycleRouteFootwayMethod2);
function hideShow41(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_41.visible =!Map_Collection.BusRoute_41.visible;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow42(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_42.visible =!Map_Collection.BusRoute_42.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow43(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_43.visible =!Map_Collection.BusRoute_43.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow71(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_71.visible =!Map_Collection.BusRoute_71.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow351(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_351.visible =!Map_Collection.BusRoute_351.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow375(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_375.visible =!Map_Collection.BusRoute_375.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow388(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_388.visible =!Map_Collection.BusRoute_388.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow389(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_389.visible =!Map_Collection.BusRoute_389.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow395(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_395.visible =!Map_Collection.BusRoute_395.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow521(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_521.visible =!Map_Collection.BusRoute_521.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow526(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_526.visible =!Map_Collection.BusRoute_526.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow540(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_540.visible =!Map_Collection.BusRoute_540.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow545(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_545.visible =!Map_Collection.BusRoute_545.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShow562(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.BusRoute_562.visible =!Map_Collection.BusRoute_562.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShowCycleRouteOffRoad(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.CycleRouteOffRoad.visible =!Map_Collection.CycleRouteOffRoad.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteFootwayMethod2.visible=false;
function hideShowCycleRouteFootwayMethod2(event:MouseEvent):void {
// instead of white_cat.visible = false; we just switch it to the opposite
Map_Collection.CycleRouteFootwayMethod2.visible =!Map_Collection.CycleRouteFootwayMethod2.visible;
Map_Collection.BusRoute_41.visible=false;
Map_Collection.BusRoute_42.visible=false;
Map_Collection.BusRoute_43.visible=false;
Map_Collection.BusRoute_71.visible=false;
Map_Collection.BusRoute_351.visible=false;
Map_Collection.BusRoute_375.visible=false;
Map_Collection.BusRoute_388.visible=false;
Map_Collection.BusRoute_389.visible=false;
Map_Collection.BusRoute_395.visible=false;
Map_Collection.BusRoute_521.visible=false;
Map_Collection.BusRoute_526.visible=false;
Map_Collection.BusRoute_540.visible=false;
Map_Collection.BusRoute_545.visible=false;
Map_Collection.BusRoute_562.visible=false;
Map_Collection.CycleRouteOffRoad.visible=false;
/* ----- Change cursor form
add a hand to cursor to the Map_Collection
This way a user understands that he/she can do something with the object.
Map_Collection.buttonMode = true;
/* ---- dragging ---- */
Map_Collection.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
Map_Collection.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
function startDragging(event:MouseEvent):void {
Map_Collection.startDrag();
function stopDragging(event:MouseEvent):void {
Map_Collection.stopDrag();
/* ---- Zooming in with the scroller ---- */
Map_Collection.addEventListener(MouseEvent.MOUSE_WHEEL, Zooming)
const mod = 25
var MyMapWidth=Map_Collection.width
var MyMapHeight=Map_Collection.height
function Zooming(event:MouseEvent):void {
Map_Collection.scaleX += event.delta / mod
Map_Collection.scaleY += event.delta / mod
Map_Collection.x = ((2 * mouseX) - (2 * (event.localX * Map_Collection.scaleX))) / 2;
Map_Collection.y = ((2 * mouseY) - (2 * (event.localY * Map_Collection.scaleY))) / 2;
  if (Map_Collection.width < MyMapWidth) {
    Map_Collection.width = MyMapWidth
    Map_Collection.height = MyMapHeight
    Map_Collection.x = 0
    Map_Collection.y = 0
    return;
plusBtn.addEventListener("click", plusBtnFtn);
negBtn.addEventListener("click", negBtnFtn);
// Buttons to zoom in and out of the map
function plusBtnFtn(event:Event):void
  var lHeight:int = Map_Collection.height;
  var lWidth:int = Map_Collection.width;
  Map_Collection.scaleX = Map_Collection.scaleY = Map_Collection.scaleY + 0.5;
  Map_Collection.x += (lWidth - Map_Collection.width) * 0.5;
  Map_Collection.y += (lHeight - Map_Collection.height) * 0.5;
function negBtnFtn(event:Event):void
  var lHeight:int = Map_Collection.height;
  var lWidth:int = Map_Collection.width;
  Map_Collection.scaleX = Map_Collection.scaleY = Map_Collection.scaleY - 0.5;
  Map_Collection.x -= (Map_Collection.width - lWidth) * 0.5;
  Map_Collection.y -= (Map_Collection.height - lHeight) * 0.5;
   if (Map_Collection.height < MyMapHeight) {
    Map_Collection.width = MyMapWidth
    Map_Collection.height = MyMapHeight
    Map_Collection.x = 0
    Map_Collection.y = 0
    return;

Hi,
Off map, only page scrolls, on map page scrolls and map zooms at the same
time, then when page cannot scroll any more, just the map zooms.
Envirographics

Similar Messages

  • How to make google come up and not yahoo when i click anew tab

    how to make google come up and not yahoo when i click a new tab
    == This happened ==
    Every time Firefox opened
    == today

    You can use 1 of these add-ons
    [https://addons.mozilla.org/en-us/firefox/addon/newtaburl/?src=search
    NewTabURL ]
    [https://addons.mozilla.org/en-us/firefox/addon/new-tab-homepage/?src=search New Tab Homepage]
    with NewTabUrl you have more options
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • Why does my login screen when scrolling mouse over appear pixalated (has small squares wherver the mouse scrolls until the entire page has been scratched like a lotto ticket:) ?

    Why does my login screen when scrolling mouse over appear pixalated (has small squares wherver the mouse scrolls until the entire page has been scratched like a lotto ticket:) ?

    OS X Lion: Login window partially appears, cursor movement redraws screen

  • My mouse scroll ball will not scroll down.

    My mouse scroll ball will not scroll down.

    Unfortunately the Mighty Mouse is known to have issues when scrolling if it gets dirty. The best you can do is hold it upside down and roll the ball back and forth in every direction for a minute or so, this should help clean it any it may start working again. My school's multimedia lab has 20 workstations that all have that mouse and about half of them work! I'd recommend moving to the magic mouse or another brand's mouse if cleaning does not fix it.

  • The photos that I better (improves automatic) are saved on the iphone, but when I transfer them to my PC improvements appear no more, only on iphone. I do not understand why the improvements are just the iphone, and not continue when I transfer the photos

    The photos that I better (improves automatic) are saved on the iphone, but when I transfer them to my PC improvements appear no more, only on iphone. I do not understand why the improvements are just the iphone, and not continue when I transfer the photos to my PC.
    Thanks.

    Chicky, I have searched my computer for "iPod Photo Cache" and 51 folders pop up, plus 3 files (iPodInfo.plist, Photo Database and Image DB Temp.tmp). How do I know which to delete and which to keep? The Apple website page tackling this issue doesn't go into any detail. Thanks yet again.

  • Is there going to be an update to iTunes Radio that would make it available worldwide and not just U.S. only?

    Is there going to be an update to iTunes Radio that would make it available worldwide and not just U.S. only?

    Hi Laura.
    We're constantly improving HP Photo Creations and we welcome constructive suggestions. Can you provide more detail on the features you want and how you would use them?
    Thank you,
    RocketLife
    RocketLife, developer of HP Photo Creations
    » Visit the HP Photo Creations Facebook page — news, tips, and inspiration
    » See the HP Photo Creations video tours — cool tips in under 2 minutes
    » Contact Customer Support — get answers from the experts

  • TS2662 my new magic mouse scrolling & swiping will not work

    my new magic mouse scrolling & swiping will not work. Help??

    I had this happen to me as well. just last week (july 28, 2014) I brought my magic mouse from home to work since my work mouse was going south. paired it with bluetooth, it moved and clicked but no scroll or gestures. searched till I nearly ready to give up. then I installed USB overdrive. many forum posts said too remove that. I didn't have it, so I installed it. and then un-installed it.  everything works great now.
    hope this helps someone.

  • Mighty mouse scrolls down but not up

    why is my mighty mouse scrolling down but not up on my browsers?

    Usually it is accumulated crud: skin oils and flakes of skin and dirt, but some have been accepted for repair by Apple. Occasionally a restart fixes the problem. If not there was a recent discussion that yielded several promising suggestions:
    http://discussions.apple.com/message.jspa?messageID=2248877#2248877
    These included cleaning the ball with a soft cloth, cleaning the ball with a baby wipe, and disassembling the mouse to thoroughly clean the interior.

  • How can I get my MacBook to stay on and not sleep when lid is closed?

    How can I get my MacBook to stay on and not sleep when lid is closed?

    try this: http://www.macupdate.com/app/mac/37991/nosleep

  • My iphone 4 is not being detected by any of my computers and not charging when connected to any computer.  It will, however, charge to the car or wall.  The only change that I can think of is that I downloaded a podcast from itunes directly from my phone.

    My iphone 4 is not being detected by any of my computers and not charging when connected to any computer.  It will, however, charge to the car or wall.  The only change that I can think of is that I downloaded a podcast from itunes directly from my phone.  I've since deleted this podcast with no luck.  I've restarted both the phone and the computer, still no luck.  One computer is running Vista and the other Windows 7, both have the latest Itunes Update.  Anyone have a fix for this?

    You clearly did not notice that you have joined a USER TO USER COMMUNITY FORUM
    This is NOT Apple ,Apple do not read nor do they  therefore respond
    So if you would like to wind your neck in ........................
    try a reset of iPhone and then a restore,best, as new and if it then functions correctly try restoring with your backup

  • Can iTunes open and not iPhoto when iPhone connected?

    When I connect my iPhone 5 to my iMac, iPhoto opens and I have to manually open iTunes. Is it possible to have iTunes open automatically and not iPhoto when I connect the iPhone?

    Go to preferences of each program and set it up however you like.

  • How do I let lightroom show the actrual number of files in a map and not a number including the total of all submaps?

    How do I let lightroom show the actrual number of files in a map and not a number including the total of all submaps?

    If by "map" you mean directory or folder, in the Library menu there is a toggle for "show photos in subfolders".

  • How can i get my macbook pro too stay on and not sleep when lid is closed?

    how can i get my macbook pro too stay on and not sleep when lid is closed?

    If the machine is asleep, lid closed, and you plug in to an external monitor and an external USB keyboard, the machine will wake, anbd reconfigure the screen resolution for the external monitor, Once it has made this configuration change, you can open the lid and it will continue to address only the external monitor.  At least that's how my early MacBook Pro unibody 13" works. It seems to run a bit cooler this way. It gets quite toasty with the lid closed while doing anything demanding and you are more likely to hear the fan come on.  I have not seen any temps that would cause alarm, but I do get a high speed (6000 rpm), noisy fan sometimes with the lid closed, .
    If you operate in the open-lid, external monitor only mode, if you deactivate the monitor for any reason, when it reactivates it will be running both screens, with all the navigation hassles this entails, so I generally set it not to deactivate the screen when in this mode.
    Thus I agree with those who say that some of the cooling air is drawn in around the keyboard, the difference in cooling performance is observable.  If you activate istat pro, get the computer hot running in clamshell mode, and open the lid, you can watch the CPU temp drop by a few degrees C within a couple minutes.  It isn't a huge difference, but enough the lower the fan speeds.

  • From time to time Firefox will not allow me to scroll down a web page, when I scroll down it will jump right back to the top of the web page. Any ideas?

    Sometimes when on firefox when I try to scroll down a web page it will immediately jump right back to the top of the web page as soon release the mouse button. When it starts happening it will do this on all open tabs on all web sites.
    Just closing Firefox and reopening it does not help, only way I have found to fix this is to reset my computer.

    Try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    *https://hacks.mozilla.org/2010/09/hardware-acceleration/
    *https://support.mozilla.org/kb/how-do-i-upgrade-my-graphics-drivers
    You can check for problems caused by a recent Flash 11.3 update and possibly downgrade to Flash 11.2 or 10.3.
    *https://support.mozilla.org/kb/flash-113-doesnt-load-video-firefox
    *https://support.mozilla.org/kb/flash-113-crashes

  • Anyway to make mouse button 4 and 5 not go back and forward but still retain there functionality with other programs

    This has been brought up a few times but Mozilla refuses to add this functionality or to simply explain to us why they cant. And please do not tell me to just use X-Mouse Controls because there is absolutely no reason why this can't be done or explained to us.
    Don't really care if this counts as spam...this issue has been annoying since Ventrilo and Firefox has co-existed.
    Thank you, Have a nice day!

    You can't do this for Firefox without using X-Mouse Button Control AFAIK.<br />
    Firefox doesn't have support to change those mouse button actions and at least that program appears to work as reported by some.
    *[[/questions/685435]]
    *[[/questions/815957]]

Maybe you are looking for

  • Classic won't launch FCP 2.0 or DVDSP 1.0

    Yeah...I know spending the money on software upgrades would solve this problem, but until I win the Lotto, I have to get by with what I already have. Anyway, using the install disks to install the FCP 2.0 and DVDSP 1.0, I did not get the chance to pl

  • HP Envy merge C on MBR1 and D on MBR2

    I have an HP Envy 17 3D. The hard drive is partitioned into 2 MBR's.  MBR 1 has the C: & E: MBR 2 has the D: & F: I have Partition Master 9.2.2 Can I take some of the space off of Drive D: for Drive C:?  Partition Master says the drives need to be si

  • Running report in concurrent manager using unix shell script to create PDF

    Hi, I need help urgently, we are in the process of migrating from 10.7 to 11i. My problem is we have a report created in 10.7 that is ran through concurrent manager using shell scripts(host) and the output is stored as .pdf, in 10.7, it works perfect

  • How can I activate an old version of Dreamweaver on a new computer? (2004 version)

    I had Dreamweaver 2004 on my old laptop which recently crashed.  I need to transfer the program to my new computer.  Online activation has been shut down for this version.  How can I activate it?

  • Delete routing

    Dear all, can any one please show me how to delete routing permenently. thanks and regards irfan