Workaround for mouse over

Hi,
is there a workaround for mouseover ?
We have a few buttons with mouseover and when mouseover is triggered, a textbox shows the desired text.
We now learned that the mouseover is not supported in HTML5 export.
So, question is clear, is there a workaround ?
Joep.

Dag Joep (Nederlandstaling, niet?)
No rollovers are supported for HTML5 output, you'll have to replace them by showing on click (tap).
Lilybiri

Similar Messages

  • Image question for mouse over.

    I hope this is a simple question.  Can I place a 150px wide image on my page and when you mouse over have the same photo pop up that is 300 px wide?  I know I can swap the images if they are both 150 px.  But I want to see the larger photo with the mouseover can someone explain or show me where to learn how to do this if I can even do it? Maybe it is not mouseover image swap and it is called something else? Thanks in advance.

    tl1_mc.visible=tl2_mc.visible=tl3_mc.visible=false;
    for(var i:int=1;i<4;i++){
       this["tl"+i+"_mc"].addEventListener(MouseEvent.MOUSE_OVER,overtl);
       this["tl"+i+"_mc"].addEventListener(MouseEvent.MOUSE_OUT,offtl);
    function overtl(e:MouseEvent=null):void{
       var n:int=int(e.currentTarget.name.substr(2,1));
       this["tl"+n+"_mc"].visible=true;
    function offtl(e:MouseEvent=null):void{
       var n:int=int(e.currentTarget.name.substr(2,1));
       this["tl"+n+"_mc"].visible=false;

  • Use DW for mouse over button images but won't validate

    Hi All,
    I've done this three times and give up.  Here's the link http://pooledesignstudio.com/wendysawesomeart/
    I used the Rollover Image icon on the common tool bar and created my nav bar.
    When I try to validate I get 24 errors and they are in the code that DW generates to make the rollover switchout happen. I have no idea how to fix it.
    Please help.
    Thank you,
    KathPoole

    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

  • Supported pdf versions and mouse over problem for Xcelsius 2008 SP3

    Hi,
    Have below queries regarding Xcelsuis 2008 SP3.
    (1) Encountered last character truncation problem for the x-axis and y-axis labels when viewed using adobe reader versions higher than 9.0.0. Viewing the pdf doc using adobe reader v9.0.0 has no label truncation problem.  Preview in Xcesius is also ok.
    (a) Y-axis label - eg. No. of students. The last char [s] is truncated when exported to pdf.
    (b) X-axis label u2013 when labels are oriented vertically, they are very close to the x-axis. The last char is truncated.
    Please advise what is the supported pdf versions for Xcelsius 2008?
    Any workaround to overcome the truncation problem?  
    (2) Mouseover in charts. When the series name has < symbol, Xcelsius truncates the remaining text that's after the < symbol.
    Is this a limitation that < symbol cannot be used? Any workarond for this? Any document to reference on the limitations of Xcelsius? e.g. If series name is '>1 and <=2', mouse over desc becomes '>1 and '.
    Thanks and Regards.

    Hi ,,There are a lot of developments in SP3 version. But some loopholes which I caughtu2026
    1. The value button/spinner is no longer supporting a cell having some formula. Also the time it is taking to load data which depends on value button/spinner as a result of change in it, is comparably very high as compared to earlier version.
    2. Still there is no component like pre-load animation. So it is difficult to know weather the tool is running or not when one selects an option in some selector.
    3. One still finds it difficult to work with a large range of data/complex spread sheet in xcelsius as it crashes while exporting.
    4. Export to excel still needs Tomcat Web server,Java help. It is not simplified.

  • Mouse over solution for jdk1.0

    hi all,
    I am interested in making the equivalent of a mouse over solution for a java applet.
    Basically I'll have approximately 100 Rectangle objects representing images on the applet.
    When the person moves the mouse over these 100 rectangle objects, i'll use contains() method to determine if the mouse is over the object in question.
    If true, the image will be changed to represent the mouse over event .
    I thought for a msecond about looping through all the rectangle objects each time the mouse moves. but that seemed impractical since the mouse can move pretty quickly.
    It seemed to me the best option was to extend the Rectangle object and put an event listener on it . so that the Rectangle object can be triggered at the same time or individually as needed in response to the mousemove event .
    Does anyone have any thoughts about that ?
    does anyone know how I would possible implement something like that for java 1.0
    thanks
    stev

    it seems like I have to extend Component some how to get access to enableEvents method.
    Here is my class
    class ListeningRectangle extends Rectangle{
         public ListeningRectangle(int w, int x, int y, int z, Component c){
              super(w,x,y,z);
              c.enableEvents(AWTEvent.MOUSE_MOTION_EVENT_MASK);
         public void mouseMoved (MouseEvent me) {
         System.out.println("event has been received by rectangle");
    I am using this class in conjunction with a java applet (targetted to 1.0-1.1 ).
    I'm passing a reference of the applet in to create this ListeningRectangle like this
    new ListeningRectangle(a,b,c,d,this);
    my objective is to have about 100 different rectangle areas defined on the java applet.
    and when the person moves the moves the mouse of the applet rapidly, only the appropriate ListeningRectangle object would respond.
    any ideas on how to get this done ? ?
    The full code is below
    stephen
    ================================
    full source code below
    import java.applet.*;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    public class TestEventHandler extends Applet implements Runnable{
         ///variables
         public static Color bgColor = Color.blue.darker();
         private Thread thread;
         public Graphics offGfx;
         private Image offImg;
         private Image basicOffImg;
         public static int xlen;
         public static int ylen;
    public ListeningRectangle lr;
         ///methods
         public void init(){
         xlen = size().width;
         ylen = size().height;
         basicOffImg = createImage(xlen, ylen);
         offImg = basicOffImg;
         offGfx = offImg.getGraphics();
         setBackground(bgColor);
         offGfx.setColor(bgColor);
         offGfx.fillRect(0, 0, xlen, ylen);
         offGfx.setFont(new Font("Arial, Helvetica, Helv", 1, 15));
         FontMetrics fontmetrics = offGfx.getFontMetrics();
         offGfx.setColor(Color.white);
         String s = "pleaseWait";
         offGfx.drawString(s, xlen / 2 - fontmetrics.stringWidth(s) / 2, ylen / 2);
              lr = new ListeningRectangle(20,20,50,50,this);
              offGfx.fillRect(20,20,50,50);
         public void start(){
         if(thread == null)
              thread = new Thread(this);
              thread.start();
         public void run(){
              while(thread != null){
         try
              Thread.sleep(100L);
              catch(InterruptedException _ex) { }
         public void stop()
              if(thread!=null)
         thread = null;
         public void update(Graphics g){ paint(g);}
         public void paint(Graphics g){
         g.drawImage(offImg, 0, 0, null);
    public boolean mouseDrag(Event event, int i, int j)
    if(true)
    return false;//means ripple
    } else
    return true;//means do not ripple for jvm1.0
    public boolean mouseMove(Event event, int i, int j)
    if(true)
    return false;
    } else
    return false;
    class ListeningRectangle extends Rectangle{
         public ListeningRectangle(int w, int x, int y, int z, Applet c){
              super(w,x,y,z);
              c.enableEvents(AWTEvent.MOUSE_MOTION_EVENT_MASK);
         public void mouseMoved (MouseEvent me) {
         System.out.println("event has been received by rectangle");
    }//end of class

  • The list of extensions for InDesign now have a yellow triangle warning symbol in front of a good many of the extensions and when moused over i get one of two messages:  "Extensions may not function properly because it does not meet the dependency conditio

    The list of extensions for InDesign now have a yellow triangle warning symbol in front of a good many of the extensions and when moused over i get one of two messages:
    "Extensions may not function properly because it does not meet the dependency condition."
    OR
    Extension Status is not consistent with extension set configuration."
    The reason I opened the Extension Manager in the first place was to check to see if I had installed a third party extension.  And I was presented with these warning symbols.  I haven't added anything, I haven't done anything that would cause this.
    Does anyone know how to fix this???
    I am running OSX 10.9.5; Indesign CS6 version 8.0.2 And Adobe Extension Manager version  6.0.8.28.
    Thanks in advance!
    Nina

    Many InDesign pre-installed extensions (Those extensions you have immediately after InDesign installation) define dependency rules in their mxi files. Dependency means that one extension works well only if one or more other extensions are installed and enabled. If this condition is not met, the yellow triangle warning will be shown.
    You can select an extension with warning, click "Advanced" tag page in the lower right panel. You will see "This extension has dependency on: <extension name> ...". Check whether every extensions listed here are available and enabled. If not, enable them. Repeat these steps for all the extensions which have warning.

  • 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

  • Mouse Over Format Control for Series

    I have a combination chart and would like to display the column portion with no digits after the decimal.  I would like to display the line portion with 1 digit after the decimal.
    Will Xcelsius allow individual formatting of series or only global formatting for a Mouse Over?

    If you want to do individual formatting of Mouse Over effect with combination charts, you should select the format in Excel and choose Mouse-Over format "General" in Xcelsius.
    Keep in mind, to select the "General" format in Xcelsius first, then format your Excel-Data and rebind the chart-component after formatting in Excel.
    Best Regards
    Ulrich
    http://www.xcelsius-insight.com

  • Mouse over event for every word inside a text?

    I want to do a separate mouse over event for every word inside a text.
    or at least get the string below the mouse cursor.
    any hint?
    henry

    There are no events for it but you can use TextField.getCharIndexAtPoint() to determine the character where the mouse is over, and from there you can work out the word where the mouse is over.

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

  • How to define mouse-over event for a icon

    Hello,
    I have defined a icon for a panel in my plugin. I want that the icon should be changed on mouse over event.
    The code for icon is given below.
    resource PanelList (kDNDListsPaletteResourceID) {
                        // 1st panel in the list
                        kDNDListsPaletteResourceID,                    // Resource ID for this panel (use SDK default rsrc ID)
                        kIBPluginPluginID,                                             // ID of plug-in that owns this panel
              #if CSVER >= 4
                        kIsResizable,
              #else
                        isResizable,
              #endif
                        kIBClientPluginDNDPanelWidgetActionID,          // Action ID to show/hide the panel
                        kIBClientPluginDNDPanelTitleKey,               // Shows up in the Window list.
                        "",                                                           // Alternate menu path of the form "Main:Foo" if you want your palette menu item in a second place
                        0.0,                                                                                     // Alternate Menu position Alternate Menu position for determining menu order
                        kPlusIconPNGIconRsrcID, kIBPluginPluginID,                                                            // Rsrc ID, Plugin ID for a PNG icon resource to use for this palette
                        c_Panel
    Where should I give the resourceID of the other icon?

    Hi
    First change the name from kPlusIconPNGIconRsrcID to kPlusIconPNGIconIRsrcID
    so "I" will indicate that your icon is inactive
    Create another resource id like:
    #define kPlusIconPNGIconIRsrcID 15
    #define kPlusIconPNGIconARsrcID 15
    Define paths to the icons
    resource PNGA(kPlusIconPNGIconIRsrcID) "../res/icons/PLUS_ICO_23_I.png" // Inactive icon
    resource PNGR(kPlusIconPNGIconARsrcID) "../res/icons/PLUS_ICO_23_A.png" // Active icon
    Regards
    Bartek

  • Accessibility Suggestion for Thumnails - Grow on Mouse Over

    I work on features, and have migrated to the FCP as a home system recently, which means less screen space for organizing the mammoth bins that we require on our projects.
    One thing I would love to see is some kind of better way to view the thumbnails of each clip in my bin. I was thinking, wouldn't it be great if each thumbnail grew temporarily as you moved your mouse over it, the way the icons do in the Dock. Perhaps even other info panes in the bin could grow to, such as comments or clip name.
    It would help our eyes a LOT!

    NO one here but us fellow editors. Post your suggestions here:
    http://www.apple.com/feedback/finalcutpro.html
    Shane

  • Mouse over speed for opacity change

    how can i edit the speed for the change of opacity while on mouse over
    this is the sample that i want to create http://www.northlandscapes.com/#!home help please.
    i will really appreciate it. thanks

    jQuery can do that.  :-))
    http://bavotasan.com/tutorials/creating-a-jquery-mouseover-fade-effect/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Mouse over for pop-up

    Is it possible in Acrobat 8 to create a mouse over option that would reveal a pop-up? For instance, I have a map and I would like a persons name to pop-up when someone mouses over a state.
    Thanks
    Dave

    Hi David,
    i saw your question about creating a popup.
    I would like to creat a popup in a PDF with Adobe Acrobat Profession Version 7 or 8.
    Do you know how to create a popup which is normally invisible, only when the cursor is above a certain term then the popup is getting visible?
    Do you know if it is possible to insert pictures or Power-Point-Screens in a popup on a PDF?
    It would be great if you could help me!!
    Please send me an EMail to:  [email protected]
    Thanks for your help!!
    Greetings
    Frank

  • Mouse over values not displaying properly for the Combination Chart

    Hi All,
    A Combination Chart has the following details:
    Primary Y Axis has Revenue in mn $.
    Secondary Y Axis has %.
    When the mouse over is being done, 4% is being displayed as .04
    It should be displayed 4% & not as .04
    The Mouse over values has the Number format as u201CNumericu201D.
    Sometimes, it works in u201CGeneralu201D format. (%)
    However, there is no control on the no of decimal places displayed for the value of Revenue (Primary Y Axis value).
    Whereas, in Numeric format, decimal places can be adjusted.
    Secondary vertical(value) Axis Labels has "Percent" as the Number format.
    Please suggest a solution.
    Thanks,
    Raghu Ram

    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

Maybe you are looking for

  • A720: After Windows 8.1 upgrade, Start Button doesn't work.

    After upgrading to Windows 8.1 on a Lenovo IdeaCentre A720, you cannot properly click the Start Button with a mouse. However, touching the screen works as expected. If you put your mouse in the left-most corner of the screen, so the mouse is no longe

  • How do I transfer email messages from an external hard drive to a new hard drive with Lion installed as the operating system?

    How can I retrieve the old email messages from Mail on an external hard drive which operated with Snow Leopard, then transfer the old Emails into my current version of mail operating with Lion?

  • HR ABAP:  table/infotype relationships

    Hi. I'm experienced in doing ABAP programming for all the rest of the modules, but with ABAP HR, I am new and doing one for the first time.  I need your help regarding how to find tables/infotypes and relationships to each other. Specific work exampl

  • Not able to do transformation between two schemas

    I have this two very similar schemas, I tried to do a transform activity between them. I kept getting error says 'Failed to save XSL Map, Make sure XSL Map is valid'. I am not even able to map a single element. This two schemas are generated from 'De

  • Can't get 10.2 to work

    I have recently installed Flash Player 10.2 on Windows 7 64 bit.  Flash Player no longer works. Everytime I visit a page that requires it I am asked to download it.  If I do so I am asked to reboot.  After this I am back to square 1 - FP does not wor