How make mouse pointer active on any page

When my mouse pointer is on a page, I have to click on the page to get my mouse to scroll. Is there a way to have the pointer automatically activate the page by just being on the page?

The images in these screenshots are in grid, the album grid or the photo grid.
or the photo grid.
These images can't be hyperlinked in iWeb.

Similar Messages

  • How to substitute specific fonts on any page with corresponding fonts of my own choice?

    How to substitute specific fonts on any page with corresponding fonts of my own choice?
    I'm using Firefox 12 on Windows 7.
    Examples on what I want to be able to do:
    Change the font Arial on any page I visit, with Tahoma.
    Change the font Georgia on any page I visit, with Droid Serif.
    Change Arial Narrow on any page I visit, with Liberation Sans Narrow...
    I used to have a plug-in which did that. It was called Font Replacer, but it doesn't have a version for Firefox 12 and its developer removed its page :(
    I really can't stand to see specific fonts on my screen. I really hate the indifferent CAPITAL I from the small l. I can't stand to see the numerals with Georgia.

    I opened a [https://support.mozilla.org/en-US/questions/926833 new discussion] as no one is interested to answer me here anymore.
    Thanks.
    So, now I find myself in a situation that I want exceptions for some rules. For example, I want to change the font Arial to Tahoma in all websites I visit, except for wikipedia.org, is that possible? Because I have a very long list of websites listed to change Arial to change to Tahoma, only because I don't want the rule to be applied to websites as wikipedia.org
    I searched, but I'm unable to find something helpful :(

  • Make mouse pointer visible

    Is it possible to make the mouse pointer visible during a Keynote presentation? Sometimes I like to use to point to something or use tools like Scriboard to make annotations. I figured out that using Dashboard makes the mouse pointer visible but is there a better way?
    Mac Mini   Mac OS X (10.4.6)  

    In Keynote Preferences, in Slideshow, choose "Show pointer when mouse moves".

  • I downloaded latest versionof Firefox from Mozilla web page, I rebooted my computer. The update did not take effect. How make late version active ?

    My present version of Firfox is 3.5.15
    My Op. System is Linux Fedora version 12.
    Two days ago when I opened a file in a web search for Mercury Scientific Thermometers, the web page for NovaTech International-USA opened.
    Centered in the middle of the page was a screen message reading
    "Error: form not found." There's an X in the upper right corner of this small screen. There's an "OK" within the screen. Clicking on either of those optons does nto close the small screen. AND, clicking on any Menu
    choice at the top of the main screen produces no action. File Edit View History Bookmarks tools Help are all unresponsive. The screen is
    locked to the Cursor and Clicking any menu item. Tho' there are many choices on the Screen for various types of thermometers no choice responds to a click.
    I closed down the computer. ThenI did a Cold Boot. There was no
    change in the situation described above. The screen appeared again if
    I chose to open Firefox.
    I use 8 virutal screens. By which I mean I can have 8 screens open at a time. All 7 of my other available screens are perfectly active and perfectly normal in their behavior.
    Rebooting changes nothing---the unwanted frozen/locked screen appears again if I attempt to open Firefox.
    I opened the Firefox website. I soon found how to download the latest version of Firefox. But I used YUM to download it. Here is an excerpt of the Yum process:
    [William@WilliamsComputer ~]$ su
    Password:
    [root@WilliamsComputer William]# yum install firefox
    Loaded plugins: presto, refresh-packagekit
    adobe-linux-i386 | 951 B 00:00
    updates/metalink | 2.8 kB 00:00
    Setting up Install Process
    Resolving Dependencies
    --> Running transaction check
    ---> Package firefox.i686 0:3.5.15-1.fc12 set to be updated
    --> Processing Dependency: xulrunner >= 1.9.1.15 for package: firefox-3.5.15-1.fc12.i686
    --> Running transaction check
    ---> Package xulrunner.i686 0:1.9.1.15-1.fc12 set to be updated
    --> Finished Dependency Resolution
    Skipping here much of the YUM processing.
    Note the finishing YUM statement:
    Dependency Updated:
    xulrunner.i686 0:1.9.1.15-1.fc12 Complete!
    [root@WilliamsComputer William]# exit
    [William@WilliamsComputer ~]$
    I did a cold reboot of my computer.
    In the Downloads Folder The Firefox update appeared.
    But when I opened a Firefox page and clicked Help-About Firefox
    the version of Firefox was still 3.5.15 AND the unwanted, Locked,
    Frozen Novatech-International---USA Screen was still present and still
    locked.
    Please teach me the preferred way to Update Firefox and once the Updates have been downloaded, how do I activate those updates?
    Many, many thanks,
    William
    Florida

    It is possible that your security software (firewall, anti-virus) blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *https://support.mozilla.org/kb/fix-problems-connecting-websites-after-updating

  • 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

  • How to include private reports in any page for a websheet application

    Hi,
    i have created a websheet application, it has n number of data grids.
    For some data grids i had created reports, which got classified as private reports by default.
    i would like to display these reports in a page of my websheet application, when i create a new page i am unable to select any of the reports created by me. it only lists out primary report which is a public report.
    any help towards this would be of great help.
    thanks
    srinivas p

    Hello Ram,
    e-recruiting customizing is (in most areas) devided into a sap delivery table and a customer table. When opening the IMG you only find the customer table which is empty as long you have not done any customer configuration yet.
    The tables for startpage customizing (BSP) are named T77RCF_SP_*. The ones containing customer customizing contain a C in the name while the tables with the standard delivery are not. Example: customer table for start page groups T77RCF_SP_GROUPC, standard table T77RCF_SP_GROUP. Standard delivery content can be checked in SE11 or SE16.
    You should not change the standard table contents. It is better to customize your own startpages based on the sap delivery. I personally recomment not to use the sap standard Ids for customer own links, groups and startpages as they overrule the standard ones and you cannot display them later.
    To replace the icons on a standard page you should do the following steps:
    - get the groups for the standard startpage from table T77RCF_SP_ASID
    - get the links to each group from table T77RCF_SP_ASGRP
    - create your customer groups in IMG, use 9XXX ids but copy the information from the standard groups found in table T77RCF_SP_GROUP
    - adjust the ICON links
    - add the links to your groups (you use the standard links here as you do not change them)
    - create a customer startpage in IMG using 9XXX id. you can take the standard settings from table T77RCF_SP_ID
    - assign your customer groups to the customer startpage
    Best regards
    Roman

  • Are there settings on Adobe elements 8 for how your mouse pointer looks?

    I am using Windows 7 and have 3 pointers for my mouse icon on elements 8 and cannot figure out how to get rid of the extra 2. I cannot do much of anything with the program.

    You probably need to set the dpi scaling as per the directions here:
    (even though it mentions the organizer the same fix works for the triple cursor)
    http://helpx.adobe.com/photoshop-elements/kb/menus-missing-elements-8-9.html

  • Change the mouse pointer to an Hour glass

    hello,
    Could any one of you let me know how to make mouse pointer to an hour glass in swing application.
    Thanking you in advance..
    Ram

    Check out how I do this in my Draggable classs
    you are welcome to use and modify this class, but please don't change the package or take credit for it as your own work
    package tjacobs.ui;
    import java.awt.Component;
    import java.awt.Cursor;
    import java.awt.Dimension;
    import java.awt.Point;
    import java.awt.Window;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionListener;
    * tjacobs.ui.Draggable<p>
    * Makes a component draggable. Does not work if there's a layout manager
    * messing with things<p>
    * <code>
    *  usage:
    *                 Component c = ...
    *                 new Draggable(c);
    *                 parent.add(c);
    *  </code>
    public class Draggable extends MouseAdapter implements MouseMotionListener {
        Point mLastPoint;
        Component mDraggable;
        public Draggable(Component w) {
            w.addMouseMotionListener(this);
            w.addMouseListener(this);
            mDraggable = w;
         public Draggable(Window w, Component drag) {
              drag.addMouseMotionListener(this);
            drag.addMouseListener(this);
              mDraggable = w;
        public void mousePressed(MouseEvent me) {
              if (mDraggable.getCursor().equals(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR))) {
                   mLastPoint = me.getPoint();
              else {
                   mLastPoint = null;
         private void setCursorType(Point p) {
              Point loc = mDraggable.getLocation();
              Dimension size = mDraggable.getSize();
              if ((p.y + WindowUtilities.RESIZE_MARGIN_SIZE < loc.y + size.height) && (p.x + WindowUtilities.RESIZE_MARGIN_SIZE < p.x + size.width)) {
                   mDraggable.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
        public void mouseReleased(MouseEvent me) {
            mLastPoint = null;
        public void mouseMoved(MouseEvent me) {
              setCursorType(me.getPoint());
        public void mouseDragged(MouseEvent me) {
            int x, y;
            if (mLastPoint != null) {
                x = mDraggable.getX() + (me.getX() - (int)mLastPoint.getX());
                y = mDraggable.getY() + (me.getY() - (int)mLastPoint.getY());
                mDraggable.setLocation(x, y);
    }

  • Mouse Pointer Location

    How can i get where the mouse pointer is inside a jframe opened up in full screen mode.
    I want to be able to tell exactly where the mouse pointer is, from any component i have inside the screen.
    For example when calling the rendering. Some components will be drawn near where the mouse pointer is currently at.
    How do i check where the pointer is?
    I read the event tutorials on mouseListeners... and it did not sound like anything i wanted. It has nothing to do with a mouse movement, click, entering of components etc.
    I just want to be able to tell the pointers location at an instant anytime, from anywhere.

    Have to have mouse listeners on all kinds of stuff... and in every event handler add so it checks for parent components and sets a static x and y coordinate in the application (with the current component e.getX,X + parent x,y)...Maybe Java doesn't have this ability built in (the assumption is that you only need to know where the mouse is when a MouseEvent is generated. Why do you need to know where the mouse is when you generate a key event?)
    But if you have been following my answers its not that difficult to add the ability to find the mouse coordinates:
    1) Create a static variable for the JFrame
    2) Add an AWTEventListener to the main JFrame and save the mouse event to the above variable
    3) Create a static method in the JFrame to convert this mouse event to whatever Point you want (relative to the screen, relative to the Frame, relative to the component)
    All the changes are done in one place, the JFrame 5-6 lines of code.
    Maybe theres an easier way, but I haven't found it.

  • I have a problem with searching page, whenever i try to open any page a blank paper cums appear only written custom search google in English

    i have a problem with searching page, whenever i try to open any page a blank paper cums appear only written custom search by google this one is not such as my google home page
    == This happened ==
    Not sure how often
    == i use to search any page like movies or etc

    Well, it seems waiting is not my strong suit..! I renamed a javascript file called recovery to sessionstore. This file was in the folder sessionstore-backups I had copied from mozilla 3 days ago, when my tabs were still in place. I replaced the sessionstore in mozilla's default folder with the renamed file and then started mozilla. And the tabs reappeared as they were 3 days ago!
    So there goes the tab problem. But again when I started mozilla the window saying "a script has stopped responding" appeared, this time the script being: chrome//browser/contenttabbrowser.xml2542
    If someone knows how to fix this and make firefox launch normally, please reply! Thank you

  • Mouse pointer unresponsive or lock-up

    I have three mouse problems that occur at different times.
    1. Mouse pointer active, moves around the screen, but won't click to select. force quit application doesn't cure the problem. A force quit with power key will restart mac, and generally return computer to normal.
    2. Related to #1, when computer restarts, mouse arrow pointer turns to text insert tool and acts by selecting or highlighting items on the screen will not respond to mouse click. Requires a second restart to correct problem.
    3. Mouse locks in upper left hand corner, and is totally unresponsive to movement or mouse clicks.
    Again restart will cure problem.
    This seems to be mouse related, since keyboard short cuts still work and will allow selection with enter key. I'm baffled. Is there a reset program, or which pref should I delete in case it has become corrupted.

    My mouse pointer recently experienced the 'no click' issue that you described and I resolved it by turning the mouse (wireless) off and on. If you have a USB mouse you might try unplugging it and plugging it back in.
    My issue does not seem to recur regularly but since you are having recurring issues you should first try verifying whether your startup disk has any file system issues: http://support.apple.com/kb/HT1782.

  • Why do i get a colourful circle mouse pointer on some web sites but not all sites

    Hello
    I seem to get a cirlce as mouse pointer on some web pages but cannot fiure out why ??? it has only just started to happen some web pages are fine

    See:
    * http://kb.mozillazine.org/Error_loading_websites

  • How do i make a tab active and make it stay that way always. If i put a website in my home page in order for the tabs to open automatically in that same homepage , this setting is not working, every time I open a tab , a white window appears .

    How do i make a tab active and make it stay that way always. If i put a website in my home page in order for the tabs to open automatically in that same homepage , this setting is not working, every time I open a tab , the window appears white .

    By default Firefox opens a blank page for a new Tab, there is no setting to change that action without installing an add-on.
    New Tab Homepage extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/777

  • In snow leopard, 2 fingers to the left on the mouse went back to the previous page. In Lion, it opens the dashboard. How can i make firefox go back to previous page with two fingers left on the mouse??

    In snow leopard, 2 fingers to the left on the mouse went back to the previous page. In Lion, it opens the dashboard. How can i make firefox go back to previous page with two fingers left on the mouse??

    Hi,
    I don't know of a preference, but have you used ⌘-T in iCal?
    Best wishes
    John M

  • The mouse pointer has disappeared; how do I make it reappear?

    The mouse pointer doesn't show, so I have to do everything by tapping on the screen.

    Note that you have switched on caret browsing.
    *http://kb.mozillazine.org/accessibility.browsewithcaret
    You can toggle caret browsing on/off by pressing F7 (Mac: fn + F7).
    *Tools > Options > Advanced > General > Accessibility: [ ] "Always use the cursor keys to navigate within pages"
    *http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for

  • I am unable to cancel my Adobe Creative Cloud membership

    The help FAQ tells me to go to a page that looks different than the FAQ shows, and when I try to contact via chat, it does nothing. Going to maybe have to call tomorrow, but I'm frustrated that you don't have the option available to do it myself, tha

  • HT201272 Lost song needs to be downloaded again

    My iTunes lost a song and I have tried to locate it in my media folders (it's not there) but have found it in my purchases. Can I download a previously downloaded song I purchased on iTunes when it already says "downloaded" next to the song?

  • Installation of OS 10 on Blackberry bold 9700

    hello, i want to upgrade my os 7 to os 10 on my bb 9700. can anyone tell me is it compatiable with this smartphone and do not affect the performance of phone.? Moreover what method should be adopted to upgrade OS?

  • Gal Sync and group member sync cross forest. Not working together

      I am finalizing a cross forest migration. The End client needs an extended period of time with both domains up and running. I have been working with an advisory engineer and we are having a hard time.   We started by setting up GAL sync and that wo

  • Menu exit or BAdi for IW28 and IW65

    Dear Experts, Please provde Menu exit or BAdi for IW28 or IW65, to calling customized program. i.e.  have one 'Z' Program, i want to cali that from IW28 and IW68 using menu option. Regards, venkey