Rollover effect doesnt work in Browser!?

Hi everyone,
I just made two files. One normal state and one "over state"
file with 20 or so frames. I used ImageReady for this. When I
preview from Image ready, the "over" gif works just fine.
I faved both files in my root folder.
The problem comes up when I use it from DW. I choose Insert
-> Image Objects->Rollover Image
Then I assign the two files, relative to root folder and
preloading.
When I preview from the HTML file (That is partof the website
Im working on is in HTML, the other part is ASP files), the
rollover works, albeit the transition of the rollover is only
smooth on the first mouse hover. After that it kind of speeds up.
Here comes the problem tho:
However, when I preview the rollover from my asp file
(my HTML is included in the asp like this <!--#include
virtual="/index.html" --)
It doesnt work, and all I have is the normal state, no matter
whether I hover over or not!
The code is here:
<a href="/GG2007/gg-dialogue-2007.asp"
onmouseout="MM_swapImgRestore()"
onmouseover="MM_swapImage('Image9','','/links/3GGPD_over2_bttn.gif',1)"><img
src="/links/3GGPD_norm_bttn.gif" alt="Click to read about the
upcoming event" name="Image9" width="269" height="166" border="0"
id="Image9" />
Text
What am I doing wrong???
Please help me!
Cheers!!
Simon

I am not experienced in Windows servers but are your foo.asp
file,
index.html file
and the links folder with your images all located in the same
root folder?
Are you testing on the server ?
"Horst1881" <[email protected]> wrote in
message
news:erbkss$at8$[email protected]..
> Hi everyone,
>
> I just made two files. One normal state and one "over
state" file with 20
> or
> so frames. I used ImageReady for this. When I preview
from Image ready,
> the
> "over" gif works just fine.
>
> I faved both files in my root folder.
>
> The problem comes up when I use it from DW. I choose
Insert -> Image
> Objects->Rollover Image
>
> Then I assign the two files, relative to root folder and
preloading.
>
> When I preview from the HTML file (That is partof the
website Im working
> on is
> in HTML, the other part is ASP files), the rollover
works, albeit the
> transition of the rollover is only smooth on the first
mouse hover. After
> that
> it kind of speeds up.
>
> Here comes the problem tho:
>
> However, when I preview the rollover from my asp file
> (my HTML is included in the asp like this
<!--#include
> virtual="/index.html"
> --)
> It doesnt work, and all I have is the normal state, no
matter whether I
> hover
> over or not!
>
> The code is here:
> <a href="/GG2007/gg-dialogue-2007.asp"
onmouseout="MM_swapImgRestore()"
>
onmouseover="MM_swapImage('Image9','','/links/3GGPD_over2_bttn.gif',1)"><img
> src="/links/3GGPD_norm_bttn.gif" alt="Click to read
about the upcoming
> event"
> name="Image9" width="269" height="166" border="0"
id="Image9"
> />
Text
>
> What am I doing wrong???
>
> Please help me!
>
> Cheers!!
> Simon
>

