Buttons Going Cr@zy when you mouse-over!!

I'm having a really annoying issue that I can't seem to figure out why it's happening.  I setup navigation buttons for a site I'm working.  Using Action Script 2.0 and Caurina Tweener effects.  I've set it up so the buttons shoot out when you mouse over.  The problem is when you hold your cursor to the outer edge of the button it starts jumping rapidly.  I can't seem to figure out why this is or how to stop it.  I'm thinking about maybe putting a stop action when you mouse-out but I can't seem to get that to wrok either.  I might be soing something wrong with that code.  Ifsomeone could please look over my code and let me know what you think the problem is I would really appreciate it.
import caurina.transitions.*; function _color_splitter(p_value):Array { var nArray:Array = new Array(); if (p_value == null) {   // No parameter passed, so just resets the color   nArray.push({name:"_color_ra", value:100});   nArray.push({name:"_color_rb", value:0});   nArray.push({name:"_color_ga", value:100});   nArray.push({name:"_color_gb", value:0});   nArray.push({name:"_color_ba", value:100});   nArray.push({name:"_color_bb", value:0}); } else {   // A color tinting is passed, so converts it to the object values   nArray.push({name:"_color_ra", value:0});   nArray.push({name:"_color_rb", value:AuxFunctions.numberToR(p_value)});   nArray.push({name:"_color_ga", value:0});   nArray.push({name:"_color_gb", value:AuxFunctions.numberToG(p_value)});   nArray.push({name:"_color_ba", value:0});   nArray.push({name:"_color_bb", value:AuxFunctions.numberToB(p_value)}); } return nArray; } var eIOE = eIOE; var curBtn:Number = 1; var whichNav = nav.red.homeRedTxt; var lastSec = mobHome; var curMiniBtn = null; var category:Boolean = true; buildIn(); //checkIt(); navBuild(); nav.red.homeRedTxt._visible = true; Tweener.addTween(blackOver,{_autoAlpha:0}); Tweener.addTween(vidPlay,{_autoAlpha:0}); function allTitles() { nav.red.contactUsRedTxt._visible = false; nav.red.abouttheRedText._visible = false; nav.red.whatWeveRedTxt._visible = false; nav.red.homeRedTxt._visible = false; } nav.home._visible = false; function buildIn() { Tweener.addTween(mobHome,{_rotation:100, _scale:50, _x:116, _y:1131}); Tweener.addTween(mobHome.logo,{_alpha:0, _y:-306, _x:-406}); //Tweener.addTween(mobHome.mobWater,{_alpha:8, _y:-10, _x:}); Tweener.addTween(mobHome.titleCopy,{_alpha:0, _y:308, _x:-62}); Tweener.addTween(mobHome.bodyCopy,{_alpha:0, _y:346, _x:115}); Tweener.addTween(mobHome.bracket1,{_alpha:0, _x:-277}); Tweener.addTween(mobHome.bracket2,{_alpha:0, _x:646}); // // Tweener.addTween(mobHome,{_rotation:0, _scale:100, _x:520, _y:327, time:1.5, transition:eIOE}); Tweener.addTween(mobHome.logo,{_alpha:100, _y:-260, time:1, transition:eIOE}); Tweener.addTween(mobHome.mobWater,{_alpha:30, _y:-10, time:1, transition:eIOE, delay:.4}); Tweener.addTween(mobHome.titleCopy,{_alpha:100, _y:228, time:1, transition:eIOE, delay:.6}); Tweener.addTween(mobHome.bodyCopy,{_alpha:100, _y:270, time:1, transition:eIOE, delay:.8}); Tweener.addTween(mobHome.bracket1,{_alpha:100, _x:-248, time:1, transition:eIOE, delay:1.1}); Tweener.addTween(mobHome.bracket2,{_alpha:100, _x:480, time:1, transition:eIOE, delay:1.1}); } //switch function checkIt() { switch (curBtn) {   case 1 :    trace("you pressed home");    Tweener.addTween(lastSec,{_rotation:-140, _x:-330, _y:-641, _autoAlpha:0, _scale:50, time:1.5, transition:eIOE});    homeOut();    navBuildOut();    //    Tweener.addTween(mobHome,{_autoAlpha:100});    buildIn();    nav.red.homeRedTxt._visible = true;    nav.home._visible = false;    lastSec = mobHome;    break;   case 2 :    trace("you pressed about");    Tweener.addTween(lastSec,{_rotation:-140, _x:-330, _y:-641, _autoAlpha:0, _scale:50, time:1.5, transition:eIOE});    aboutOut();    navBuildOut();    //    Tweener.addTween(about,{_autoAlpha:100});    buildAbout();    Tweener.addTween(nav.red.abouttheRedText,{_autoAlpha:100, delay:.4});    nav.red.abouttheRedText._visible = true;    nav.about._visible = false;    lastSec = about;    break;   case 3 :    trace("you pressed what we've done");    Tweener.addTween(lastSec,{_rotation:-140, _x:-330, _y:-641, _autoAlpha:0, _scale:50, time:1.5, transition:eIOE});    whatWeveOut();    navBuildOut();    //    Tweener.addTween(whatWevePage,{_autoAlpha:100});    buildWhatWeve();    Tweener.addTween(nav.red.whatWeveRedTxt,{_autoAlpha:100, delay:.4});    nav.red.whatWeveRedTxt._visible = true;    nav.whatWeve._visible = false;    lastSec = whatWevePage;    break;   case 4 :    trace("you pressed contact us");    Tweener.addTween(lastSec,{_rotation:-140, _x:-330, _y:-641, _autoAlpha:0, _scale:50, time:1.5, transition:eIOE});    contactusOut();    navBuildOut();    //    Tweener.addTween(contactUsPage,{_autoAlpha:100});    buildContact();    Tweener.addTween(nav.red.contactUsRedTxt,{_autoAlpha:100, delay:.4});    nav.red.contactUsRedTxt._visible = true;    nav.contactus._visible = false;    lastSec = contactUsPage;    break;   case 5 :    trace("you pressed client");    getURL("http://www.review.mobscene.com", "_blank");    break; } } nav.home.onRelease = function() { curBtn = 1; checkIt(); }; nav.about.onRelease = function() { curBtn = 2; checkIt(); }; nav.whatWeve.onRelease = function() { curBtn = 3; checkIt(); }; nav.contactus.onRelease = function() { curBtn = 4; checkIt(); }; nav.clientLog.onRelease = function() { curBtn = 5; checkIt(); }; //NAV BUILD OUT / BUILD IN  ------ function navBuildOut() { nav.home.enabled = false; nav.about.enabled = false; nav.whatWeve.enabled = false; nav.contactus.enabled = false; nav.clientLog.enabled = false; Tweener.addTween(nav.red,{_rotation:-45, _x:-553, _y:-337, time:1.5, transition:eIOE, onCompelete:function(){allTitles}}); Tweener.addTween(nav.home,{_rotation:-45, _x:-421, _y:-138, time:1.5, transition:eIOE}); Tweener.addTween(nav.about,{_rotation:-45, _x:-426, _y:-97, time:1.5, transition:eIOE, delay:.1}); Tweener.addTween(nav.whatWeve,{_rotation:-45, _x:-413, _y:-36, time:1.5, transition:eIOE, delay:.2}); Tweener.addTween(nav.contactus,{_rotation:-45, _x:-410, _y:18, time:1.5, transition:eIOE, delay:.33}); Tweener.addTween(nav.clientLog,{_rotation:-45, _x:-414, _y:101, time:1.5, transition:eIOE, delay:.4, onComplete:makeGray}); allTitles(); allVis(); navBuild(); } function navBuild() { Tweener.addTween(nav,{_rotation:90, _x:-216, _y:952}); Tweener.addTween(nav.red,{_rotation:90, _x:-349, _y:702}); Tweener.addTween(nav.home,{_rotation:90, _x:-268, _y:553}); Tweener.addTween(nav.about,{_rotation:90, _x:-284, _y:622}); Tweener.addTween(nav.whatWeve,{_rotation:90, _x:-276, _y:656}); Tweener.addTween(nav.contactus,{_rotation:90, _x:-274, _y:703}); Tweener.addTween(nav.clientLog,{_rotation:-45, _x:-220, _y:742}); allTitles(); Tweener.addTween(nav,{_rotation:0, _x:193, _y:390, _color:null, time:.7, transition:eIOE}); Tweener.addTween(nav.red,{_rotation:-360, _x:-43, _y:-135, _color:null, time:1.5, transition:eIOE, onCompelete:function(){allTitles}}); Tweener.addTween(nav.home,{_rotation:-360, _x:-174, _y:19, _color:null, time:1.5, transition:eIOE}); Tweener.addTween(nav.about,{_rotation:-360, _x:-174, _y:72, _color:null, time:1.5, transition:eIOE, delay:.1}); Tweener.addTween(nav.whatWeve,{_rotation:-360, _x:-170, _y:126, _color:null, time:1.5, transition:eIOE, delay:.2}); Tweener.addTween(nav.contactus,{_rotation:-360, _x:-170, _y:179, _color:null, time:1.5, transition:eIOE, delay:.33}); Tweener.addTween(nav.clientLog,{_rotation:-360, _x:-170, _y:232, time:1.5, transition:eIOE, delay:.4}); Tweener.addTween(nav.clientLog,{_color:null, time:1, transition:eIOE, onComplete:makeThemGo}); } function makeThemGo() { nav.home.enabled = true; nav.about.enabled = true; nav.whatWeve.enabled = true; nav.contactus.enabled = true; nav.clientLog.enabled = true; } function makeGray() { Tweener.addTween(nav.home,{_color:0x626262}); Tweener.addTween(nav.about,{_color:0x626262}); Tweener.addTween(nav.whatWeve,{_color:0x626262}); Tweener.addTween(nav.contactus,{_color:0x626262}); Tweener.addTween(nav.clientLog,{_color:0x626262}); } function allVis() { nav.home._visible = true; nav.about._visible = true; nav.whatWeve._visible = true; nav.contactus._visible = true; nav.clientLog._visible = true; } // --------- //ROLLOVER FUNCTIONS // home nav.home.onRollOver = function() { var my_sound:Sound = new Sound(); my_sound.attachSound("over"); my_sound.start(); Tweener.addTween(this,{_x:-138, _y:0, _scale:120, time:0.6, transition:eIOE}); Tweener.addTween(this.shadow1,{_x:18, _y:10, _scale:80, time:0.6, transition:eIOE}); Tweener.addTween(nav.about,{_y:80, time:0.4, transition:eIOE}); Tweener.addTween(nav.whatWeve,{_y:136, time:0.4, transition:eIOE}); Tweener.addTween(nav.contactus,{_y:189, time:0.4, transition:eIOE}); Tweener.addTween(nav.clientLog,{_y:242, time:0.4, transition:eIOE}); Tweener.addTween(this.innerText,{_x:151, _y:-127, _scale:90, time:0.4, transition:eIOE}); }; nav.home.onRollOut = function() { homeOut(); }; function homeOut() { Tweener.addTween(nav.home,{_x:-174, _y:19, _scale:100, time:0.4, transition:eIOE}); Tweener.addTween(nav.home.shadow1,{_x:2, _y:2, _scale:100, time:0.6, transition:eIOE}); Tweener.addTween(nav.about,{_y:70, time:0.4, transition:eIOE}); Tweener.addTween(nav.whatWeve,{_y:126, time:0.4, transition:eIOE}); Tweener.addTween(nav.contactus,{_y:179, time:0.4, transition:eIOE}); Tweener.addTween(nav.clientLog,{_y:232, time:0.4, transition:eIOE}); Tweener.addTween(nav.home.innerText,{_x:28, _y:-38, _scale:100, time:0.4, transition:eIOE}); } // about the mob nav.about.onRollOver = function() { var my_sound:Sound = new Sound(); my_sound.attachSound("over"); my_sound.start(); Tweener.addTween(this,{_x:-124, _y:40, _scale:120, time:0.6, transition:eIOE}); Tweener.addTween(this.shadow1,{_x:18, _y:10, _scale:80, time:0.6, transition:eIOE}); Tweener.addTween(nav.home,{_y:10, time:0.4, transition:eIOE}); Tweener.addTween(nav.whatWeve,{_y:136, time:0.4, transition:eIOE}); Tweener.addTween(nav.contactus,{_y:189, time:0.4, transition:eIOE}); Tweener.addTween(nav.clientLog,{_y:242, time:0.4, transition:eIOE}); Tweener.addTween(this.aboutTheMobtxt,{_x:119, _y:-104, _scale:90, time:0.4, transition:eIOE}); }; function aboutOut() { Tweener.addTween(nav.about,{_x:-170, _y:69, _scale:100, time:0.4, transition:eIOE}); Tweener.addTween(nav.about.shadow1,{_x:2, _y:2, _scale:100, time:0.6, transition:eIOE}); Tweener.addTween(nav.home,{_y:19, time:0.4, transition:eIOE}); Tweener.addTween(nav.whatWeve,{_y:126, time:0.4, transition:eIOE}); Tweener.addTween(nav.contactus,{_y:179, time:0.4, transition:eIOE}); Tweener.addTween(nav.clientLog,{_y:232, time:0.4, transition:eIOE}); Tweener.addTween(nav.about.aboutTheMobtxt,{_x:66, _y:-66, _scale:100, time:0.4, transition:eIOE}); } nav.about.onRollOut = function() { aboutOut(); }; //what weve done nav.whatWeve.onRollOver = function() { var my_sound:Sound = new Sound(); my_sound.attachSound("over"); my_sound.start(); Tweener.addTween(this,{_x:-80, _y:70, _scale:120, time:0.6, transition:eIOE}); Tweener.addTween(this.shadow1,{_x:18, _y:10, _scale:80, time:0.6, transition:eIOE}); Tweener.addTween(nav.about,{_y:69, time:0.4, transition:eIOE}); Tweener.addTween(nav.contactus,{_y:189, time:0.4, transition:eIOE}); Tweener.addTween(nav.clientLog,{_y:242, time:0.4, transition:eIOE}); Tweener.addTween(this.innerText,{_x:115, _y:-107, _scale:90, time:0.4, transition:eIOE}); }; function whatWeveOut() { Tweener.addTween(nav.whatWeve,{_x:-170, _y:126, _scale:100, time:0.4, transition:eIOE}); Tweener.addTween(nav.whatWeve.shadow1,{_x:2, _y:2, _scale:100, time:0.6, transition:eIOE}); Tweener.addTween(nav.about,{_y:70, time:0.4, transition:eIOE}); Tweener.addTween(nav.contactus,{_y:179, time:0.4, transition:eIOE}); Tweener.addTween(nav.clientLog,{_y:232, time:0.4, transition:eIOE}); Tweener.addTween(nav.whatWeve.innerText,{_x:76, _y:-78, _scale:100, time:0.4, transition:eIOE}); } nav.whatWeve.onRollOut = function() { whatWeveOut(); }; //contactUS nav.contactus.onRollOver = function() { var my_sound:Sound = new Sound(); my_sound.attachSound("over"); my_sound.start(); Tweener.addTween(this,{_x:-87, _y:123, _scale:120, time:0.6, transition:eIOE}); Tweener.addTween(this.shadow1,{_x:18, _y:10, _scale:80, time:0.6, transition:eIOE}); Tweener.addTween(nav.home,{_y:15, time:0.4, transition:eIOE}); Tweener.addTween(nav.about,{_y:64, time:0.4, transition:eIOE}); Tweener.addTween(nav.whatWeve,{_y:118, time:0.4, transition:eIOE}); Tweener.addTween(nav.clientLog,{_y:237, time:0.4, transition:eIOE}); Tweener.addTween(this.innerText,{_x:115, _y:-107, _scale:90, time:0.4, transition:eIOE}); }; nav.contactus.onRollOut = function() { contactusOut(); }; function contactusOut() { Tweener.addTween(nav.contactus,{_x:-170, _y:179, _scale:100, time:0.4, transition:eIOE}); Tweener.addTween(nav.contactus.shadow1,{_x:2, _y:2, _scale:100, time:0.6, transition:eIOE}); Tweener.addTween(nav.home,{_y:19, time:0.4, transition:eIOE}); Tweener.addTween(nav.about,{_y:70, time:0.4, transition:eIOE}); Tweener.addTween(nav.whatWeve,{_y:126, time:0.4, transition:eIOE}); Tweener.addTween(nav.clientLog,{_y:232, time:0.4, transition:eIOE}); Tweener.addTween(nav.contactus.innerText,{_x:50, _y:-58, _scale:100, time:0.4, transition:eIOE}); } //client Log In nav.clientLog.onRollOver = function() { var my_sound:Sound = new Sound(); my_sound.attachSound("over"); my_sound.start(); Tweener.addTween(this,{_x:-80, _y:173, _scale:120, time:0.6, transition:eIOE}); Tweener.addTween(this.shadow1,{_x:18, _y:10, _scale:80, time:0.6, transition:eIOE}); Tweener.addTween(nav.home,{_y:15, time:0.4, transition:eIOE}); Tweener.addTween(nav.about,{_y:67, time:0.4, transition:eIOE}); Tweener.addTween(nav.whatWeve,{_y:121, time:0.4, transition:eIOE}); Tweener.addTween(nav.contactus,{_y:174, time:0.4, transition:eIOE}); Tweener.addTween(this.innerText,{_x:121, _y:-108, _scale:90, time:0.4, transition:eIOE}); }; nav.clientLog.onRollOut = function() { Tweener.addTween(this,{_x:-170, _y:232, _scale:100, time:0.4, transition:eIOE}); Tweener.addTween(this.shadow1,{_x:2, _y:2, _scale:100, time:0.6, transition:eIOE}); Tweener.addTween(nav.about,{_y:71, time:0.4, transition:eIOE}); Tweener.addTween(nav.home,{_y:19, time:0.4, transition:eIOE}); Tweener.addTween(nav.whatWeve,{_y:126, time:0.4, transition:eIOE}); Tweener.addTween(nav.contactus,{_y:179, time:0.4, transition:eIOE}); Tweener.addTween(this.innerText,{_x:52, _y:-61, _scale:100, time:0.4, transition:eIOE}); }; // function buildAbout() { mobHome.video.myDisplay.pauseVideo("splashVideo/HJNTIY_Tips_30.flv"); mobHome.video.myDisplay.pauseVideo("splashVideo/SVTF02_NCM.flv"); Tweener.addTween(about,{_alpha:0, _rotation:0, _scale:50, _x:-17, _y:1133}); Tweener.addTween(about.logo,{_alpha:0, _y:-306}); Tweener.addTween(about.mainAboutCopy,{_alpha:0, _y:-26}); Tweener.addTween(about.aboutTitle,{_alpha:0, _y:-141}); Tweener.addTween(about.streetScene,{_rotation:0, _alpha:0, _y:302, _x:-69}); // // Tweener.addTween(about,{_alpha:100, _rotation:0, _scale:100, _x:540, _y:400, time:1.5, transition:eIOE}); Tweener.addTween(about.logo,{_alpha:100, _y:-326, time:1, transition:eIOE}); Tweener.addTween(about.mainAboutCopy,{_alpha:100, _y:-53, time:1, transition:eIOE, delay:.4}); Tweener.addTween(about.aboutTitle,{_alpha:100, _y:-141, time:1, transition:eIOE, delay:.6}); Tweener.addTween(about.streetScene,{_rotation:0, _alpha:100, _y:172, _x:-69, time:1, transition:eIOE, delay:.8}); } var aboutPress = about.mainAboutCopy.mobAboutTxt; //ABOUT INNER CONTENT CODE about.mainAboutCopy.aboutThe.onRelease = function() { Tweener.addTween(aboutPress,{_alpha:0, time:.4}); aboutPress = about.mainAboutCopy.mobAboutTxt; Tweener.addTween(about.mainAboutCopy.txtLine,{_x:-320, time:1}); Tweener.addTween(about.mainAboutCopy.mobAboutTxt,{_alpha:100, time:1.4}); }; about.mainAboutCopy.whatDo.onRelease = function() { Tweener.addTween(aboutPress,{_alpha:0, time:.4}); aboutPress = about.mainAboutCopy.create; Tweener.addTween(about.mainAboutCopy.txtLine,{_x:-178, time:1}); Tweener.addTween(about.mainAboutCopy.create,{_alpha:100, time:1.4}); }; about.mainAboutCopy.whoAre.onRelease = function() { Tweener.addTween(aboutPress,{_alpha:0, time:.4}); aboutPress = about.mainAboutCopy.creds; Tweener.addTween(about.mainAboutCopy.txtLine,{_x:-39, time:1}); Tweener.addTween(about.mainAboutCopy.creds,{_alpha:100, time:1.4}); }; //BUILD CONTACT US function buildContact() { mobHome.video.myDisplay.pauseVideo("splashVideo/HJNTIY_Tips_30.flv"); mobHome.video.myDisplay.pauseVideo("splashVideo/SVTF02_NCM.flv"); Tweener.addTween(contactUsPage,{_alpha:0, _rotation:90, _scale:50, _x:450, _y:941}); Tweener.addTween(contactUsPage.fishLogo,{_alpha:0, _x:-223, _y:-147, _rotation:30}); Tweener.addTween(contactUsPage.contactCopy,{_alpha:0, _x:-10, _y:250, _rotation:30}); // // Tweener.addTween(contactUsPage,{_alpha:100, _rotation:0, _scale:100, _x:240, _y:248, time:1, transition:eIOE}); Tweener.addTween(contactUsPage.fishLogo,{_alpha:100, _scale:100, _rotation:0, _x:-122, _y:-170, time:1, transition:eIOE}); Tweener.addTween(contactUsPage.contactCopy,{_alpha:100, _scale:100, _rotation:0, _x:151, _y:84, time:1, transition:eIOE, delay:.4}); } //BUILD WHAT WEVE function buildWhatWeve() { mobHome.video.myDisplay.pauseVideo("splashVideo/HJNTIY_Tips_30.flv"); mobHome.video.myDisplay.pauseVideo("splashVideo/SVTF02_NCM.flv"); Tweener.addTween(whatWevePage,{_alpha:0, _x:450, _y:941, _rotation:0, _scale:50}); // Tweener.addTween(whatWevePage,{_alpha:100, _rotation:0, _scale:100, _x:322, _y:207, time:1}); }

you can delete that file, if you want.
the top border of those buttons exactly display the problem i suggested.  when you mouse over the top edge, the button moves away from your cursor triggering a mouse out event.
to remedy, don't have your button move away from the top (or any other) edge of the button.
and my previous comment was to counter your claim that you see this done elsewhere without the problem.  post a url where a button moves away from the cursor and does not trigger the problem..
you could expand an alpha 0 shape at the top of your button on rollover so a rollout is not triggered but the same design appears.

Similar Messages

  • How to stop button flicker when you mouse over?

    http://happynick.com/sheflash/main246.html
    After the intro video,
    When you mouse over "the films" button, it flickers once.
    why?
    When when mouse over "the company" and "contact" buttons, it
    does not.

    Sorry, my 20-20 eyes are missing it. Maybe my iMac is rendering things quicker than your laptop.

  • On my own website vdha.us, I am now getting many words that are purple and when you mouse over them, a new spamming window opens trying to sell something. IE-9 does not do this. How do I turn this off in firefox?

    Sirs,
    The below URL came up immediately when I tried to access our Newfangled website this morning http://vdha.us :
    http://surveyprizecenter.com/survey/claimgift-GT-kw-7b.php?t202kw=Vdha.us&trimmedKeyword=Vdha.us
    I prefer to use Firefox and very seldom use IE-9. but now I might be forced to remove Firefox 4.0.1 and resort to using IE-9 because of this situation.
    I don’t know how spammers can use our website to exploit their spamming, but I can only imagine the complaints I am going to get from our Board of Directors and members about this.
    Can you make them stop, or at least explain how it is that anyone can do this without our permission.
    We have never allowed advertisement on our website and don’t plan on starting now.
    I am now also getting many words that are purple with two lines under them, and when you mouse over them, a new spamming window opens automatically trying to sell something. How do I turn this off?
    I would appreciate any expediency in the return of an answer that you can provide.
    Kindest Regards,
    Dave Broeker
    VDHA Life Member #1797
    VDHA Webmaster & BX Manager
    http://vdha.us

    The "MySearchDial" app needs to be removed in 4 places.
    1) Go to "add / remove programs" in your windows control panel select mysearchdial and remove it.
    2) Open your Firefox browser then click the Firefox tab at the top left and select options. You will need to change the start page settings back to your preferred start page.
    3) Again under the Firefox tab select "add-ons". In the add-ons manager you will need to remove mysearchdial from both "plugins" and "extensions"
    4) In your search bar (top right of address bar" use the drop down menu and select "manage search engines". You can restore your preferred search engine and remove mysearchdial from the menu.
    This should remove all the components of the nuisance hijacker and restore your browser back to your preferred settings. If you are comfortable with a more in depth removal I would also suggest going to your "programs" folder within the "C" drive of your machine and deleting the "MySearchDial" folder altogether. However, only do this AFTER you have uninstalled it from your system and if you are familiar with this type of removal.

  • How do you display a swf video / videos when you mouse over

    How do you display a swf video / videos when you mouse over, It'll be something like a pop up but just that it doesn't open in another windows but within the same window and will be like a pop up roll over image.

    Thank you for the reply.
    I've been putzing around with it and came across the 'SetEventHandler' object and thought I'd try and make that one work.
    Here's what I've got so far.
           <mx:SetEventHandler target="{turnAroundMovie}" name="handleMovieClip" handler="stopMovie()"/>
    And then my fuction.
       <mx:Script>
            <![CDATA[
                private function stopMovie():void{
                    turnAroundMovie.stop(); <!-- here's where I'm getting stuck -->
            ]]>
        </mx:Script>
    My first instinct was the simple stop(), but that didn't fly.  I even added a stopMovie frame in my .swf and tried a gotoAndStop('stopMovie'); but that didn't fly either.  And that's kind of where I'm stuck at.

  • How can I change the image that's shown when you mouse-over a folder?

    Lightroom defaults to using the first image depending on how you sort and I can't find out how to change this. I know how to do it for stacks, but not for folders.

    If you're sorting- or could leave them sorted in by file name- changing the name of the first photo will get you there. Or changing the time stamp, etc.

  • We I load a webpage I get key words highlited that when you mouse over brings up a popup. How do I prevent this?

    FireFox 26

    Do a malware check with some malware scanning programs on the Windows computer.<br>
    Please scan with all programs because each program detects different malware.<br>
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender: Home Page:<br>http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    You can look at the Adblock Plus extension to block such unwanted content.
    * Adblock Plus: https://addons.mozilla.org/firefox/addon/adblock-plus/
    You need to subscribe to a Filter list (e.g. the EasyList).
    * http://adblockplus.org/en/subscriptions
    * http://adblockplus.org/en/getting_started

  • How to make yellow dialog box not come up when I mouse over tabs?

    I hate the little small yellow background colored dialog box that pops up when you mouse over tabs on Firefox on Mac.
    The reason why this is an in convenience on the Firefox in Mac is when a dialog box comes up and you minimize Firefox the dialog box stays there on the screen, so you have to bring Firefox to the front and then mouse over it til the box go's away, and then finally you can minimize Firefox without having the dialog box stay on your screen.
    To negate this problem I want to know if their is a way for me to disable that dialog box from coming up at all. It also comes up when I mouse over my all in one sidebar add on and I have noticed it when you mouseover links on certain sites, like in Pandora when I am mousing over the different artists in my list the little box comes up, again it's not needed and very annoying.

    you must modify '''browser.chrome.toolbar_tips'''
    type in the address bar '''about:config'''
    then press the button''' i'll be careful i promise'''
    then type in the bar '''browser.chrome.toolbar_tips'''
    then '''Double-click''' on it, to make it''' false'''
    exit firefox and restart-it.
    See for more info : [http://kb.mozillazine.org/Browser.chrome.toolbar_tips Browser.chrome.toolbar tips ]
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • In WebHelp, when I mouse over a link, the font size changes.

    Either after I generate to WebHelp or View in RoboHelp, when I mouse over a hyperlink text, the font changes from large to small text. My step is a 11pt font, my body text is 10pt. It appears the 11 pt. font switches to 10pt font when I mouse over it. Any way to fix this?
    Also noticed that when I have a note at 9 pt, and mouse over a link, the text changes to 10pt.
    So now it appears in most of my topics with links within a step or note. In a body, the text appears fine (or stays the same) when you mouse over a link.

    Not believing that either.
    You should be able to edit your CSS in a text editor. If you are not sure what to do, set up a simple project using your CSS. Any text will do and create a link.
    See the Contact page on my site and follow the instructions there.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • When I mouse over a hyperlink on a page in 4.0, I can no longer view the URL address in a narrow horizontal bar at the bottom of the page, nor view the "load progress" of the URL when I click on it ... which I could formerly see in the same narrow bar.

    In Firefox 3.6 and previous, I could always view the URL of an embedded hyperlink by mousing over the link and checking a narrow horizontal field at the bottom of the web page. When clicked on, that hyperlink would begin loading the desired page, and I could watch as Firefox logged on to the remote server ... at least to the extent of knowing that the server had been contacted and that the page was loading. It's like "flying blind" now -- I can't view either of those things.

    Firefox 4.0b7 eliminated the Status bar, it is replaced by the Add-on bar. When you mouse-over a hyperlink, the URL appears in the Location bar to the right of the current URL in slightly faint type. The page loading indicator is on the left side of the Tab, but it doesn't show the progress as before, only that the page is loading (or not).
    You can restore the functions of the old Statusbar with the '''Status4Evar''' extension. The three Statusbar items are in the Customize Palette. <br />
    https://addons.mozilla.org/en-US/firefox/addon/235283/

  • How do i change or hide the dialogue box that pops when i mouse over a link?

    i'm using adobe acrobat standard.
    i'm editing a document and adding links into the PDF to my website.
    i prefer only to show the "hand/pointer" when you mouse over the link.
    is there a way to:
    a. hide the dialogue that pops up when you mouse over a link?
    b. is there a way change the dialogue that pops up when you mouse over a link (e.g. Click Here versus the actual URL).
    Much thanks,
    KK

    Moving the discussion to Creating, Editing & Exporting PDFs forum.
    Thanks,
    Atul Saini

  • How can I add popup help messages when I mouse over a button

    Hi there,
    I haev Acrobat x 10 pro.
    I'm new to acrobat and would like to set up a friendly form for people to fill in online.  I'd like them to have some interactive help so that for example when they mouse over or click a button, some help text appears.  I've played around with adding a text field that is hidden and then adding action items to a button to show it.  This works, but my text field is shaded like a normal text field and I'd like it to look different.
    Is there a better way to to this popup effect or is there a way t omake the popup look like a popup and not a text field?
    All help gratefully received,
    Thanks in advance.

    I'mnot sure what you mean by shading exactly, but you can set up a text field so that it doesn't have an inset border. An alternative is to use a button to display the text. Buttons are more flexible since you can set a button icon to be anything that can appear on a PDF page (text, images, vector graphics). For a sample, see: https://acrobat.com/#d=aP-2xL45pM57xVkT6d6fSg
    Also, if you use a text field, set it's default value to the text you want to display so that the field won't get blanked if the form is reset. You don't have to worry about this when using buttons.

  • Problem w Plug-in Check page: the "Update" button for my outdated version of the WMP plugin does not do anything, and no link is indicated in the status bar when I mouse over the button.

    In Firefox, I select Tools > Add-ons > Find Updates. The Plugin Check page comes up in the browser. The entry for the WMP Plugin indicates it is out of date. I click on the "Update" button and nothing happens. When I mouse over the button, no link is indicated in the status bar (it continues to read "Done").
    The entries for the other plugins indicate they are current. When I mouse over the "Up to date" button for each of those entries, a link is indicated in the status bar.
    I am running Windows XP SP2 on a 2005 Dell Inspiron 6000 (1.6 GHz Pentium M processor, 590 MHz bus, 504 MB RAM). I have Norton Internet Security 2010 installed and running.

    See:
    * http://kb.mozillazine.org/Windows_Media_Player#Missing_plugin
    * http://windows.microsoft.com/en-US/windows/downloads/windows-media-player (see Firefox)
    * http://port25.technet.com/pages/windows-media-player-firefox-plugin-download.aspx

  • Can someone help with a div that pops up when you hover over a button?

    I made a div that pops up (stacked on the rest of the page) when you hover over a button (gigs). It works in the safari preview but when I test it online it doesn't. It's above the logo instead of blocking it and on the left site instead of the right. And when you open the page it isn't hidden like in the preview. Does someone know what is wrong?
    The test page: Stuff

    Below code, onclick of 'GIGS' shows pop-up window. You then have a 'close' button which when clicked closes it.
    <!DOCTYPE html>
    <!--[if lt IE 7]> <html class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
    <!--[if IE 7]> <html class="lt-ie9 lt-ie8"> <![endif]-->
    <!--[if IE 8]> <html class="lt-ie9"> <![endif]-->
    <!--[if gt IE 8]><!--> <html> <!--<![endif]-->
    <head>
        <meta charset="utf-8">
        <title>Stuff</title>
        <meta name="description" content="">
        <meta name="viewport" content="width=device-width">
        <link rel="stylesheet" href="http://www.rockoco.be/stuff/css/main.css">
        <link rel="shortcut icon" href="favicon.ico">
        <link rel="apple-touch-icon" href="favicon.png">
        <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]-->
    <script type="text/javascript">
    function MM_showHideLayers() { //v9.0
      var i,p,v,obj,args=MM_showHideLayers.arguments;
      for (i=0; i<(args.length-2); i+=3)
      with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
        if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
        obj.visibility=v; }
        </script>
    </head>
    <style>
    #popup {
        position: absolute;
        right: 0;
        z-index: 100;
    #popup img {
    display: block;
    #popup p {
    margin: 0;
    padding: 0;
    #popup a {
        text-decoration: none;
        display: inline-block;
        padding: 8px 12px;
        color: #fff;
        background-color: #000;
    </style>
    <body>
    <div id="popup">
    <img src="http://www.rockoco.be/stuff/img/Flyer-030315.png" alt="popup" width="426" height="605" class="png" />
    <p><a href="#" class="closeWindow">CLOSE</a></p>
    </div>
    <div id="content">
    <h1><img class="svg" src="http://www.rockoco.be/stuff/img/logo.svg" alt="Stuff" /></h1>
    <nav id="social">
        <ul>
       <li><a href="#"><img class="svg" src="http://www.rockoco.be/stuff/img/gigs.svg" alt="Gigs" /></a></li>
            <li><a href="https://twitter.com/36STUFF" target="_blank"><img class="svg" src="http://www.rockoco.be/stuff/img/twitter.svg" alt="Twitter" /></a></li>
            <li><a href="https://www.facebook.com/STUFF.isthebandname" target="_blank"><img class="svg" src="http://www.rockoco.be/stuff/img/facebook.svg" alt="Facebook" /></a></li>
            <li><a href="https://soundcloud.com/stuffmusic" target="_blank"><img class="svg" src="http://www.rockoco.be/stuff/img/soundcloud.svg" alt="Soundcloud" /></a></li>
            <li><a href="http://stuffmusic.bandcamp.com/" target="_blank"><img class="svg" src="http://www.rockoco.be/stuff/img/bandcamp.svg" alt="Bandcamp" /></a></li>
            <li><a href="https://www.youtube.com/user/duststuff/videos " target="_blank"><img class="svg" src="http://www.rockoco.be/stuff/img/youtube.svg" alt="Youtube" /></a></li>
            <li><a href="mailto:[email protected]"><img class="svg" src="http://www.rockoco.be/stuff/img/contact.svg" alt="Contact" /></a></li>
        </ul>
        <ul>
             <li><a href="[email protected]" target="_blank"><img class="svg" src="http://www.rockoco.be/stuff/img/remixes_@_ab_klein.svg" alt="Remixes" /></a></li>   
        </ul>
    </nav>
    </div>
    <footer>
        <a class="left" href="http://www.minguely.ch" target="_blank"><img src="http://www.rockoco.be/stuff/img/logo_minguely.png" alt="" /></a>
            <a class="right" href="http://www.martincramatte.com/" target="_blank"><img src="http://www.rockoco.be/stuff/img/logo_martincramatte.png" alt="" /></a>
    </footer>
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script>
    $(document).ready(function() {
    $('#popup').hide();
    $('.svg').click(function() {
    $('#popup').show()
    $(document).ready(function() {
    $('.closeWindow').click(function() {
    $('#popup').hide()
    </script>
    </body>
    </html>

  • How do I remove the white rectangle that appears when you hover over a nav button or email link?

    In properties I have link color white, visited blank, rollover blank and active blank. When viewed in chrome, IE or firefox a white rectangle appears when you hover over each link.  What is the procedure for removing this?

    This is my CSS
    .gridContainer {
              width: 89.0217%;
              max-width: 1232px;
              padding-left: 0.4891%;
              padding-right: 0.4891%;
              margin: auto;
              clear: none;
              float: none;
              margin-left: auto;
              color: #FFFFFF;
              background-color: #0033FF;
              border-radius: 15px;
              padding-top: 2%;
              padding-bottom: 2%;
    #div1 {
              width: 100%;
              padding-top: 2%;
              background-color: #FFFFFF;
    #Navdiv {
    width: 24.1758%;
    #Intro1 {
    width: 74.7252%;
    margin-left: 1.0989%;
    clear: none;
    #Intro2 {
              width: 74.7252%;
              margin-left: 1.0989%;
              clear: none;
              text-align: center;
    #Intro3 {
    width: 49.4505%;
    #Intro4 {
    width: 49.4505%;
    margin-left: 1.0989%;
    clear: none;
    #Intro5 {
    width: 100%;
    #Footer1 {
              width: 100%;
              text-align: center;
              padding-top: 2%;
              padding-bottom: 2%;
    #Footer2 {
              width: 100%;
              text-align: center;
              padding-top: 2%;
              padding-bottom: 2%;
    #Footer3 {
              width: 100%;
              text-align: center;
              padding-top: 2%;
              padding-bottom: 2%;
    #Footer4 {
              text-align: center;
              padding-bottom: 2%;
    #Navheader {
              margin-left: 0;
              clear: both;
              width: 100%;
              text-align: center;
              background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(0,51,255,1.00) 100%);
              background-image: -moz-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(0,51,255,1.00) 100%);
              background-image: -o-linear-gradient(270deg,rgba(255,255,255,1.00) 0%,rgba(0,51,255,1.00) 100%);
              background-image: linear-gradient(180deg,rgba(255,255,255,1.00) 0%,rgba(0,51,255,1.00) 100%);
    .Ulnav {
    width: 100%;
    margin-left: 0;
    .Listnav {
              width: 100%;
              margin-left: 0;
              text-align: center;
              background-color: #0033FF;
              padding-top: 1%;
              padding-bottom: 1%;
              color: #0033FF;
    #spacer1 {
    width: 100%;
    margin-left: 0;
    clear: none;
    #spacer2 {
    .zeroMargin_desktop {
    margin-left: 0;
    .hide_desktop {
    display: none;

  • I would like to see the actual email address in a Tool Tip when I mouse over the From address

    I use Thunderbird to access my IMAP email account with a non-enormous ISP. Thunderbird is a great email client.
    One thing I really miss when using Thunderbird vs. going to my email using a browser: in the browser, when I mouse over the From email address, a tool tip pops up showing me the actual email address, not the alias (or whatever it's called). Please see the attached image for an example of the mouse over tool tip. Is there a way to do this in Thunderbird?

    more misinformation and urban myths here than facts.
    1. Thunderbird blocks remote images by default.
    2. Thunderbird does not allow scripts in mail. If they are there they do not run.
    3. The only link SPAMMERS or anybody in marketing gets to you is when you download their remote images, run scripts in the mail or click on links to go to their web sites.
    4. When I or a spammer send a mail to say [email protected] Most mail servers will refuse delivery unless the address exists on their server.
    5. True spammers do not care if a large percentage of the mail they send is to dead email addresses and they make little or no effort to validate active addresses. Corporations like Walmart, Woolworths here in Australia, Ebay and Paypal are very interested.
    With that knowledge, you are now aware that opening the mail tells a spammer nothing even in the remote chance they are interested.
    Oh and the source of the urban myth is Microsoft whose mail clients allow scripting, remote images and uses the file extension of the file not it's mime type to determine how to open it.
    That is the difference between a mail client where the developers think security first and one where the developers give the user what they want and try to tack on security after the fact.

Maybe you are looking for

  • Very slow Broadband in Crawley after "Upgrade to u...

    7.5 days after a service upgrade in my Crawley area I am still experiencing a painfully slow broadband connection. Speedtester tonight has recorded the dizzy speeds of 45Kbps Download / 366Kbps Upload. My BT Vision service does not want to know. My I

  • NVidia card not receiving interupts

    I like Arch so far but I decided to set up a window manager on it but I can't seem to get X working with anything other than the vesa driver. When X crashes on the nVidia drive, I get this: (**) NVIDIA(0): Depth 16, (--) framebuffer bpp 16 (==) NVIDI

  • Safari 4 rendering incorrecting after iweb publish

    When I publish iweb locally and then view it in Safari 4, the initial view is rendered incorrectly. I may do this repeatedly, meaning there are many tabs left open of the local web sight as I view a new one with modifications. Safari almost seems to

  • Looking up JNDI names

    Hi, I got "NoInitialContextException" when i tried to execute a session bean client by making the look up my is follows client program import javax.naming.*; import javax.ejb.*; import java.util.*; public class AdviceClient public static void main(St

  • OCE WPD driver installation hangs on client workstation

    Hi, We are having issues with a specific driver from OCE. The driver is WPD for an OCE PlotWave 300 on Win7x64. We cannot use another driver since the clients need it for AutoCAD documents. I have been able to add the driver to the driver store witho