Hover over states dont work on ipads

In the latest version of muse the hover over state or even mouse down state in photshop buttons dont work on ipads or iphones. But yet a website i made in an earlier version doesHover over doesn work on iphones or ipads devices

I Used the same effect in this site by inserting a photoshop state button in an older version of muse but now in the newer version of muse I've used the same effect on a different site and it doesn't work. This is the site it worked on
The Team

Similar Messages

  • "Drag an Drop Funcionality" dont Work in Ipad.

    I'm using JDEVELOPER Studio Edition Version 11.1.2.2.0.
    I developing a sinple page with too table and using "Drag an Drop Funcionality" for pass rows from a table to other table.
    This work correctly in all web explorer for Pc and DONT WORK in IPAD.

    did u try in 11.1.1.6
    Drag and Drop on Touch Devices: On touch devices like tablets, the component drag and drop has a different gesture than with the mouse. An item that can be dragged must activated by a tap and hold gesture. The item will change its appearance to indicate that it can be dragged once held long enough. The same gesture applies to reordering table columns. Tap and hold the column header, then drag it to reorder the columns.

  • Button "Over" State Not Working Within Visible MovieClip

    Hi Folks,
    My button states aren't working right, and I'm pulling my hair out:
    http://www.miklas.org/test/test.htm
    The desired behavior is under the "Design..."  button--notice how when you mouseover the "Our Philosophy" link it turns blue? Why isn't  this happening for the "What We Can Do For You" and "Our Process" buttons in the other movieclips?
    The document is structured as follows:
    MovieClip 1: Design: Your Silent Salesperson
    ---Text
    ---Images
    ---Button: Our Philosophy
    MovieClip 2: Who Owns Your Brand
    ---Text
    ---Images
    ---Button: What We Can Do For You
    MovieClip 3: What's Your Brand's Persona
    ---Text
    ---Images:
    ---Button: Our Process
    DETAILED EXPLANATION:
    I have three separate movie clips with a bunch of objects. Using AS3,  I  tween their alpha value from 0 to 1 to make them visible depending on a  user mouseover. As part of each movieclip I have a button. It is text  with an underline; made to look like a hyperlink. When the user mouses  over the text, I want it to change color from orange to blue. This works  on the first movieclip, but doesn't on the second and third! What's  weird is that if I cut-and-paste the button from the second or third  movieclip to the first, the over state works fine. If I set Control  -> Enable Simple Buttons, the over state works fine. But when I  export it to .swf, it doesn't work!?
    tyvm!

    OK I finally got it! My layers were indeed out of whack--the entire problem was solved by the"setChildIndex" function.
    Basically, when the user mouses over the buttons, I fade in the new clip, and set the depth above the other movie clips. Here's the code:
    buttons_movieClip.whyDesign_button.addEventListener(
      MouseEvent.MOUSE_OVER,
      function(evt:MouseEvent):void
          if (active != whyDesign_movieClip)
            fade(whyDesign_movieClip);
            setChildIndex(whyDesign_movieClip,3);
            setChildIndex(whoOwns_movieClip,2);
            setChildIndex(persona_movieClip,1);
    There is a black background at depth 0. The following forum post helped a lot:
    http://www.smithmediafusion.com/blog/?p=435
    tyvm!

  • Object States not working on iPad

    Hello!
    Crossing my fingers someone on here can help.
    I am working on, and nearly finished a children's book I made for the iPad. Everything looks great on my desktop content viewer but when I preview the app using the content viewer on my iPad a lot of my object states are being ignored. I searched these forums on people running into this problem but nothing seemed to turn up that related directly to myself.
    A lot of my object states are triggered by a button click and all timed to start one after the other so the image sequences I made in after effects look as seamless as possible. After the button click however it seems as though only 1 object state runs and then the rest are ignored.
    Here is a link to a video I recorded using quicktime to show how the app will function. I was hoping to record sound this wknd and hope this problem can be resolved soon!
    http://vimeo.com/39034611

    bobmagan wrote:
    It fires on both onactivate and onfocus. I had to do that to work on the Mac clients. Look at the code:
    onactivate="get_select_list_xml1(this,$x('P507_FORMS'),$x('P0_LOGIN_SCHOOL_YEAR'),this,'REFRESH_REPORT_LAYOUT_LOV');" onfocus="if((typeof this.onactivate)!='function'){get_select_list_xml1(this,$x('P507_FORMS'),$x('P0_LOGIN_SCHOOL_YEAR'),this,'REFRESH_REPORT_LAYOUT_LOV');}"What about just
    onfocus="get_select_list_xml1(this, $x('P507_FORMS'), $x'P0_LOGIN_SCHOOL_YEAR'), this, 'REFRESH_REPORT_LAYOUT_LOV');"If not, supply the following information:
    <li>Full APEX version
    <li>Full DB version and edition
    <li>Web server architecture (EPG, OHS or APEX listener)
    <li>Browser(s)/version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/Item type(s)
    and the <tt>get_select_list_xml1</tt> JS code.
    Post code wrapped in tags<tt>\...\</tt> tags to preserve formatting and special characters.

  • Why flash dont work on ipad?

    Is there any hope that Apple will do something to give us access to flash documents on the web? Since we invest on the most sophisticated instruments such as ipad and iphone, isnt there something weird with that decision not to integrate flash viewing?

    Flash is not supported on the iPad - and as Adobe have never managed to make a version of their flash player that works on iOS devices, and they have recently announced that they are stopping development on all mobile versions of it, it probably never will be.
    Browser apps such as Skyfire, iSwifter, Puffin and Photon 'work' on some sites, but judging by their reviews not all sites. Also some websites, especially news sites, have their own apps in the App Store.
    If you do a search on this forum you will find hundreds of other threads on the subject.

  • Spry 2.0 --  over state question

    I am using the adobe widget browser for a horizontal spry menu for the first time and can't seem to get an over state to work. Can anyone post code to get this working? And is there a way to make the over states work when putting the menu in an include or library?
    Thanks

    Add the following to your document
    <script type="text/javascript" language="javascript">
    function InitPage(){
    Spry.$$('#MenuBar li').forEach(function(node){ /* for FF Chrome etc  */
         var a=node.getElementsByTagName("a")[0]; // finds all a elements inside the li, but we only want the first so [0]
         if(a.href == window.location){
              Spry.Utils.addClassName(node,"activeMenuItem");
    Spry.$$('#MenuBar div.MenuItemContainer').forEach(function(node){ /* for IE */
         var a=node.getElementsByTagName("a")[0]; // finds all a elements inside the li, but we only want the first so [0]
         if(a.href == window.location){
              Spry.Utils.addClassName(node,"activeMenuItem");
    Spry.Utils.addLoadListener(InitPage);
    </script>
    and the style rules for activeMenuItem
    <style>
    #MenuBar .activeMenuItem .MenuItem .MenuItemLabel {
         background-color: #592f8b; /* consider exposing this prop separately*/
         color: #ffffff;
    </style>
    Gramps

  • Over State and actions not working with buttons in Flash cs4

    Hi - I am working on a Flash file and some of the buttons in the document are not working.When I test the movie the hand cursor appears when I hover over the buttons they don't change colour (as specified in the over state) and the actions don't work. Not sure what is going on here as I created other buttons in the same document the same way and they work fine. Thanks in advance.

    If you remove the code from the buttons do they react properly to a mouse over interaction?
    What is the code that is in place?

  • Hover state to work in IE8

    I cannot get the hover state to work on <p>
    I have assigned a hover state to the paragraph tag.
    It works fine in FireFox but I can not get the hover state to work in Internet Explorer 8.
    The reason that I gave it a hover state is because it is linked in XML and I want it to look like a Hyperlink when you mouse over it.
    Thanks,
    Travis
    CSS:
    #Wrapper   #Top   #LeftColumn   #LeftContent p {
        text-indent: 35px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 0.8em;
        color: #777;
        background-image: url(/images/LeftLinksGrayDot.gif);
        background-repeat: no-repeat;
        background-position: 20px 0.4em;
        height: 20px;
        text-align: left;
        display: block;
        float: none;
        margin: 0px;
        padding: 0px;
    #Wrapper #Top #LeftColumn #LeftContent p:hover {
        color: #0000FF;
        background-image: url(/images/LeftLinksBlueDot.gif);
        background-repeat: no-repeat;
        background-position: 20px .4em;

    AFAIK IE only Hovers on <a> tags.
    jQuery to the rescue
    http://www.learningjquery.com/2007/02/quick-tip-set-hover-class-for-anything
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Bridge from CS3 won't open and just sits on the task bar. If I hover over it, I can see a small view of the last screen I was working on. It won't open up full screen, what should I do. I've closed it and restarted my computer numerous times with no luck.

    If I hover over it, I can see a small view of the last screen I was working on. It won't open up full screen, what should I do. I've closed it and restarted my computer numerous times with no luck.

    Check System Preferences > Energy Saver
    Select:  Put hard disks to sleep when possible
    Then click: Restore Defaults

  • Sharepoint Custom calendar – Hover over the date to add a new item is not working – Sharepoint 2010

    Hi,
    In my Sharepoint visual web part i am using default sharepoint calendar view. But Mouse hover over the date to add a new item is not working. Please see this image below i need the same add new item functionality. 
    

    Hi Sudhanthira,
    Couple of simmilar queries i can see from Madhu posted.
    Please follow this thread:-
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010programming/thread/b62f9b7e-2ce1-4efd-905c-9cc5471ad216
    To be or Not to Be..The question is this only......

  • Hi i want to buy an ipad from america with cellular and i want to connect it in jordan does the network work in my country JORDAN , because i dont see unlock ipad??

    hi i want to buy an ipad from america with cellular and i want to connect it in jordan does the network work in my country JORDAN , because i dont see unlock ipad in apple store??
    in apple store no ipad unlock for cellular if i bring it with cellular from america does it work in JORDAN ??
    THNANK ALOT

    US iPads are not locked to a carrier. Don't buy a Verizon or Sprint model, though.
    Regards.

  • Please god . deactivate this product. Your troubleshooters dont work, cannot deactivate. I am using RETAIL, adobe acrobat xi.Connected to internet. On for over 20 min. Open to deactivate greyed out. Windows 7 x64 pro. This crap makes people want to use fr

    Please god . deactivate this product. Your troubleshooters dont work, cannot deactivate. I am using RETAIL, adobe acrobat xi.Connected to internet. On for over 20 min. Open to deactivate greyed out. Windows 7 x64 pro. This crap makes people want to use fraud. I just want it OFF do i can USE it on another COMPUTER.
    can anyone in customer support deactivate this??

    Hi Terry,
    I have checked the serial number and found that you have sufficient activation count left to install it on 2 computers.
    Please uninstall the software and activate it on the other machine. In case of issues please let me know and I will help you.
    Here is my direct email: [email protected]
    Chat Support email:
    http://helpx.adobe.com/x-productkb/global/service1.html
    Regards,
    Rave

  • Hover over variable tooltip not working in debugger?

    We recently upgraded to Sun Studio 12 and the debugger seems to have a problem. We used to be able to hover over a variable with the mouse (i.e. tooltip) and inspect the variable value. This no longer works reliably. Has anyone seen this? Is there a fix? We have Sun Studio 20070501, SunOS version 5.10 on sparc, Java 1.6.0_03 and netbeans-5.5.1.
    Thanks for your help.

    As far as I remember, there used to be several different problems with tooltips. We can try to identify type of problem you are having or we can skip it and go to the solution available right now - download latest Sun Studio Express and see if it resolves that problem.
    If you need production-quality compilers, you can still use Sun Studio 12 to generate code and Sun Studio Express to debug. It is perfectly all right to have several versions of Sun Studio installed on one machine, just you different base directories.

  • Firefox 4 Menu Bar - When I hover over or select a menu bar item, the menu bar sub-menu becomes transparent and unreadable. Is this a known issue that can be corrected with an update or is it functionality that is not designed to work with this version?

    Firefox 4 Menu Bar - When I hover over or select a menu bar item, the menu bar sub-menu becomes transparent and unreadable. Is this a known issue that can be corrected with an update or is it functionality that is not designed to work with this version?

    If this happens on monitor 2 of 2, this problem has been solved here:
    http://support.mozilla.com/en-US/questions/794823#answer-157988
    Go to "Firefox"--> "Options" --> "Advanced"
    Then un-check "Use hardware acceleration when available"
    While not verified, I believe this problem is due to an SLI configuration where the focus is on monitor 1. (I.e acceleration is available, but only on monitor 1.)

  • I want to eliminate an autofill choice that pops up when I sign into yahoo using the Firefox browser. I tried yahoo help which said hover over the unwanted line and press delete, but that did not work. I am using a Mac if that makes a difference.

    Question
    I want to eliminate an autofill choice that pops up when I sign into yahoo using the Firefox browser. I tried yahoo help which said hover over the unwanted line and press delete, but that did not work. Do you know how I can get rid of this autofill? I am using a Mac if that makes a difference. Thanks.

    Use Shift+Delete on Mac.
    *http://kb.mozillazine.org/Deleting_autocomplete_entries
    *Click the (empty) input field on the web page to open the drop down list
    *Highlight an entry in the drop down list
    *Press the Delete key (on Mac: Shift+Delete) to remove it.

Maybe you are looking for

  • Problem in XML file download

    types: begin of type_s_data,          record(65000) type c,        end of type_s_data. data: w_xml_out type string. data: t_xml_tab type table of type_s_data with header line, Source code       t_code    type table of type_s_data with header line, Af

  • PIVOT Statement - ORA-00936

    I have a question about a PIVOT Statement DB: 11.2.0.3.0 I have Table x with 3 Columns (c1,c2,c3) C1 C2 C3 A | T | 1 A | P | 1 M | S | 1 D | T | 1 D | P | 1 D | D | 1 with this select the result is ok SELECT * FROM (SELECT c1, c2, c3 FROM x) PIVOT ma

  • Getting an error when connecting ipod to laptop

    I have downloaded the latest version of iTunes and then when I plug in the iPod shuffle I get an error message about the version if music software is not compatible with my iPod and to try reinstalling it. Have tried reinstalling the software a few t

  • Can't Import Movie

    Hey there! I'm trying to import a movie from a Canon HDV1080i but my iMac 10.5.5 seems not to recognize the device. I'm using a regular USB cable. Do I need Firewire in order to import? Any other reason why this might be happening? Any thoughts are m

  • Context SECURITY_AUTHENTICATION=EXTERNAL

    Hello I have an AD/AM ldap (microsoft application mode ldap). I want to authenticate my users in the AD (active directory). to do: DirContext theExternalDirContext = null;                Hashtable theExternal = new Hashtable(); theExternal.put(Contex