Mouse over highlighting

Hello
i use layered menu in dvd studio. when i build the dvd, and played on computer, i have to click to the button to highlight, and click again to activate.
why must i click to highlight the menu? i want to highlight to mouse over. how?

Hi - welcome to the discussions. This is a fairly frequent question, and the answer is that this is the way layer based menus work. To get the rollover you have to use a standard overlay menu.

Similar Messages

  • CS3: mouse over, highlight only image

    Hi,
    I try to make the effect like in the attached file. I don't exactly know how to discribe it in english so I just made it in After Effects real quick :-)
    At a mouse over only the image should be highlighted.
    Hope you understand what I want to do.
    Can someone please explain me how I can create this effect.
    Greetings from Germany
    Christoph

    Just define the button so that the image is part of it. To do this, simply put all the layers you want into the button layer set. Then make the highlight layer so it covers only the image. When you mouse over the button, it will highlight the image.

  • Losing Mouse-over highlights

    I'm back with this one. Wacom is unfamiliar with the problem. It is recurring, and does always seem to follow user switching. Besides menu bar highlights and dock icon labels, I also lose window title bar gum drop highlights. No need to restart, however, as logging out and back in will restore the lost functions. I've unplugged the USB tablet and connected a generic USB mouse, but no change. I've uninstalled the latest tablet driver software, and re-installed the previous driver, with which I had no problems, and still having problems. Repaired permissions.
    This is not that big of a deal compared to others here, but this Mini has been running flawlessly for over a year and it bugs me that this might be fixable but I haven't a clue what to try next. I saw one report at Macintouch of a fellow who had this problem after installing Panther last year on his computer, but I've drawn a blank with any other queries.
    Just hoping someone who knows what's up will see this.

    Hi lynxalot,
    what you are describing sounds a bit like the Finder crashing. In your home folder, navigate to your Library and open the "Preferences" folder. Find the following two files and drag them to the desktop:
    com.apple.finder.plist
    com.apple.sidebarlists.plist
    If this solves your problem you can delete those two. If not, put them back into your "Preferences" folder.
    -Petra

  • Mouse over - how to select text

    Hi all,
    I trying to build a function that when the mouse is moved over a text, then that text is selected and some actions are performed. At the moment I am using the g.drawstring() to place the text inside a jPanel, remember the XY coordinate of that text and then, when the mouseMoved event is trigger I compare the mouse position with the original drawing coordinate. It works fine if the string is single character, but it gets very complicated when the string is made up of several words "Hello Java" and I would like to select only the "Hello" or the "Java", as I don't know in advance the XY coordinate of the second word, as the font is not proportional (what I am doing now, is search for the " " and set boundaries of each individual word within the string...a bit cumbersome, but kind of works
    My Question is:
    is there a better way to place the string on the panel, other than the g.drawstring() that can make reading and identifying much easier? perhaps, placing the string inside some kind of other component which the mouse that 'identify' to be over more easily?
    thanks for the help
    P.S. I have read some posts, which address specific questions; mine is more a question on best architecture/availability of Java.components/API that can be used to do my task in the best way.

    thanks for your reply.
    I am basically trying to draw a node and edge pattern, where the nodes are the text strings and the edges are simple lines. posX and posY are the coordinate of where to strings are drawn. Now, what I would like to do is to move the mouse over and highlight (for exampl) the string but only single words, not the whole string (which could be, for exampl, "Hello Java"), so highilighting either Hello or Java, depending on where the mouse is. But I need to place the string (or the JLabel or JText) at specific posX, posY coordinates inside my JPanel.
    protected void paintComponent(Graphics g) {
    super.paintComponent(g);
    /** SOME CODE*/
    Font font = new Font("Arial Unicode MS", Font.PLAIN, 20);
    g.setFont(font);
    g.setColor(Color.black);
    g.drawString(textString panelXSize/2-posX, panelYSize/2-posY);
    g.drawLine(panelXSize/2, panelYSize/2,panelXSize/2-posX, panelYSize/2-posY);
    }

  • Mouse-over not working

    My mouse-over isn't working well at all with anything. I can't activate expose by the corners of my desktop, app titles don't appear on my dock when i hover the cursor, no highlights in context menus and if the option i click has another context menu, i have to click that option twice, i had my dock on auto-hide and had to undo that because my cursor isn't recognized there either. And mouse-over within apps isn't working either (like Safari, iCal, etc)
    I cant make any specific distinctions, but this all started right after downloading OS 3.1 for my iPod Touch. Just before that, I had installed iTunes 9. Don't know if there's any correlation to these updates, but after all was said and done that night, my mouse-over was pretty much disabled =\
    ANY help would be greatly appreciated. Thanks!

    So, I'm not sure how, but switching out my mouse seemed to cure the problem. I am now in the market for a new mouse (cuz the substitute I'm using is too tiny lol)

  • Please, advise mouse-over instant word by word translation for FF9

    in older version of FF I had INSTANT mouse-over the word Google translation add-on, which is not available at FF9 version. It is a huge inconvenience for me (and sure many others) , please advise which add-on has such option? I searched for one for a few weeks, and only found some with "highlight the word" (selection) option , which is quite disturbing and takes more time and does not always works when it's needed. PLEASE, advise if I can some how use google add-on again. Best regards,
    Iri

    Not sure how you ended up here. This is the discussion area for the iBook G4.
    You want to post your question in the Intel iMac discussion area.

  • Mouse over question

    i've made some buttons that on mouseover shows a larger picture above the button. when the cursor leaves that button though the picture disappears until the user mouses over the button again. is there a way to ensure that the picture stays up until the user mouses over another button (then they would see another image)?

    Gotcha. Well, here's a "for instance."
    Suppose you turn an image into a Movie Clip Symbol. The first frame of your new clip is where your initial button image is. On frame two insert a keyframe and name it "Start" or something like that.
    Then, insert a new layer above your original button image. Using the square tool, draw a square over your image. Convert that square to a button symbol. Highlight it, then choose "Edit in Place." Highlight the square image again, right click and choose "cut." Insert a new keyframe on the "HIT" frame, then paste in place that square. You can exit edit in place.
    Click on the button you just made, go to Actions and write something like this.
    on(rollOver){
           gotoAndPlay("Start")};
    This will move the playhead to the start frame. If you plan on animating your button, make sure you place a keyframe and the end of your animation. Open your actionscript layer, if you have one (otherwise, make one and insert a stop action in the last frame). stop();
    This will make the movie play when someone rolls over the hit button you made, which is placed over your original image. It will stop the playhead wherever your button animation stops. If you do the same thing for another button, when the user clicks the other button it will move the playhead to that movie section.
    I'm not the best at explaining these things, but hopefully that offers some clarity. I can try to get a little more detailed if need be.
    Good luck.

  • Mouse Over event not dispatching properly.

    Hi,
    I am working on a scroll for iPhone, in which I'm using touch scrolling, it is working fine with less number of list items, but when I increases the nuber of items in scroll list, the mouse over event not propogates properly, I mean to say those events are overlapping due to some extra memory issue, can any one have any idea about it.
    I'm pasting code for your reference :
    public function IPhoneScroll( pContent:DisplayObjectContainer, pStage:Stage ) {
                                  _stage = pStage;
                                  _myScrollElement = pContent;
                                  _canvasHeight = _myScrollElement.height;
                                  start();
                                  // add handlers
                                  _myScrollElement.addEventListener(MouseEvent.MOUSE_DOWN, on_mouse_down);
                                  _myScrollElement.addEventListener(Event.ENTER_FRAME, on_enter_frame);
                        private function on_enter_frame(e:Event):void {
                                  if ( started )
                                            // decay the velocity
                                            if(_mouseDown) _velocity *= MOUSE_DOWN_DECAY;
                                            else _velocity *= DECAY;
                                            // if not mouse down, then move the element with the velocity
                                            if (!_mouseDown)
                                                      var textHeight:Number = _myScrollElement.height;
                                                      var y:Number = _myScrollElement.y;
                                                      var bouncing:Number = 0;
                                                      // calculate a bouncing when the text moves over the canvas size
                                                      if (y > 0 || textHeight <= _canvasHeight) // textHeight <= _canvasHeight => when the item is smaller than the stage.height, align to the top
                                                                bouncing = -y * BOUNCING_SPRINGESS;
                                                      }else if( y + textHeight < _canvasHeight){
                                                                bouncing = (_canvasHeight - textHeight - y) * BOUNCING_SPRINGESS;
                                                      _myScrollElement.y = y + _velocity + bouncing;
                        // when mouse button up
            private function on_mouse_down(e:MouseEvent):void
                if (!_mouseDown)
                    // get some initial properties
                    _mouseDownPoint = new Point(e.stageX, e.stageY);
                    _lastMouseDownPoint = new Point(e.stageX, e.stageY);
                    _mouseDown = true;
                    _mouseDownY = _myScrollElement.y;
                                            // add some more mouse handlers
                    _stage.addEventListener(MouseEvent.MOUSE_UP, on_mouse_up);
                    _stage.addEventListener(MouseEvent.MOUSE_MOVE, on_mouse_move);
            // when mouse is moving
            private function  on_mouse_move(e:MouseEvent):void
               if (_mouseDown)
                    // update the element position
                    var point:Point = new Point(e.stageX, e.stageY);
                    _myScrollElement.y = _mouseDownY + (point.y - _mouseDownPoint.y);
                    // update the velocity
                    _velocity += ((point.y - _lastMouseDownPoint.y) * SPEED_SPRINGNESS);
                    _lastMouseDownPoint = point;
            // clear everythign when mouse up
            private function  on_mouse_up(e:MouseEvent):void
                if (_mouseDown)
                    _mouseDown = false;
                    _stage.removeEventListener(MouseEvent.MOUSE_UP, on_mouse_up);
                    _stage.removeEventListener(MouseEvent.MOUSE_MOVE, on_mouse_move);
                        public function release():void
                                  _myScrollElement.removeEventListener(MouseEvent.MOUSE_DOWN, on_mouse_down);
                                  _myScrollElement.removeEventListener(Event.ENTER_FRAME, on_enter_frame);
                                  _myScrollElement = null;
    The highlighted part is working properly for less items but not for more number of items, lets say 200 movieclips in scroll lists.
    Please help me on this, thanks in advance.
    Vipul

    Hello.
    Look I have an idea, I donu2019t know if you already try it.
    Please give the format that you want percentage, decimals etc...
    In the Excel where the charts are being directed
    Then redirect de chart to the same cells, these with the porpoise of refreshing
    Now each serie have the format.
    Please let me now what happen with these

  • Callback called when mouse over

    I have a button which have a callback. When the mouse is over the button (without click), the callback is called. I would like to have the callback called only on mouse click and not on mouse over. Is it possible ?

    sfl,
    Right-click the button in UIR editor and choose View Control Callback.
    You will be directed to the C-file that has the code for the button's callback.
    In this (highlighted) callback function, you will see a switch-case statement.
    Remove the block for the case EVENT_MOUSE_OVER. Simply select with cursor and delete.
    To change the defualt event setting (to avoid getting this event for newly created buttons) :
    Open your UIR file, and select Code > Preferences > Default Events from the menu.
    There you can select for which events the code generator will create a case statement further on.
    Hope this helps, 
    S. Eren BALCI
    www.aselsan.com.tr

  • Mouse over events have just stopped working

    My mouse over effects have stopped working.
    1/ Dock does not longer show tips and does not magify
    2/ Drop downs don't highlight with the blue bar
    I've trashed the preferences file and also reset/shutdown the mac but it's still not working.
    Can anybody help
    Thanks.

    I'm logging this fix myself in-case anybody else searches this problem.
    Basically:
    1/ Shutdown the Mac
    2/ Hold down the "Apple" Key, The "alt" key, The "R" key and the "P" key all together that's 4 keys!
    3/ Turn on your mac
    4/ The mac will make the boot sound, make sure it does it at least two time then let go of the keys.
    5/ Once the mac has booted up this should fix the problem.
    Disclaimer: This worked for me and the information was given to me by Mac support. If your un-sure about anything phone mac support if you don't want to risk anything.
    Just trying to help others

  • Mouse over / rollover

    Can you do mouse overs or rollovers on iWeb? Where you drag the pointer over a link and the links enlarges or highlights.
    Sully

    You can't create those kind of rollovers IN iWeb. You'd have to create your graphics separately and then edit your files after publishing. iWeb only handles creating graphic rollovers when you use a non web safe font (it gets converted to a set of png's in the default text rollover colors). I've got an example of using text dingbats as rollovers here.
    http://web.mac.com/makentosh/iWeb/tipsfromtheiceberg/Blog/416F8EE3-F511-47E8-84F E-80851728F54B.html
    I've got another page here (along with a demo file for download) that displays how you can create full color rollovers using the demo version of eZedia QTI. It has it's own drawbacks in that you still have to edit your files after publishing for Windows browsers (to make it look better). Also, for IE specifically, if you use a background graphic, it can't be a .png or worrying things will happen.
    http://web.mac.com/makentosh/iWeb/zample/abutton.html

  • Oracle form 6.0, how to do 3D chart, calender,mouser over changing....

    oracle form 6.0, how to do 3D chart, calender,mouser over changing....in we form, like microsoft style.
    Or it's better use 9i or 10g jdeveloper? or other tchnology?

    The cpu resources are only limited once the cpu's are 100% utilized. It is highly unlikely that dom0 will try to use 100% of a cpu, let alone all cpus. Only when there are no idle physical cpus would you run into issues.
    You may want to try reducing the number of vcpus in the windows guest. I have seen reports from users claiming that having more vcpus in a windows guest causes it to run slower.

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

  • Spry Menu bar mouse-over?

    Hi there,
    I have created a spry menu bar and it's almost finished but I am having trouble with these 2 things:
    1. Only the buttons that have submenus change when the mouse pointer moves over it. This happened when I applied a background image to the buttons.
    2. I don't want the background image to be applied to the submenu items. I want those to have just 1 color and another color when the mouse pointer moves over it. (If this last part isn't possible, I would just like the first part to happen: I want it to have a color and not the background image that I applied)
    Could you please have a look at my CSS and tell me what I did wrong? Or what I should add?
    Thank you very very much.
    EC
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    padding: 0;
    list-style-type: none;
    font-size: 155%;
    cursor: default;
    width: auto;
    font: "Bell MT";
    margin: 0;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 90%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 204.8px;
    float: left;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 204.8px;
    position: absolute;
    left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 204.8px;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: 0 0 0 0;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #151515;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    background-color: #EEE;
    padding: 0.5em 2.5em;
    color: #C3C2C2;
    text-decoration: none;
    background-image: url(Skyline/images/Background%20Menu%202.png);
    background-repeat: repeat-x;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #414040;
    color: #C3C2C2;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    background-color: #414040;
    color: #C3C2C2;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    background-image: url(Skyline/images/Background%20Menu%202.png);
    background-repeat: repeat-x;
    background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-color: #414040;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    background-image: url(SpryAssets/SpryMenuBarDownHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    background-image: url(SpryAssets/SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 50%;

    http://foundationphp.com/tutorials/sprymenu/customize2.php
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Interactive PDF with mouse-overs was created in Illustrator, now pauses and flashes when opened in Acrobat

    I have created an interactive PDF using Illustrator that has mouse-overs. When i export the file and then open it in Acrobat there is odd pausing on teh image bewteen mousing over it and the text callout that shold then display. Did I export or save incorrectly?

    Thank you for both responses! I'm impressed with the fact that you're reading my post.
    I'm new to tech matters with Adobe/PDF/Nitro tho I've been using them for several years.
    The original file was created by an agency and given to independent contractor to use.  I don't know which program they used to create the form. And I don't know what XFA or LiveCycle Designer means  because I'm not technically sophisticated unfortunately.
    I used Nitro 6 to populate the data and have a number of forms already filled out, which I periodically open and modify and resubmit. But Nitro 6 is acting sick, despite reinstalling several times.  I'm attempting to see if it's worth transitioning to Adobe Acrobat, i.e., can I reopen the forms I've populated and continue to work with them.  I like some of the Adobe features for other purposes (e.g., OCR). 
    Any help in determining how to open the form while keeping the data?

Maybe you are looking for

  • Error while migrating repository files from Brio to Interactive reporting

    Hi, I am doing migration of Brio from 8.3.1 to Hyperion Interactive Reporting version 11.1.2.1. I am referring http://docs.oracle.com/cd/E12825_01/epm.111/hs_migration.pdf I am facing error when I am migrating resitory files from brio 8 to Interactiv

  • How to put headers and footers in web analysis

    Hi All, Can anyone of you please let me know how to put headers and footers in web analysis... Thanks & Regards Ambica Atluri

  • Cap2, exe close button not working

    I'm publishing to an exe, and I have a disclaimer page where I want the user to choose between agree & disagree. Agree is easy, I added a button, on success: continue. With Disagree, I want the whole project to close, so I looked up the code for maki

  • 20" iMac screen gets very light at the bottom.

    I just got a new 20" iMac and the screen appears to get lighter and washed out towards the bottom half of the screen. So bad that for example in the itunes library it is supposed to alternate from blue to white, but at the bottom of the screen it loo

  • Cost Center Structure at a University.

    Hello all, At the university I am working for here is what there Cost Center naming convention appears: They use all 10 digits and this is how it is broken down--- XXX                                XX                    XX                      XXX C