Mouse Over Behaviour

I am currently developing a toolbar application and have an
issue with mouse events.
Currently there is a parent canvas which has a mouseOut event
where the canvas is hidden. Within that canvas there is a Hbox
which contains images which have an mouse click event. When I mouse
over the image it triggers the parent MouseOut event.
having looked at
http://nondocs.blogspot.com/2007/04/flexfaqmouseevents.html
but it does not resolve the problem. having also tried to identify
the event.target.id but it does not register for the imagme
mouseOver and gives exception errors.
Anybody got any ideas for the HBox child does not trigger the
MouseOut event. Also tried switching it to a button.
I would really like to not have to hack a solution with using
the mouse x and y coordinates.
Hope somebody can help Im going round in circles.
Thanks

The mouse events are very low-level and fire in unexpected
ways.
Usually you should use the rollOver and rollOut events. The
seem to be better behaved.
Tracy

Similar Messages

  • Behaviour on mouse over ?  Please help

    Hi,
    I am very new here so please be patient when you read about
    my "ignorance". I am making a website for a friend designer and
    here is the idea :
    - the "main" page contains a picture of a cabinet with 5
    drawers (which serve as menu buttons)
    -The idea is that when you roll over the drawers with the
    mouse, the picture changes into one with that particular drawer
    open and the subject written next to it.
    -When you roll further the next picture appears, etc.
    -When clicked on any of those pictures (the open drawer) the
    behaviour should be to go to the dedicated html.page
    The problem :
    The picture is a full screen size picture (250kb).
    I thought that with putting hotspots on the main picture, and
    using the hide and show layers behaviour I could make this work but
    it does not seem to do anything right. (when moving the mouse over
    and off the drawer the picture keeps jumping back and forward)
    Can anyone suggest a better way to do this ?
    Please feel free to ask for more info if the above does not
    make sense to you.
    Thanks
    Bubbles

    What you probably want to do is create invisible buttons that you place over the main image.  These will provide the rollover triggering that you want.  To make invisible buttons you can create button symbols that only have a shape in their "Hit" frames.  That creates a button that you can still see while editing but do not appear in the published file when you run it.
    Then you need to have an image that rolling over that button will bring into view.  It would be preferable to have the images that appear be away from the buttons so that they don't interfere/block the buttons, so each larger image may have to be placed in a different area.
    To control an image that appears, for starters you could just have it invisible and make rolling over the button make it visible.  You would need to convert these images to movieclips in order to accomplish that.  So let's say you create an image movieclip and place it on the stage and assign it an instance name of "image1" (instance names are assigned in the properties panel).  And for that image/movieclip's button you add a button over the main image and give that an instance name of "btn1"
    To make them work as planned, in the timeline in the same frame (different layer) where you have btn1 and image1, you would add code as follows...
    image1.visible = false;
    btn1.addEventListener(MouseEvent.ROLL_OVER, showImg1);
    btn1.addEventListener(MouseEvent.ROLL_OUT, hideImg1);
    function showImage1(evt:MouseEvent):boid {
         image1.visible = true;
    function hideImage1(evt:MouseEvent):boid {
         image1.visible = false;

  • Gallery Mouse Over Images

    Hi everyone, I was wondering how this Gallery was done,
    When mousing over the thumbnails, the larger image appears
    beneath.
    http://www.perrelink.com.au/portfolio/portfolio1.htm
    Would anyone have a tutorial, or advice on how thats done,
    Many thanks,
    Terrie

    Hiya Nadia, , Yes, I was able to work out how to use the
    show/hide to make
    a gallery...
    Im from Melbourne....... :)
    Thanks again for your help,
    Terrie
    ": Nadia : ** Adobe Community Expert **"
    <[email protected]> wrote in message
    news:ev7jno$3h3$[email protected]..
    > Terrie,
    >
    > Yep, Sinclair and Joe are correct, I used the
    Dreamweaver Show/Hide Layer
    > behaviour to achieve the effect.
    >
    > PS: Where are you from in Au?
    >
    > --
    > Nadia
    > Adobe® Community Expert : Dreamweaver
    > ----------------------------------------
    > CSS Templates |Tutorials |SEO Articles
    >
    http://www.DreamweaverResources.com
    > ~ Customisation Service Available ~
    >
    http://www.csstemplates.com.au
    > ----------------------------------------
    > ~ Forum Posting Guidelines ~
    >
    http://www.adobe.com/support/forums/guidelines.html
    > CSS Tutorials for Dreamweaver:
    >
    http://www.adobe.com/devnet/dreamweaver/css.html
    >
    >
    >
    >
    > "twebber" <[email protected]> wrote in
    message
    > news:ev67gk$eb8$[email protected]..
    >> Hi everyone, I was wondering how this Gallery was
    done,
    >>
    >> When mousing over the thumbnails, the larger image
    appears beneath.
    >>
    >>
    http://www.perrelink.com.au/portfolio/portfolio1.htm
    >>
    >> Would anyone have a tutorial, or advice on how thats
    done,
    >>
    >> Many thanks,
    >>
    >> Terrie
    >>
    >
    >

  • 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锁屏而烦恼,赶紧下载这个
    百变锁屏
    应用,让你的锁屏不断地变化起来。

  • Insert flash in layer via mouse over

    Hi
    Using the mouse over option with behaviours I can change the
    text of a layer
    no problem. However if I paste flash code into the new HTML
    code box the
    flash doesn't work.
    Should it? or can I only use text? I considered using
    separate layers and
    the make layer visible sequence but wasn't sure if it would
    make the code a
    bit messy
    thanks
    Ian

    That should work, provided that you have the link to the
    javascript file
    that contains the function definition -
    AC_FL_RunContent
    in the head of the page.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Ian" <[email protected]> wrote in message
    news:[email protected]...
    > Hi Murray
    >
    > the code I'm pasting is as below, I could usae just
    plain text but I
    > wanted a typewriter effect.
    >
    > cheers
    >
    > Ian
    >
    > <script type="text/javascript">
    > AC_FL_RunContent(
    > 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','516','height','44','title','tickermain','src','graphics/tickermain','quality','high', 'pluginspage','http://www.macromedia.com/go/getflashplayer','wmode','transparent','movie', 'graphics/tickermain'
    > ); //end AC code
    > </script><noscript><object
    > classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    > codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    > width="516" height="44" title="tickermain">
    > <param name="movie" value="graphics/tickermain.swf"
    />
    > <param name="quality" value="high" />
    > <param name="wmode" value="transparent" />
    > <embed src="graphics/tickermain.swf" width="516"
    height="44"
    > quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    > type="application/x-shockwave-flash"
    wmode="transparent"></embed>
    > </object>
    > </noscript>
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> What code are you pasting into the behavior?
    >>
    >> --
    >> Murray --- ICQ 71997575
    >> Adobe Community Expert
    >> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >> ==================
    >>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >> ==================
    >>
    >>
    >> "Ian" <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Hi
    >>>
    >>> Using the mouse over option with behaviours I
    can change the text of a
    >>> layer no problem. However if I paste flash code
    into the new HTML code
    >>> box the flash doesn't work.
    >>>
    >>> Should it? or can I only use text? I considered
    using separate layers
    >>> and the make layer visible sequence but wasn't
    sure if it would make the
    >>> code a bit messy
    >>>
    >>> thanks
    >>>
    >>> Ian
    >>>
    >>
    >>
    >
    >

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

  • Pop Up Text in an applet on mouse over event

    Can anyone help me to design a pop up text message to be displayed in an applet on moving your mouse over a particular control. Plz. Its urgent

    To show a pop-up use javax.swing.Popup. Add a mouse listener to button. When mouse enters the button pop-up shows and when mouse exited the button, pop-up disappears. This pop-up is capable of displaying simple message to any swing component. Sample code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    * @author mrityunjoy_saha
    * @version 1.0
    public class AppletWithPopup extends JApplet {
        private Popup popup;
        private JButton button;
        private JLabel message;
        @Override
        public void init() {
            setLayout(new FlowLayout());
            button = new JButton("Hello");
            message = new JLabel("This is a JLabel. It can be any swing component.");
            button.addMouseListener(new MyMouseListener());
            add(button);
        private class MyMouseListener extends MouseAdapter {
            @Override
            public void mouseEntered(MouseEvent e) {
                System.out.println("Mouse entered.");
                PopupFactory factory = PopupFactory.getSharedInstance();
                popup = factory.getPopup(AppletWithPopup.this, message, (int) button.getLocationOnScreen().
                        getX() - 20, (int) button.getLocationOnScreen().getY() + 40);
                //popup = factory.getPopup(AppletWithPopup.this, message, 50, 10);
                popup.show();
            @Override
            public void mouseExited(MouseEvent e) {
                System.out.println("Mouse exited.");
                if (popup != null) {
                    popup.hide();
    }If you are talking about alert box (where some message can be displayed), in above example instead of javax.swing.Popup use javax.swing.JOptionPane. In case you are using JOptionPane, make it visible in mouseEntered() method and hide it in mouseExited() method.
    Thanks,
    Mrityunjoy

  • When i open firefox from my desktop, it won't open as a full page,only a tiny page when i mouse over the firefox icon on my taskbar

    if I open firefox, it doesn't go to my home page, instead my desktop stays up. if I mouse over the firefox icon on the taskbar a tiny homepage pops up but you can't make it bigger.

    This has happened to me many times but on the older FF 3 It could be a small bug, One should list the PC's being used as it could be related? Mine is an E-Machine Mod, W3609 running W7.

  • Mouse over events on alv report?

    Hello,
    i want to make mouse over event for rows of a alv report.When mouse is on a row there will be shown explanations.
    how can i do this?
    thanks inn advance.

    Cem ,
    Please follow the code mentioned in the links below :
    Hotspot in ALV grid
    http://wiki.scn.sap.com/wiki/display/Snippets/Interactive?original_fqdn=wiki.sdn.sap.com
    Thanks
    Ankit

  • I need help identifying and removing annoying gadget that shows all open windows and applications when I mouse over a corner.

    It seemed like a good idea at the time. Some time ago I installed a gadget (doesn't seem to be an item in my Applications folder) which, when I mouse-over the lower-left corner of my screen, brings up a screen showing reduced-size versions of all open application windows and Finder windows. I've tried to identify what it is, and where it is located, so I can remove it, but to no avail.
    I'd really appreciate any help getting rid of this thing. Thanks!

    Hi Paul,
    Check System Preferences>Accounts (Users & Groups in later OSX versions)>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Check the System Preferences>Keyboard>Keyboard Shortcuts.

  • How do you SELECT ALL on a page (used to CTRL L-CLICK in margin then mouse over selection)?

    In Pages 4x you could hold CTRL+LEFTMOUSE while in the margin area then select multiple things on that page you were looking by mousing over them (including selecting all).  Now you have to go one item at a time to delete? Is there a work-around?

    Ghazgkull wrote:
    . ctrl+clicking in iTunes selects all.
    No, it does not. You are still incorrect.
    ctrl + click does NOT select anything.
    It checks all boxes when you ctrl click on one box.
    If you want to select a bunch of consecutive songs...
    Select one then Shift click another, This will select all items from the first selection to the last selection.
    This is just plain nutty and is normally achieved on Windows 7 using ctrl+a,
    No it doesn't
    ctrl + a selects all.
    You are not selecting anything when you check all boxes. You are sinmply checking all boxes.

  • How do you create the 'cream pop-up info text boxes' that appear when you hover mouse over?

    Hi people,
    I really need to know how you create the 'cream pop-up info text boxes' that appear when you hover your mouse over an object on a webpage (and often in any program e.g. Photoshop) for more than a second. I need to know because the logo on my website is the navigation tool used to return to the homepage. It is always found in the top left so the user can always click it to return.
    The only problem is im the only one who knows that when you click my logo, you return to the homepage. I need one of these 'cream info boxes' (forgive my lack of knowledge) to appear so the user will figure it out.
    Thanks for taking the time to read my question...

    Using your code it should look like this where title attribute is in red:
    <div id="apDiv2"><a href="index.html"><img src="divs_dw/jtgd_logo_trans.png" alt="jtgd_logo" title="your description goes here" width="176" height="163" /></a></div>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

Maybe you are looking for

  • Launching tab is crashing when browsing in another page?

    This is so bizarre I don't know whether it is just IE EPM or something strange about the forums. But it has happened twice. Yesterday I lost a partially composed reply from it and today I lost all context from My Forums. I suspect it is a combination

  • Web Photo Templates in Dreamweaver 8

    Hi ! I'm trying to set up a photo album that uses the same CSS template that I use for the rest of the site. I know I will have to modify it but that's not the problem. I can't find the Photo Templates folder that is referenced in Jolantha Belik's We

  • Word Processing with an IPad 2

    Hi all! I just got an iPad 2 (WiFI, 32GB) and want to write some documents on it. I know I can read word documents on the iPad, but how can I create and save them? I apologize if this question has previously been answered, but I've been looking much

  • Duplication of Child Items in BOM

    Hi, When creating a BOM , if I am selecting same Child Item more than Once, it is getting updated. Issue :- It should not accept the same child item more than once in the BOM under any circumstances. Pls. help with Validation process asap. Regards Mo

  • For the people that have gold iPhones

    For those of you who own the gold iPhone 5s, do you guys ever get the feeling that the gold fades away. My iPhone 5s looks more like a very light rose gold, if not, almost silver color. Is this normal?