Similar Messages

  • Squeeze text effect not working in browser?

    I'm trying to create a simple text message with the squeeze
    and expand effects. It works fine in Flash, but when I view the
    animation in a browser:
    it
    won't work right
    any help would be greatly appreciated. thank you!
    ken

    "skankinlee" <[email protected]> wrote in
    message news:e1v521$haj$[email protected]..
    > your comments helped me fix it. Thanks!
    >
    >
    http://users.adelphia.net/~skankinlee/website/missyou.swf
    Great! It looks real good now.
    BTW.. I use sWish Max for text effects because it has a whole
    lot of built-in effects in the program. Flash doesn't have nearly
    as
    good of a set of text effects as sWish does. You can do some
    really fancy spinning and rotating etc of text without doing much
    work
    at all in sWish. Once the text effects are the way I want
    them I import the swf file into Flash.
    tralfaz

  • Spry Effects doesnt work with position:absolute CSS

    HI guys,
    I have a text with position: absolute; left: 20px; top: 10px;
    to it and using Spry's Fade Effect, it just shows it without any
    fade animation, any ideas why?
    quote:
    <!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" />
    <title>Untitled Document</title>
    <script src="assets/SpryAssets/SpryTabbedPanels.js"
    type="text/javascript"></script>
    <script src="assets/SpryAssets/SpryEffects.js"
    type="text/javascript"></script>
    <script src="assets/SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="assets/SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <link href="assets/SpryAssets/SpryTabbedPanels.css"
    rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    .TabbedPanelsContent {
    background-color: #006699;
    .cool {
    background-color:#993366;
    position:absolute;
    left: 20px;
    top: 10px;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function TabbedPanelsCycler(tp)
    this.tp = tp;
    this.timerID = 0;
    this.interval = 5000; // Milliseconds
    TabbedPanelsCycler.prototype.start = function()
    this.stop();
    var self = this;
    this.timerID = setTimeout(function() { self.next(); },
    this.interval);
    TabbedPanelsCycler.prototype.stop = function()
    if (this.timerID)
    clearTimeout(this.timerID);
    this.timerID = 0;
    TabbedPanelsCycler.prototype.next = function()
    var tp = this.tp;
    Spry.Effect.DoFade('Content' + (tp.getCurrentTabIndex()+1) %
    tp.getTabbedPanelCount(), {duration: 1000, from: 100, to: 0,
    toggle: false, finish: function(){
    var el = document.getElementById('Content' +
    ((tp.getCurrentTabIndex() + 1) % tp.getTabbedPanelCount()));
    tp.showPanel((tp.getCurrentTabIndex()+1) %
    tp.getTabbedPanelCount()); // 1, 2, 3, 4, 0 ... loop
    Spry.Effect.DoFade('Content' + (tp.getCurrentTabIndex() + 1)
    % tp.getTabbedPanelCount(), {duration: 1000, from: 0, to: 100,
    toggle: false});
    if (this.timerID)
    this.start();
    TabbedPanelsCycler.prototype.previous = function()
    var tp = this.tp;
    var curIndex = tp.getCurrentTabIndex();
    tp.showPanel(((curIndex < 1) ? tp.getTabbedPanelCount() :
    curIndex) - 1);
    if (this.timerID)
    this.start();
    function MM_effectAppearFade(targetElement, duration, from,
    to, toggle)
    Spry.Effect.DoFade(targetElement, {duration: duration, from:
    from, to: to, toggle: toggle});
    var dsFeaturebox1 = new
    Spry.Data.XMLDataSet("assets/xml/featurebox_data.xml",
    "featurebox/feature1");
    //-->
    </script>
    </head>
    <body onload="cycler.start();">
    <div id="TabbedPanels1" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab"
    onclick="MM_effectAppearFade('Content1', 1000, 0, 100, false)"
    tabindex="0">Tab 1</li>
    <li class="TabbedPanelsTab"
    onclick="MM_effectAppearFade('Content0', 1000, 0, 100, false)"
    tabindex="0">Tab 2</li>
    </ul>
    <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent" id="Content1">
    <div>Normal text here</div>
    </div>
    <div class="TabbedPanelsContent" id="Content0"
    spry:detailregion="dsFeaturebox1">
    <div class="cool">{XML text here}</div>
    </div>
    </div>
    </div>
    <script type="text/javascript">
    <!--
    var tp1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    var cycler = new TabbedPanelsCycler(tp1);
    //-->
    </script>
    </body>
    </html>
    Thanks,
    J

    Hi guys,
    I just would like to know why adding position: absolute on my
    css would stop the Spry Effects from doing its job? Thanks!

  • Rollover images stop working when image lies on top

    Hello,
    I am trying to place a PNG image over my menu bar. This is a swoosh which overlaps certain areas on the menu bar, the swoosh is a PNG file with no BG. It seems that the swoosh retaining box, stops the rollover buttons from working. They work up to the point in which the swoosh box starts.
    Am i missing something really simple, or is it a common fault.
    Go easy on me as it is my first post
    Thank you
    Will

    The menu bar in blue is positioned behind the blue and yellow swoosh. The rollove effect works when the curser is on the text but as you move down, the rollover effect stops, its at the position where the swoosh retaining box starts that the rollover effect stops working. Its to do with the layers im sure, i just thought seeing as the swoosh pixels dont interfere that obejct behind should be selectable.
    Does this help?

  • Rollover Effects -- Just Limited to Text... Need Them for Other Objects!

    Help!
    I am a print graphic designer who doesn't want to take the time to learn Dreamweaver, etc. I simply want to get my work samples online. So I bought iWeb '08 and have been tinkering with it.
    My question about rollovers for link effects: the rollover capability works just fine if the link is just straight text. My problem is that I decided to drop some shapes behind the text links so they would look more like buttons.
    When I did this the rollover effects quit working! (Ironically, the effects work just fine when viewing the site in Internet Explorer but DON'T work when viewed with Safari or Firefox.)
    Am I doing something wrong? Is there away that I haven't found yet to make rollover effects for something other than text objects?
    For example, if there was a way to do it, I could easily make gifs of before-rollover/after-rollover versions of the buttons. In fact, I would prefer that way, if possible, so I could control the look of the buttons.
    Is this just wishful thinking, or is there some workaround?
    I appreciate anyone's suggestions.
    --btb79311
    - - - - -

    Hi there,
    It's not wishful thinking... It's real!
    As a graphic designer you might have experience with photoshop.
    If so you can easily create your own button images and then have a look at the following page:
    http://web.mac.com/catucker/InsideOutside/Rollover.html
    It does work and it's quite easy (just tested it myself a few minutes ago).
    Regards,
    Cédric

  • Spry 1.6.1 tab widget doesnt work on any browser

    hello
    from dreamwaever CS4 > spry 1.6.1 tab widget doesnt work
    on any browser. i guess the framework need to be fixed as some file
    might hv been wrongly packed.

    Fix your markup issues:
    http://validator.w3.org/check?uri=http%3A%2F%2Fmeeting.afrinic.net%2Fafrinic-10%2Fagenda2x .htm&charset=(detect+automatically)&doctype=Inline&group=0
    Also, your page gives a javascript error, caused by those
    script blocks:
    <script src="demo1_files/urchin.js"
    type="text/javascript">
    </script>
    <script type="text/javascript">
    _uacct = "UA-1848067-8";
    urchinTracker();
    var TabbedPanels1 = new
    Spry.Widget.TabbedPanels("TabbedPanels1");
    </script>
    demo1_files/urchin.js is missing on your server so doing a
    urchinTracker(); will resolve in an error, and stopping the browser
    from executing JavaScript

  • Lens flare effect (format Movie Quick Time)  doesnt work in Adobe Premiere CS6

    Hi Adobe,
    My video effect lens flare (fornat QUICK TIME MOVIE) for transition video doesnt works. Only the audio show up in my Adobe Premiere CS6.
    Please I need help from you.
    Thank you so much ...
    -SieraG-

    Hi Jim Simon,
    Thank you for your advice. Yes, this is my first time asking the question in this forum. New member..
    I co-edit video in Adobe Premiere CS 6 with footage H-264.
    Video camera Sony NEX VG10, format MTS, AVCHD. I ' m working on laptop TOSHIBA QOSMIO  X775 ( intel -core i5 ) with the system, Windows 7 - NVIDIA  GeForce GTX 560M GPU with Optimus.
    Buying effect lens flares ( Quick Time Movie  item type) , from EBAY, I have been on for many videos of me.
    And on yesterday when was imported  lens flares effect of myvideo in ADOBE PREMIERE CS6, its failed. Only audio  can be imported.
    Theres  no effect. I try many times but still  fail.  None at all texts error.  But if I click on the flares in MY VIDEO,  its working, no problem at all...!
    Only fail in Adobe.   This was happened last year,  I ve forgot how I fix it. (Installed Quick Time Movie software ?)
    I ve installed Quick Time Movie  yesterday , but  there is absolutely no reaction.
    Thank you Jim Simon..
    I really appreciate ...
    -SieraG-

  • Slideshow widget works in the live view but doesnt in actual browser. help!!!!

    slideshow widget works in the live view but doesnt in actual browser. help!!!!

    By "doesn't work in actual browsers" do you mean while using Preview in Browser, or have you uploaded the page and it's not working?
    If it's not working after being uploaded, make sure all of the supporting files have been uploaded (.js and .css) as well.
    If it's not working in PIB, is it with all browsers, or just certian ones?
    Can you post a link to the malfunctioning page?

  • Animation doesnt work while in browser

    Hi
    I have created a director movie and when I publish it for the
    browser one of my animations doesnt work. All of my other
    animations work fine just this one. The animation in question works
    when in director.
    I have checked that the animation is linked to the correct
    file. I have compared things with the other animations and they
    both are the same so I really dont know why it doesnt work.
    It is probably something obvious and I just can see it
    Thanks for your help

    What kind of animation? Are you simply moving something
    across the
    screen? Is it an animated gif? Is it a series of cast members
    shown in
    sequence?
    One thing you've probably already checked, but it's the only
    thing I can
    think of without knowing more - have you tried playing with
    internally
    linked versus externally linked?

  • My ipod touch 4th gen shows that it is connected to a wifi network but when i try to browse safari it doesnt work.please help me out.

    My ipod touch 4th gen shows that it is connected to a wifi network but when i try to browse safari it doesnt work.please help me out.
    I am using wifi from a mobile by using the tethering option.

    Hi there amalrockzz,
    You may find the troubleshooting steps in the article below helpful.
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    Follow these steps to troubleshoot the above issues:
    Be sure you're in range of your Wi-Fi router (access point).
    Tap Settings > Wi-Fi and turn Wi-Fi off and on. If your Wi-Fi setting is dimmed, follow these steps.
    Confirm that your Wi-Fi router and cable or DSL modem are connected to power, turned on, and connected to the Internet. If not, refer to your network administrator or Internet service provider (ISP) for assistance.
    Restart your iOS device.
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected.
    Tap  and Forget this Network.
    Try to connect to your desired Wi-Fi network.
    Note: You may need to enter your Wi-Fi password again if your network requires one.
    Turn your Wi-Fi router off and on2. If your ISP also provides cable or phone service, check with them before attempting this step to avoid interruption of service.
    Update your device to the latest version of software.
    Update your Wi-Fi router to the latest firmware2. For AirPort Base Stations, install updates using the AirPort Utility.
    Unable to access the Internet while connected to Wi-Fi
    If you're using a public or commercial network, you may need to log in or subscribe.
    Check to see if you have a self-assigned IP address:
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected and tap .
    If your IP address is 169.254.xxx.xxx, you may not be able to access the Internet.
    If you do not have a self-assigned IP address, see if other Wi-Fi devices on your network have Internet access.
    If they do not, consult with your network administrator or ISP for further assistance.
    If they do, reset network settings on your device by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings including:
    previously connected Wi-Fi networks and passwords
    recently used Bluetooth accessories
    VPN and APN settings
    Additional Information
    Find information on connecting to a Wi-Fi network.
    Some third-party routers may not be compatible with all iOS devices, even after updating to the latest firmware. If your iOS devices can successfully connect to other Wi-Fi networks, contact your router's manufacturer to ensure that your router is compatible with your iOS device.
    See recommended settings for configuring your Wi-Fi router for use with iOS devices.
    -Griff W. 

  • In-browser pdf form doesnt work and look weird

    On following page I have a pdf form and it doesnt work and it looks weird(logo changed color, button missing, heading looks weird):
    http://www.palomat.dk/Files/Billeder/palomat/formular/Bestilling_PALOMATinlinemappe_DK.pdf
    I've have checked and its not just this one pdf form, its all pdf forms that behave strange.
    It is something that has started to happend recently and it works fine in both IE and Chrome.
    I can see that the design of the pdf viewer has changed, so I am thinking it could have something to do with the fact, that there has been some sort of update of the pdf viewer in firefox or something??

    Agree. This is a major screw up on Firefox part. Because of this, we switched again to IE. This is the worse thing Firefox could do for themselves and their users.

  • My browser doesnt work

    hi,
    could you please tell me what to do,cant work my browser says "Uncaught exception Shared webkit instance unavailable:null"
    3

    hello,
    are you referring to the PlayBook browser or to the Curve browser ?
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Rollover effects on links not displaying correctly

    Hi there,
    I have added rollover effects to links on a website I am working on.  However, some of them do not display properly when uploaded.  Here is a link to the website:
    http://www.southernprairierailway.com/
    You will notice on the home page in the "News" column there is a "CLICK HERE to view our blog" link, but it is displaying in blue making it very hard to read. I have a class assigned to it so that it is the same color as the rest of the text in the column, but when you mouse over it changes to bold and underlined (which it does).
    Also, on the history page, there is a link to the photo gallery and again, it is not displaying properly.
    Thank you for any suggestions. 

    Links have five states: link, visited, hover, active, focus.
    You need to define CSS rules for all of them.
    In the absence of a:visited, you're seeing an unstyled, browser default a:visited link.
    Try
    #clickhere a:link, #clickhere a:visited {
    font-family: Helvetica, Verdana, Arial;
    font-size: 14px;
    color: #E7E0D3;
    #clickhere a:hover, #clickhere a:active, #clickhere a:focus {
    font-family: Helvetica, Verdana, Arial;
    font-size: 14px;
    font-weight: bold;
    color: #E7E0D3;
    text-decoration: underline;

  • Rollover effects are lost when exported as Fireworks HTML

    I created a simple graphic in Fireworks, which has a rollover
    effect. The finished symbol was assigned a LINK, ALT and TARGET in
    Fireworks, and exported as an .htm file. Every slice was selected
    and saved in the IMAGES folder.
    After I placed the htm file in Dreamweaver, I previewed it in
    Safari and FireFox. It worked perfectly. After I uploaded it to the
    Web Host, however, all effects were lost.
    Here is the link:
    http://www.jlwa.net
    The effects are limited to the word "enter."
    If anyone sees what I'm doing wrong, please let me know.
    THANKS!

    quote:
    Originally posted by:
    paulkirtley
    Lorraine, thanks for your advice. I will do as you
    recommended, and build the page in Dreamweaver. I have to tell you,
    though, my experience has not been good doing the build in
    Dreamweaver. Perhaps it is because I'm on a Mac...I don't
    know...everytime I try that the finish result pulls apart at the
    seams when viewed on a PC.
    On this page, for example:
    http://www.jlwa.net/projects.html,
    the Accordion (when viewed on a PC) has horizontal gaps between
    each of the Accordion's tabs, and all of the text, despite being
    set at "left" justification, appears as if I centered it. I'm still
    wrestling with this page to get it right.
    Thanks again - Paul
    Hmm. It looks okay in Chrome, but I see it pulls apart in IE
    7. That is probably due to inconsistencies in CSS rendering between
    the different browsers. Using Fireworks won't help you with that.
    You're going to have to modify the CSS to account for browser
    differences if you want it to address those little spaces. The CSS
    for the Spry accordion element is very simple and I don't see any
    hacks to get around the box model differences that I know people
    use. You might ask on the Dreamweaver forum, but it certainly isn't
    anything that Fireworks is going to fix for you.
    Also, there are some other maintenance issues I see in your
    page. Your navigation images are directly using the Fireworks
    naming scheme, such as jlwa_main_r2_c2_f2.jpg. When you export your
    images from Fireworks, give them good, reasonable names so that you
    can maintain the code. You have a row of unnecessary spacer gifs in
    your header. You should pull your CSS out into a separate file,
    rather than having it embedded into each and every file. That way,
    you only need to edit it in one place to have it take effect
    everywhere. Give your styles meaningful names, too, descriptive of
    their purpose. You have style1, style4, style5. If you want to edit
    them, you don't even know what they are without digging into the
    HTML code.

  • Rollover isn't working

    I'm in the design stage (haven't published). Am trying to get a rollover effect for my buttons. I thought I did it correctly, but it is not working in preview or show in browser preview.
    1. I selected the button image. Next to "image frame" I selected rollover.
    2. I selected fill. Under "image" I browsed to the different colored button image I wanted for rollover. After selection, the picture of it  shows up in the little box (and it has a diagonal line showing there is no fill.)
    3. BUT when I open the states panel, this new button does not show up in the rollover state. All of the buttons look the same. And when I preview in the app or in a browser, nothing happens on hover.
    Thanks for your suggestions.

    Sorry. Not following you... I placed an image (using command D) for the first button. I want a similar button of another color to appear on rollover. So I did not draw a rectangle. I just placed the first image.
    So  not sure what to do. The only rectangle there is is the one that surround the image. That is what I selected to try to make it work in the first place, with no luck.
    Please give very detailed instructions of what I should do (which menu or panel to use, etc...)
    Thanks.

Maybe you are looking for

  • Break out iPad iworks apps?

    Is it possible for the hosts to break out the iPad iworks programs like the desktop iWork is? Many of us are experts in one area, not so much in others and I cannot seem to get a link to just the one area I typically help in. I have to manually refin

  • Save Labview Class to file?

    Hi there, I am playing around with the new Labview classes and i am thinking working with classes is pretty cool. But i am not able to save the objekt to a binary file load them and use this data to initialize the Object with this data. Its no proble

  • Values becomes #available or #error after formaula

    Hi All, I am creating a webi report on SAP universe. Problem : Whenever I apply any date related formala on the date field , all the values in the measure becomes #error or #available . Additional informaion : it has got say 6 fields like Cusotmer ,

  • How to upgrade/downgrade an existing Arch from external media?

    Hi there! After last upgrade of kernel and video drivers i got a blank screen with no tty console. I read couple of threads in » Pacman & Package Upgrade Issues I found out that the solution would be "to boot from external media, chroot and downgrade

  • Problem with my 32GB new iPod Touch storage

    HHi, I have recently bought a new 32GB iPod Touch. I have configured it and synced it the first time to iTunes and everything worked well. During my second synch and while iTunes was copying new songs to my iPod something went wrong and the sync was