Rollover state not working on type

I have type that is supposed to act as a hyperlink. I've enabled it, and selected the color, etc. It looks fine in iweb, but when i publish it, there are no rollover states at all.
The only thing I can think of, is that i've put a drop shadow on the type, thus making it "art". Would that have anything to do with this issue?
Thanks

Yes. Adding a drop shadow to the text converts the text box to an image file.  The rollover features don't work on an image used for a hyperlink.
OT

Similar Messages

  • Link to frame in button rollover state not working..

    Hi guys,
    What I use: Flash CS5 & Actionscript 3
    So I had my buttons working just fine and linking to a frame. But after adding a rollover state in which my button has grown in size it no longer links.
    Does anyone know how to get my buttons linking in their rollover state?

    var someObject:MovieClip;  // this is declared - only
    var someObjectMovieClip = new MovieClip(); // this is declared and instantiated
    Make sure your code uses aghains and not instancename like your code shows. 
    I don't think you understand the third and fifth items I listed either.  The third is saying that the code is not in the same frame as the item it is trying to target.  The fifth has to do with objects in consecutive frames, not linking.
    If you followed what I mentioned in the last sentence you should have a line number indicated in the error message that will tell you which line is causing the problem.  Whatever line that is, the object doesn't exist as far as the code sees it.  So if it was the line...
        instancename.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame_28);
    I can guarantee you that there is no object named instancename in the frame where you have that code since it is the only object targeted in that line of code.

  • Rollover states not working when published online. Suggestions?

    I have created rollover states for image navigation. Works great in preview. Works great when published to desktop. I have uploaded to FTP site. Some of the rollovers work, others do not.? I have replaced and re-uploaded, still not working. The normal and active states all work, but the rollover state vanishes. The images are in the image folder. The css pages do have the code to swap the images. Same issue in Chrome, Safari, Firefox, and on ipad.
    What am I missing? Thank you for your help!

    What's the URL?

  • Rollover state not working on active state

    Hi, I have a problem with menu states. When a menu item is in its active state the rollover state isn't working. Is this supposed to happen or is there a solution to this?
    Thanks.

    Hello,
    This is working as designed. Active state suppresses changing to any other state on mouse interaction and other states only work on links that are currently in Normal state.
    Also refer: https://forums.adobe.com/thread/1136562
    Cheers,
    Vikas

  • Rollover state not working in tooltip

    I am having an issue getting a rollover to work correctly in a tooltip. The action is fine but the rollover just doesn't work. You can see an example of it here: http://grosteffon.site90.com/index.html
    The buttons in question are "Material Testing" and "Proficiency" Any help at all would be appreciated.

    The rollover works in the fact that it triggers the submenu. Aish, do those two buttons change color (rollover state) like the other buttons? That is what I can't get to work.
    Thanks!
    Scott

  • Menu bar with rollover states not working properly

    I have a menu bar that I want to have as a certain size. The
    menu items that actually link somewhere are not showing up as the
    designated size (150x50px) but the one link that is not linked to
    somewhere else in the page looks fine (inventory).
    Can someone look at the css and tell me if there is something
    contradicting or if there is something I can do?
    THank you
    You can view the problem page at
    http://thebradfordcreativegroup.com/abs/indexold.html

    Sorry, I don't have the answers - but you need to see your
    site in IE6. It
    looks quite different - kind of bloated. Also, the "Quality"
    link doesn't
    have an arrow.
    "Inventory" as you say sits up at the top. FF is fine. Sorry
    I can't help
    though.
    Jo
    "joshuataylordesign" <[email protected]>
    wrote in message
    news:fqia5f$anb$[email protected]..
    >I have a menu bar that I want to have as a certain size.
    The menu items
    >that
    > actually link somewhere are not showing up as the
    designated size
    > (150x50px)
    > but the one link that is not linked to somewhere else in
    the page looks
    > fine
    > (inventory).
    > Can someone look at the css and tell me if there is
    something
    > contradicting or
    > if there is something I can do?
    > THank you
    > You can view the problem page at
    >
    http://thebradfordcreativegroup.com/abs/indexold.html
    >

  • Select statement not working

    hi to all,
    I am trying to write use inner joining . here is code
    DATA:tabname LIKE dd02L-tabname,
         table_disc LIKE dd02t-ddtext.
      SELECT  dd02ltabname dd02tddtext INTO (tabname,table_disc)
        FROM dd02l INNER JOIN dd02t on dd02ltabname = dd02ttabname
              WHERE dd02tddlanguage = 'E' AND dd02ltabclass = 'TRANSP'
                                AND dd02L~tabname = 'ZANKI*'.
        endselect.
          write : tabname.
    I also checked in tables dd02t and dd02l for the table zanki* and data available in both table . but here select statement not working .do u have any idea about this. thank you

    Hi,
    I executed the ur inner join conditin by commenting 'z*' it's working fine.
    I think  where condition is not getting satisfied so u r not getting any data.
    Please conform in where condition you need * 'AND'* or OR
    I change decalration as below.
    DATA:tabname    type TABNAME,
          table_disc type AS4TEXT.
    SELECT dd02l~tabname
           dd02t~ddtext  INTO (tabname, table_disc)
    FROM dd02l  INNER JOIN dd02t on dd02l~tabname = dd02t~tabname
    WHERE dd02t~ddlanguage = 'E' AND
          dd02l~tabclass = 'TRANSP'AND
        dd02L~tabname = 'ZANKI*'.
    endselect.
    write : tabname.
    Regards,
    Pravin

  • Hide statement not working

    Hi experts,
    i am using hide statement but it is not working..The problem with it is that after line selection the variable on which i have used hide is carrying the last value of internal table always..<< Removed >>
    Regards,
    Raman
    Edited by: Rob Burbank on Jun 30, 2009 10:41 AM

    I am sending a test program with same problem...iin this after line selection the field variable emp-name is displayin only last entry of internal table...
    *& Report  ZBASICX12
    REPORT  ZBASICX12.
    INITIALIZATION.
      DATA: BEGIN OF ITAB OCCURS 0,
            EMPID  TYPE ZTEMP-EMPID,
            EMPNAME TYPE ZTEMP-EMPNAME,
            END OF ITAB.
    START-OF-SELECTION.
      SELECT EMPID EMPNAME FROM ZTEMP INTO TABLE ITAB.
      SORT ITAB BY EMPID.
      LOOP AT ITAB.
        WRITE: / ITAB-EMPID HOTSPOT.
        HIDE ITAB-EMPID.
      ENDLOOP.
    END-OF-SELECTION.
    AT LINE-SELECTION.
      CASE SY-LSIND.
        WHEN 1.
          WRITE: ITAB-EMPNAME.
      ENDCASE.

  • SQL Statement not works using functions or subqueries-MAXDB

    Hello All,
    I created an ABAP program to select information about country(table: T005) with the country names (Table: T005T). I tried to create a sql query with a sql subquery to select everything but for some reason that I don't know it doesn't work. Please find the query below.
    DATA:
    resu        TYPE REF TO cl_sql_result_set ,
    stmt         TYPE REF TO cl_sql_statement ,
    qury        TYPE string .
               qury  = `SELECT land1, spras, `
               &&       `(SELECT landx `
               &&         `FROM SAPNSP.T005T `
               &&         `WHERE mandt = '` && sy-mandt && `' `
               &&           `AND spras = 'EN' `
               &&           `AND land1 = ? ), `
               &&       `(SELECT natio `
               &&         `FROM SAPNSP.T005T `
               &&         `WHERE mandt = '` && sy-mandt && `' `
               &&           `AND spras = 'EN' `
               &&           `AND land1 = ? ) `
               &&        `FROM SAPNSP.T005 `
               &&        `WHERE mandt = '` && sy-mandt && `' `
               &&          `AND land1 = ? `
               &&        `GROUP BY land1, spras` .
    resu = stmt->execute_query( qury ) .
    Well, the query above works but the fields LANDX and NATIO are in blank in ALL THE CASES, even with information registred in table T005T.
    So, exploring the SDN forum and after read some documents regarding ADBC, I create a function to handle this sql select and get the correctly the missing informations, but, still don't work. Please find the function below:
    CREATE FUNCTION select_landx (land1 CHAR(3)) RETURNS CHAR(15)
    AS
      VAR landx CHAR(15);
      DECLARE functionresult CURSOR FOR
      SELECT spras, land1, landx
         FROM SAPNSP.t005t
         WHERE spras = 'EN'
             AND land1 = :land1;
         IF $count IS NULL THEN <- | $count is always 0, my SELECT
           BEGIN                                 it's not work but I don't know why
             CLOSE functionresult;
             RETURN NULL;
           END
         ELSE
           SET $rc = 0;
           WHILE $rc = 0 DO
           BEGIN
             FETCH functionresult INTO :landx;
           END;
         CLOSE functionresult;
         RETURN landx;
    Calling the function in a SQL statement:
    DATA:
    resu        TYPE REF TO cl_sql_result_set ,
    stmt         TYPE REF TO cl_sql_statement ,
    qury        TYPE string .
               qury  = `SELECT land1, spras, select_landx(?) landx `
               &&        `FROM SAPNSP.T005 `
               &&        `WHERE mandt = '` && sy-mandt && `' `
               &&          `AND land1 = ? `
               &&        `GROUP BY land1, spras` .
    resu = stmt->execute_query( qury ) .
    Any comments ?
    Best regards,
    Arthur Silva

    Hello,
    Thank's a lot, it works. It's funny because the given solution works using only abap codes.
    It may be happens because the abap interpretor send the sql statement to the db interface that handle the code in the another way.
    Thanks again, it was driving me crazy.
    Best regards,
    Arthur Silva

  • Rollover links not working

    i'm a newbie to DW3 (not 4) and I'm constructing my first site. I've used the insert rollover dialog box to place the initial link graphic and then the one to be seen in rollover state. I've chek'd "preload rollover image" and pointed the URL to the proper file inside my site folder. There are 7 of these rollover instances, 2 work and 5 don't yet they're all constructed the same way at the same time! When I don't use the rollover technique and just add one graphic as a link they all work fine!
    I've deleted all the rollovers and completely reconstructed the page's rollovers and still the same result on the same rollovers.
    Does anyone have any suggestions?
    Thanks,
    Tony

    Hi Tony,
    The answer, as always, is in your code.  Can you upload your page and dependant files to remote server and post a URL here so we can see what have done so far?
    My best guess without seeing your code is that you have applied the rollover states to something other than links????  Or you have some other mal-formed code somewhere in your page that is tripping you up.
    Use the on-line validation tools below my sig to check your code and fix any reported errors.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics |  Print | Media Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    HTML Validator - http://validator.w3.org
    CSS Validator - http://jigsaw.w3.org/css-validator/
    FREE HTML & CSS Tutorials  - http://w3schools.com/

  • Rollover css not working in cs4

    Hi
    I like to putz around with websites etc but I am building a very simple site, probably unorthadox but anyway I can't figure out why the rollovers in the nav are not working. I want them to change to an "orange" color on rollover and active and all the settings seem to be right and not being a code expert the code seems to indicate that is how it is set but can't figure out why they don't change color on the hover.
    the root to the site is
    www.allkindzatreasures.com
    I am not really sure how these forums work and if the pros can get the source code or not, if you need more info let me know.
    Thanks for any advice anyone cares to give.

    UPDATE: For the sake of any other "putzers" who might be looking on, I made a small change in the design view and then saved the template file and then it asked me to update all the pages, I did and seems to be working now. Thanks again.
    Cool but not out of the woods yet
    I changed the code in the template and when i save it and preview it it works the way I want,
    however after saving changes it does not ask me to update all the pages based on that template and none of the other pages have the new code, do you have any thoughts on that?
    I don't know if this is what you want but I'll copy and paste the code for the master below.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title></title>
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    body {
        background-image: url(../www/images/pg_bkg_1.jpg);
        background-repeat: repeat;
    .cellbkg {
        background-image: url(../www/images/landpg_bkg_1000x700.jpg);
        font-size: medium;
        font-weight: bold;
        background-repeat: no-repeat;
    .cellbkg td div table {
        color: #7A8C90;
        font-size: large;
        background-color: #FFC;
    .cellbkg td {
        background-image: url(../www/images/gen_list_bkg.jpg);
        background-repeat: repeat;
    -->
    </style>
    <link href="../www/css1.css" rel="stylesheet" type="text/css" /><style type="text/css">
    <!--
    a {
        text-decoration: none;
        color: #869598;
    a:visited {
        color: #839194;
    a:hover {
        color: #F90;
        text-decoration: underline;
    body,td,th {
        font-family: Georgia, Times New Roman, Times, serif;
        color: #717C7E;
    .headings {
        font-size: larger;
        color: #717F80;
    .price {
        font-weight: bold;
    .title {
        font-size: 36px;
    .title strong {
        color: #717C7E;
    .nav {
        font-family: Tahoma, Geneva, sans-serif;
    .nav {
        font-weight: bold;
    .nav {
        color: #717C7E;
    .smnav {
        font-size: xx-small;
    .nav {
        color: #AEBAB8;
    .smnav td {
        color: #728081;
    .xsmallnav {
        font-size: x-small;
    .blktype {
        font-family: Arial, Helvetica, sans-serif;
    -->
    </style>
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body text="#717C7E" link="#717C7E" vlink="#FFFFFF" alink="#717C7E">
    <table width="1000" border="7" align="center" cellpadding="4" cellspacing="2" class="blktype">
      <tr>
        <td colspan="4" bgcolor="#FFFFFF"><img src="../www/images/gen_banner_top.jpg" width="994" height="276" border="0" usemap="#Map" /></td>
      </tr>
      <tr>
        <td height="100" colspan="4" valign="middle" bgcolor="#FFFFFF"><blockquote>
          <table width="911" height="85" border="0" align="center" cellpadding="2" cellspacing="1">
            <!-- TemplateBeginEditable name="EditRegion5" -->
            <tr>
              <td height="47" colspan="5" valign="top" nowrap="nowrap"><span class="title"><strong>ART &amp; DECOR</strong></span></td>
              <td width="53" valign="top" nowrap="nowrap"> </td>
              <td colspan="2" nowrap="nowrap"> </td>
              <td width="34" nowrap="nowrap"> </td>
              <td colspan="3" align="right" nowrap="nowrap" class="nav"><a href="../www/aboutus.html">About Us</a></td>
              <td width="98" align="right" nowrap="nowrap" class="nav"><a href="../www/contact.html">Contact</a></td>
            </tr>
            <!-- TemplateEndEditable -->
            <tr align="center" class="xsmallnav" style="color: #748484; font-size: 12px; font-family: 'Courier New', Courier, monospace;">
              <td width="157" nowrap="nowrap"><a href="../www/antiques.html">Antiques /Collectables</a></td>
              <td width="68" nowrap="nowrap"><a href="../www/art.html">Art/Decor</a></td>
              <td width="61" nowrap="nowrap"><a href="../www/household.html">Household</a></td>
              <td width="75" nowrap="nowrap"><a href="../www/elect.html">Electronics</a></td>
              <td width="51" nowrap="nowrap"><a href="../www/clothes.html">Clothes</a></td>
              <td nowrap="nowrap"><a href="../www/jewelry.html">Jewelry</a></td>
              <td width="37" nowrap="nowrap"><a href="../www/photo.html">Photo</a></td>
              <td width="40" nowrap="nowrap"><a href="../www/books.html">Books</a></td>
              <td nowrap="nowrap"><a href="../www/toys.html">Toys</a></td>
              <td width="70" nowrap="nowrap"><a href="../www/new.html">Brand New</a></td>
              <td width="102" nowrap="nowrap"><a href="../www/trash.html">One man's trash</a></td>
              <td colspan="2" nowrap="nowrap"><a href="../www/evelse.html">Everything Else</a></td>
              </tr>
          </table>
        </blockquote></td>
      </tr>
      <!-- TemplateBeginEditable name="EditRegion4" -->
      <tr bgcolor="#B7C5C5" style="color: #006; font-size: small;">
        <td>  </td>
        <td> </td>
        <td> </td>
        <td height="250"> </td>
      </tr>
      <tr>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td height="250" bgcolor="#FFFFFF"> </td>
      </tr>
      <tr>
        <td bgcolor="#B7C5C5"> </td>
        <td bgcolor="#B7C5C5"> </td>
        <td bgcolor="#B7C5C5"> </td>
        <td height="250" bgcolor="#B7C5C5"> </td>
      </tr>
      <tr>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td height="250" bgcolor="#FFFFFF"> </td>
      </tr>
      <tr bgcolor="#B7C5C5">
        <td> </td>
        <td> </td>
        <td> </td>
        <td height="250"> </td>
      </tr>
      <tr>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td height="250" bgcolor="#FFFFFF"> </td>
      </tr>
      <tr bgcolor="#B7C5C5">
        <td> </td>
        <td> </td>
        <td> </td>
        <td height="250"> </td>
      </tr>
      <tr>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td bgcolor="#FFFFFF"> </td>
        <td height="250" bgcolor="#FFFFFF"> </td>
      </tr>
      <tr bgcolor="#B7C5C5">
        <td> </td>
        <td> </td>
        <td> </td>
        <td height="250"> </td>
      </tr>
      <tr>
        <td width="128" bgcolor="#FFFFFF"> </td>
        <td width="406" bgcolor="#FFFFFF"> </td>
        <td width="250" bgcolor="#FFFFFF"> </td>
        <td width="204" height="250" bgcolor="#FFFFFF"> </td>
      </tr>
      <!-- TemplateEndEditable -->
    </table>
    <map name="Map" id="Map">
      <area shape="rect" coords="518,79,925,255" href="../www/index.html" alt="back home" />
    </map>
    </body>
    </html>

  • Active State not working in Horizontal Menu Bar

    I have a Horizontal Menu Bar.
    I've set the Top Level Item with Normal, Rollover, Mouse Down and Active States to be different. 
    All three work on the Top Level Item, EXCEPT for Active State. When the menu is Active, and I move the mouse down the items, the Top Level Item defualts to the Normal State, NOT the Active State.
    I've tried trashing the Active State and rebuilding it.  That did not work.
    I can't figure out how to get the Top Level Item in the Menu Bar to display the Active State.
    Hope someone has some suggestions, or knows if this is a bug.
    Thanks.
    Dave Coop.

    Hmmm...I've just been playing around, and I think I got the Active State to work correctly.  I think my problem was not understand what Active State means.
    To answer your question, I was changing the Font Color and Box Fill Color of the Active State.
    I did not understand that Active State means the look of the Menu Item when the PAGE is active.  I thought it meant the look of the Menu item when the cursor is scrolling down the Menu (i.e. when the MENU is Active, not the page).
    Look at this page for an example of what I'm trying to achieve...
    http://www.pgavdestinations.com
    When you hover over the "Work" menu item, and move the cursor down the menu, the state of "Work" remains changed until you move the cursor off of that menu column. It does NOT return back to it's Normal state until you are off of that menu column.
    Is there a way to achieve this with the menu states in Muse?
    Thanks for the replies!
    Dave.

  • Case when statement not working

    hi there, I am trying to work out how to get my case statement to work.
    I have got the following code. 
    select pthproto.pthdbo.cnarole.tpkcnarole, pthproto.pthdbo.cnaidta.formataddr as formataddr, cnaidta.dateeffect as maxdate, isnull(cast (pthproto.pthdbo.cnaaddr.prefix1key as varchar (50)),'') + ' ' + isnull(cast (pthproto.pthdbo.cnaaddr.prefix2key
    as varchar (50)),'')+ ' ' + isnull(cast (pthproto.pthdbo.cnaaddr.prefix3key as varchar (50)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.houseidkey as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component1
    as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component2 as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component3 as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component4
    as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component5 as varchar (100)),'') as mailaddress, row_number() over(partition by pthproto.pthdbo.cnarole.tpkcnarole order by cnaidta.dateeffect desc) as rn into #address from pthproto.pthdbo.cnarole
    inner join pthproto.pthdbo.cnaidty on cnarole.tfkcnaidty =cnaidty.tpkcnaidty inner join pthproto.pthdbo.cnaidta on cnaidty.tpkcnaidty = cnaidta.tfkcnaidty inner join pthproto.pthdbo.cnaaddr on cnaidta.tfkcnaaddr = cnaaddr.tpkcnaaddr order by cnaidta.dateeffect
    select *, case when mailaddress is not null then mailaddress else formataddr end as test from #address where tpkcnarole = '18306695'
    The case when statement is struggling with how i have created the column mailaddress.  As it does seem to understand when it is null.  In the example I have got there is no value in any of the columns to create
    the mailaddress.  Hence why I am referencing it from elsewhere.  Due to having a way on the system where it picks up data from 2 different places.    The mailaddress is always correct if there is one, hence why
    trying to reference that one first.  So how do i change this case when statement to work ?            

    It's ok I have fixed my own problem
    when
    (mailaddress
    is
    null 
    or mailaddress

    then formataddr
    else mailaddress
    end
    as test
    case

  • Active state not working in scrolling site (with anchor links)

    I'm design a scrolling site with anchor links and an horizontal menu on the top.
    when i publish the site and click on the menu buttons the site scrolling to the place of the anchor but the active state in the menu is not working.
    now... when i leave the main page (were the scrolling site is) and then return back to it all active states are working perfectly
    anyone have this bug? or any one know how to fix it ?

    Hmmm...I've just been playing around, and I think I got the Active State to work correctly.  I think my problem was not understand what Active State means.
    To answer your question, I was changing the Font Color and Box Fill Color of the Active State.
    I did not understand that Active State means the look of the Menu Item when the PAGE is active.  I thought it meant the look of the Menu item when the cursor is scrolling down the Menu (i.e. when the MENU is Active, not the page).
    Look at this page for an example of what I'm trying to achieve...
    http://www.pgavdestinations.com
    When you hover over the "Work" menu item, and move the cursor down the menu, the state of "Work" remains changed until you move the cursor off of that menu column. It does NOT return back to it's Normal state until you are off of that menu column.
    Is there a way to achieve this with the menu states in Muse?
    Thanks for the replies!
    Dave.

  • Import/Export statement  not working..

    Hi all,
       I want to export some data from BADI & Import it back in user exit.
    I wrote following line of code in BADI
           export P1 FROM xstr to memory id 'ZABHI'.
    & following line of code in User Exit
          import P1 to xstr FROM memory id 'ZABHI'.
    After export sy-subrc becomes 0 hence export statement is working fine but when aftr import xstr remains blank.(sy-subrc = 4)
    I tried to execute same code in single ztest abap program & it works fine there.
    Thanks in advance.

    hi abhijeet,
    you are most welcome....
    to delete, use
    ** deletes the data to save wastage of memory
    delete from database indx(xy)
      client sy-mandt
      id 'ZABHI'.
    you need to delete it coz, its available to all programs in the R/3
    server via the ID and you don't want anybody to view the data u are
    sending into memory.
    the statement that u used earlier was program specific and hence
    not accessible to the user exit.
    Regards,
    Samson Rodrigues.

Maybe you are looking for