Multiplu button after mouse over one button

Hi, can anyone teach me how to do this is Flash Catalyst: when pointing on "Products" button, a slider scroll down with lots of buttons. how can i create these buttons upon mouse-over the "product" button. thanks heres the link.     http://www.ozdesignfurniture.com.au/media/nav/Menu.swf

OK, I've upload to internet...
example
I think it's a problem of indesgin, when it create pdf.
When I create the animation in acrobat, there's no problem...

Similar Messages

  • Mouse Over Effect

    Here is what I want to do in Keynote '08:
    I want to make an object appear when the mouse cursor goes over/near it. I think it's called a "mouse over" effect.
    To help illustrate:
    1. I want my Keynote slides as uncluttered as possible and,
    2. I want to start a choice of other slides or effects. Mouse over allows me to hide these in plain sight, so to speak, until I mouse over one of the triggers.
    How do I do this? Thanks, JLG [email [email protected] if I'm not clear above.]

    Welcome to the forums!
    Mouseover effects are not available in Keynote. You can have transparent (and therefore invisible) buttons with hyperlinks, but Keynote will only take action on a click, not a cursor hover.

  • How to get mouse over shape to display data in Visio 2013?

    Hi Visio pros,
    I am required to create a diagram of our servers rack setup and will be publishing to a Web page using Visio 2013.
    The goal is to mouse over the server shape and have the data be displayed. I have followed arguably every solution on the internet. I am either doing it wrong, or it might be outdated information.
    I'm hoping Paul Herber, or other Visio pros would be able to help me with this situation as I am on a tight schedule and have exhausted my resources.
    Things I have tried:
    user.visEquivTitle in ShapeSheet
    http://visualsignals.typepad.co.uk/vislog/2012/02/no-mouseover-with-visequivtitle.html
    and
    prop.(data name) in the comments within the miscellaneous section of the ShapeSheet.

    Hi Sir!
    I am open to the possibility that I may have done something wrong as I am very new to Visio.
    Here are the steps I followed:
    http://visio.mvps.org/ShapeSheet/
    Browser that I am using is Internet Explorer since I ran into problems with Google Chrome.
    However, after more reading I noticed the User.visEquivTitle provides a tooltip. If it is what I think it is, which is a small yellow box displaying a string, my employer would not want that.
    We're looking for something that will provide an aesthetic display of data after mouse over onto the shape.
    Thank you very much for your help.

  • How do I disable the webpage preview that pops up when I hover my mouse over a tab?

    I don't know why this started today, but it is driving me nuts!
    I was surfing the net, when all of a sudden I noticed that whenever I hovered my mouse over one of my tabs, a (poorly rendered) preview of the webpage popped up from my mouse. I really do not need this feature. I don't need to have a mini-webpage preview of another tab.
    Please, how do I disable this feature?
    *note: I have disabled all my add-ons, and still nothing. I disabled my hardware acceleration, and still nothing. Please!

    I've never noticed that. Do these old threads shed any light?
    * [https://support.mozilla.org/en-US/questions/924758 Disabling the tab drop down preview window??] - FVD suite
    * [https://support.mozilla.org/en-US/questions/884412 How can I disable the tab preview when I hover over a tab?] - other add-ons/settings

  • No FF button, no taskbar, must mouse over menu bar to see, Blekko search bar missing.

    Firefox button suddenly missing. Taskbar missing, reappears when Windows button on keyboard pushed, then disappears after performing desired task (like adjusting computer volume). Menu bar missing, reappears when moused over, but no Firefox button or Blekko searchbar, just address bar, reload button, home, favorites, add to favorites button.

    Firefox might be stuck in Full Screen mode. Use the F11 key to switch between full screen and normal modes.

  • 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.

  • Border around button on mouse over

    hi,
    I am trying to get a white border around a buttonwith green background on mouse over but the button always get filled with blue.
    <Button Height="35" Grid.Row="0" Background="Green" Grid.Column="1" Width="80">
    <Button.Style>
    <Style>
    <Style.Triggers>
    <Trigger Property="Button.IsMouseOver" Value="True">
    <Setter Property="Button.BorderBrush" Value="White"></Setter>
    </Trigger>
    </Style.Triggers>
    </Style>
    </Button.Style>
    </Button>
    the button background is green but the green color is overlapped with blue on mouseover.
    I want the green color to be there and a white border to appear around the button.
    can somebody help me with this?
    Thanks,
    Shaleen
    TheHexLord

    Yes, this behaviour is by deign in WPF. Since button control in WPF has one ButtonChrome component and its backgound will be re-rendered when we use mouse over it. I can show the default template of Button: (we can use Visual Studio 2010 + to export
    the default template)
    <ControlTemplate x:Key="Template1" TargetType="ButtonBase">
    <my:ButtonChrome Background="{TemplateBinding Control.Background}" BorderBrush="{TemplateBinding Control.BorderBrush}" Name="Chrome" RenderDefaulted="{TemplateBinding Button.IsDefaulted}" RenderMouseOver="{TemplateBinding UIElement.IsMouseOver}" RenderPressed="{TemplateBinding ButtonBase.IsPressed}" SnapsToDevicePixels="True">
    <ContentPresenter Content="{TemplateBinding ContentControl.Content}" ContentStringFormat="{TemplateBinding ContentControl.ContentStringFormat}" ContentTemplate="{TemplateBinding ContentControl.ContentTemplate}" HorizontalAlignment="{TemplateBinding Control.HorizontalContentAlignment}" Margin="{TemplateBinding Control.Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding UIElement.SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding Control.VerticalContentAlignment}" />
    </my:ButtonChrome>
    <ControlTemplate.Triggers>
    <Trigger Property="UIElement.IsKeyboardFocused" Value="True">
    <Setter Property="my:ButtonChrome.RenderDefaulted" TargetName="Chrome" Value="True" />
    </Trigger>
    <Trigger Property="ToggleButton.IsChecked" Value="True">
    <Setter Property="my:ButtonChrome.RenderPressed" TargetName="Chrome" Value="True" />
    </Trigger>
    <Trigger Property="UIElement.IsEnabled" Value="False">
    <Setter Property="Control.Foreground" Value="#FFADADAD" />
    </Trigger>
    </ControlTemplate.Triggers>
    </ControlTemplate>
    so we have one simple solution to apply our custom background in button, remove the property set in buttonChrome:
    <Window.Resources>
    <ControlTemplate x:Key="Template1" TargetType="ButtonBase">
    <my:ButtonChrome Background="{TemplateBinding Control.Background}" BorderBrush="{TemplateBinding Control.BorderBrush}" Name="Chrome" RenderDefaulted="{TemplateBinding Button.IsDefaulted}" RenderPressed="{TemplateBinding ButtonBase.IsPressed}" SnapsToDevicePixels="True">
    <ContentPresenter Content="{TemplateBinding ContentControl.Content}" ContentStringFormat="{TemplateBinding ContentControl.ContentStringFormat}" ContentTemplate="{TemplateBinding ContentControl.ContentTemplate}" HorizontalAlignment="{TemplateBinding Control.HorizontalContentAlignment}" Margin="{TemplateBinding Control.Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding UIElement.SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding Control.VerticalContentAlignment}" />
    </my:ButtonChrome>
    <ControlTemplate.Triggers>
    <Trigger Property="UIElement.IsKeyboardFocused" Value="True">
    <Setter Property="my:ButtonChrome.RenderDefaulted" TargetName="Chrome" Value="True" />
    </Trigger>
    <Trigger Property="ToggleButton.IsChecked" Value="True">
    <Setter Property="my:ButtonChrome.RenderPressed" TargetName="Chrome" Value="True" />
    </Trigger>
    <Trigger Property="UIElement.IsEnabled" Value="False">
    <Setter Property="Control.Foreground" Value="#FFADADAD" />
    </Trigger>
    </ControlTemplate.Triggers>
    </ControlTemplate>
    </Window.Resources>
    <Grid>
    <Button Content="Button" Background="Green" Name="button1" VerticalAlignment="Top" Width="75" Template="{StaticResource Template1}" />
    </Grid>
    Then you could contiune to apply your custom trigger in style to apply different color on MouseOver the button.
    Bob Bao
    Do you still use the same Windows 8 LockScreen always? Download Chameleon Win8 App quickly, that changes your LockScreen constantly.
    你是否还在看着一成不变的Windows 8锁屏而烦恼,赶紧下载这个
    百变锁屏
    应用,让你的锁屏不断地变化起来。

  • Specific region mouse over effect(Button 1 fades out and Button 2 fades in).

    Dear All -
    I am new to Flash CS5 and building Flash navigation bar with buttons on it.
    Below is my problem description that I want to solve with your help.
    I have a rectangular bar and placed one small button(Button 1) on this bar. Also, I have similar button(Button 2) with some graphics on it which is of similar size as to previous Button 1.
    Button 1 - Without graphic.
    Button 2 - With graphic on it.
    What I want is that, whenever mouse is taken over Button 1 placed on the rectangular bar, it should fade out and simultaneously Button 2 should fade in. I want only button region to be sensitive to this mouse over effect and not the complete rectangular bar.
    Kindly let me know how can I define the specific region(button region only) to be sensitive to mouse over effect in flash, and how to place Button 1 and Button 2 in layers so that both are at the same positition(so that there is no displacement of button detected).
    Thank You,
    Saurabh Khanna.

    Hello -
    Thank you for the reply. Button 1 does not have glowing effect, whereas Button 2 has a glowing effect. So what I wanted is that when initially Button 1 is loaded during page load, when I mouse over Button 1, Button 1 would fade out and Button 2 sitting behind Button 1 would automatically look like fade in(due to gradual fad out of Button 1 on top of Button 2).
    I could do this now, and would like to Thank you for your reply.
    I did this by creating movie clip on "Over" event of Button 1 and changing its Alpha property. But now what I want is how to gradually fade out, means when I remove my mouse from over button, then Button 2 should fade out gradually which will automatically make Button 1 fade in gradually.
    I could not find the "Out" event just like we have "Over" event for Button, so I assume this can only be done using ActionScript somehow.
    Let me know if I am going correct with my assumption, and possibly if you could help me achieve the remaining half(fading out gradually when mouse is removed from the button).
    Thank You once again for your reply.
    Thank You,
    Saurabh Khanna.

  • 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

  • The "Logout" button does not appear my Sakai sessions. I have to mouse over the blank area to find the link to logout. The Logout button does appear in Safari. Firefox version 10.0. Mac OS 10.7.2

    The "Logout" button does not appear my Sakai sessions. I have to mouse over the blank area to find the link to logout. The Logout button does appear in Safari. Firefox version 10.0. Mac OS 10.7.2

    To make sure that all required media is in the library contain the project you need to "Consolidate media"  see:  http://help.apple.com/imovie/mac/10.0/#mov882dee351
    You can then copy the library to your laptop with the Finder and open it with the same version of iMovie.  The last phrase is important since Apple has made changes in the project format several times even between minor updates of iMovie 10.  Earlier versions may not be able to read the library and later versions (not possible in this case) may cause the project to be updated so that it is no longer readable by the desktop version.   iMovie on the laptop will not at first find the copied library - you will have either to double click on it or File - Open library - Other and navigate to its location.
    Geoff.

  • Mouse over button actions for newbie

    Im a Newbie.  Im creating buttons that when you mouse over show an image. Id like the images to remain up when the cursor leaves the button until the cursor mouses over another button, see http://www.rawnarch.com/featured_williams_college.html
    any advice on how to do this simply

    The simplest fix is to change the DOCTYPE.
    You're using a XHTML Transitional DOCTYPE.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    If you replace it with a HTML5 DOCTYPE
    <!DOCTYPE HTML>
    you'll eliminate most of those "errors".
    http://bit.ly/fEEVZk

  • Mouse over effect for Button

    Hi,
        I have a button inside a vbox. I need to give mouse over effect to that button. Please give me the code.
    Regards,
    Jayagopal.

    Pls let me know if you have any issue with solution below:-
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        <![CDATA[
            import mx.effects.effectClasses.ResizeInstance;
            private var resizeInstance:ResizeInstance;
            public function mouseHandler(event:MouseEvent):void
                    if (resizeInstance)
                        resizeInstance.reverse();
                    else
                        resizeEffect.play([event.currentTarget],event.type==MouseEvent.MOUSE_OUT);
    ]]>
    </mx:Script> 
    <mx:Resize id="resizeEffect" heightFrom="22" heightTo="50" 
        effectStart="resizeInstance = ResizeInstance(event.effectInstance);"
        effectEnd="resizeInstance=null"/>
    <mx:VBox width="500" height="500" horizontalAlign="center" verticalAlign="middle">
        <mx:Button label="Sample Button" buttonMode="true"
        useHandCursor="true" mouseOver="mouseHandler(event)" mouseOut="mouseHandler(event)" />   
    </mx:VBox> 
    </mx:Application> 
    with Reagrds,
    Shardul Singh Bartwal

  • How to make movieclip controlled by button fade in/out on mouse over/out?

    Hi,
    I am new to Flash, and have tried searching numerous forums to the answer to this question, but nothing I try seems to work. Basically I am trying to create a single "Image" that triggers different animations when you mouse over different invisible buttons located on specific areas. The technique I am using is basically spacing out the animations over different frames, and using the gotoAndPlay command specifying the where the relevant animation is located.
    Here is the code from my actions layer with two animations:
    stop(); /*This ensures no animations are playing on the first frame*/
    /*Mouse over event for redbutton1*/
    redbutton1.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverToGoToAndPlayFromFrame_2);
    function fl_MouseOverToGoToAndPlayFromFrame_2(event:MouseEvent):void
         gotoAndPlay(2); /*This is the frame where the animaton triggered by redbutton1 is located*/
    /* Mouse Out Event for redbutton1*/
    redbutton1.addEventListener(MouseEvent.MOUSE_OUT, fl_MouseOutHandler_3);
    function fl_MouseOutHandler_3(event:MouseEvent):void
         gotoAndPlay(1) /*takes animation back to the start of timeline where it stops*/
    /*Mouse over event for bluebutton1*/
    bluebutton1.addEventListener(MouseEvent.MOUSE_OVER, fl_MouseOverToGoToAndPlayFromFrame_2);
    function fl_MouseOverToGoToAndPlayFromFrame_2(event:MouseEvent):void
         gotoAndPlay(30); /*This is the frame where the animaton triggered by bluebutton1 is located*/
    /* Mouse Out Event for bluebutton1*/
    bluebutton1.addEventListener(MouseEvent.MOUSE_OUT, fl_MouseOutHandler_3);
    function fl_MouseOutHandler_3(event:MouseEvent):void
         gotoAndPlay(1) /*takes animation back to the start of timeline where it stops*/
    Now basically all I need is some code that means that instead of abruptly starting and stopping the animation, the animation will fade in/out whenever the mouseover/out events are triggered. Note: the animation doesn't have to finish, it basically only plays while the mouse is over.
    Any help would be greatly appreciated.

    It will help oif you show the code for the code-based tweening.  The basics of getting it working with the MOUSE_OVER/OUR commands is fairly straightforward. 
    You have listeners for both events, and the handlers for each listener is where you activate the tweens.  For more seamless functionality it is usually a good idea to have the starting point of the tween be the point where the object currently is (its x or y (or both) propertiy) instead of a fixed value.

  • Can we change the color of button on mouse over ?

    Hi,
    - can we change the color of button on mouse over?
    - I have three groups on my presentation, each has 10 slides. I have inserted the relative progress text. It is showing (Page 2 of 30) but I want it (2 of 10). In other words I want relative progress text on group level, not on presentation level.
    Kindly help.
    Thanks in advance,
    Lucky

    Hi there
    Sorry, but your post seemed to initially infer you were just referring to a Button you would insert on a page. At least that's what I understood when I posted with what I did.
    Now it would seem you are referring to the Playback Controls that Captivate supplies? So either I grossly misunderstood your initial issue or you are now switching gears and asking about something different.
    What I posted earlier does not apply to the Captivate Playback Controls.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • 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.

Maybe you are looking for