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?

Similar Messages

  • 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

  • Drag and Drop animation doesnt work in Muse?

    Hello,
    I have made an Drad and drop animation in Edge Animate and I have imported an oem file into Muse.
    But the Animation doesnt work.
    http://draganddrop01.businesscatalyst.com/index.html
    In Edge it works fine.
    Do I need to export the Edge Animate  in an other way?
    Ton

    Hello Vikas,
    Thanks for your answer.
    In Edge animate it works in preview mode. Only in Muse import it doesn't.
    No this animation is not on my website yet, but it will.
    From:  Elaine I have got this link about this topic.
    http://helpx.adobe.com/edge-animate/using/whats-new-edge-animate-30.ht ml
    Check out the "Script Loading" section for a description.  You'll probably want to use the "Add JS File from Disk" selection and then select jQueryUI.  Then, when you publish again, it will be included in the OAM file.
    Hope that helps,
    -Elaine
    I will try the solution Elaine has email me and get back to you if it works..
    Ton

  • Actionscript 3 --- animation doesnt work --- sidescrolling platformer

    im making a sidescrolling platformer in actionscript 3, but i cant get the animations to work. Im trying to animate my player (is a ball) so when it moves it plays the frames inside (if it jumps go to frame 3 inside the player and play that movieclip, and when it touches the floor again stop that animation and go back to the idle one)
    I tried using frame labels but those doesnt seem to work, here is the code (its in spanish):
    stop();
    // VARS
    var leftKeyDown:Boolean = false;
    var upKeyDown:Boolean = false;
    var rightKeyDown:Boolean = false;
    var downKeyDown:Boolean = false;
    // Puntos de choque para el hit test
    // Si se cambia el tamaño del jugador hay que cambiar estas coordenadas
    // la primera es la X y la segunda la Y: (x, y)
    var puntoChoqueTodo:Boolean = false;
    var chocaIzquierda:Boolean = false;
    var chocaDerecha:Boolean = false;
    var chocaArriva:Boolean = false;
    var chocaAbajo:Boolean = false;
    var chocaLinea:Boolean = false
    var chocaBandera:Boolean = false;
    //moviemiento del cielo
    var velocidadCielo:Number = 0
    // movimiento de las nubes
    var velocidadNubes:Number = 0
    //doble salto
    var dobleSaltoListo:Boolean = false;
    var upReleasedInAir:Boolean = false;
    //var drum:DrumSound = new DrumSound();
    var maxHP:int = 100;
    var actualHP:int = maxHP;
    var porcentajeHP:Number = actualHP / maxHP;
    var chocaAgua:Boolean = false;
    var chocaAuto:Boolean = false;
    var nivelActual:int = 1;
    var animationState:String = "idle";
    // ----------------------OPCIONES--------------------------------------------
    // La velocidad del jugador de X, Y
    // (tecnicamente es la velocidad de la tierra)
    var xVelocidad:Number = 16;
    var yVelocidad:Number = 1;
    // Movimiento X, Y de la tierra
    var scrollX:Number = 0;
    var scrollY:Number = 500;
    // El resto se entiende
    var friccion:Number = 0.95;
    var velocidadConstante:Number = 3.8;
    var friccionConstante:Number = 0.8;
    var gravedadConstante:Number = 3.9;
    var saltoConstante:Number = -49;
    var maxVelocidadConstante:Number = 16;
    // HIT TEST, FRICCION, MOVIMIENTO 1, y animacion quieto
    function actualizarBarraHP():void
      porcentajeHP = actualHP / maxHP;
      healthBar.barColor.scaleX = porcentajeHP;
    stage.addEventListener(Event.ENTER_FRAME, loop);
    function loop(e:Event):void{
    //animacion
    if(tierra.colision.hitTestPoint(Felipe.x + Felipe.ChoqueIzquierda.x, Felipe.y + Felipe.ChoqueIzquierda.y, true)){
        //trace("Choca la izquierda");
        chocaIzquierda = true;
    } else {
        chocaIzquierda = false;
    if(tierra.colision.hitTestPoint(Felipe.x + Felipe.ChoqueDerecha.x, Felipe.y + Felipe.ChoqueDerecha.y, true)){
        //trace("Choca la derecha");
        chocaDerecha = true;
    } else {
        chocaDerecha = false;
    if(tierra.colision.hitTestPoint(Felipe.x + Felipe.ChoqueArriva.x, Felipe.y + Felipe.ChoqueArriva.y, true)){
        //trace("Choca arriva");
        chocaArriva = true;
    } else {
        chocaArriva = false;
    if(tierra.colision.hitTestPoint(Felipe.x + Felipe.ChoqueAbajo.x, Felipe.y + Felipe.ChoqueAbajo.y, true)){
        //trace("Choca abajo");
        chocaAbajo = true;
    } else {
        chocaAbajo = false;
    //if(tierra.linea.hitTestPoint(Felipe.x + Felipe.puntoChoqueTodo.x, Felipe.y + Felipe.puntoChoqueTodo.y, true)){
    // //trace("pija")
    // chocaLinea = true
    //} else {
    // chocaLinea = false
    if(tierra.bandera.hitTestPoint(Felipe.x + Felipe.puntoChoqueTodo.x, Felipe.y + Felipe.puntoChoqueTodo.y, true)){
      chocaBandera = true
    } else {
      chocaBandera = false
    if(tierra.visuales.agua.hitTestPoint(Felipe.x + Felipe.puntoChoqueTodo.x, Felipe.y + Felipe.puntoChoqueTodo.y, true)){
      chocaAgua = true
    } else {
      chocaAgua = false
    ///if(tierra.auto.hitTestPoint(Felipe.x + Felipe.puntoChoqueTodo.x, Felipe.y + Felipe.puntoChoqueTodo.y, true)){
    // chocaAuto = true
    if(tierra.visuales.enemigo.hitTestPoint(Felipe.x + Felipe.puntoChoqueTodo.x, Felipe.y + Felipe.puntoChoqueTodo.y, true)){
      actualHP -= 10;
      if(actualHP <= 0)
      actualHP = 0;
      gotoAndStop(2);
      actualizarBarraHP();
    // if(chocaAuto){
    // velocidadConstante = 7;
    // Felipe.animacion.gotoAndStop(6)
    if(leftKeyDown){
      //xVelocidad -= velocidadConstante;
      Felipe.scaleX = -1;
      } else if(rightKeyDown){
      //xVelocidad += velocidadConstante;
      Felipe.scaleX = 1;
      if(chocaAgua){
      yVelocidad = 0.35;
      if(chocaBandera){
      gotoAndStop(3);
      if(chocaLinea){
      gotoAndStop(2);
      if(chocaIzquierda){
      if(xVelocidad < 0){
      xVelocidad = -0.5;
      if(chocaDerecha){
      if(xVelocidad > 0){
      xVelocidad *= -0.5;
      if(chocaArriva){
      if(yVelocidad < 0){
      yVelocidad *= -0.5;
      if(chocaAbajo){ // si esta tocando el piso
      if(yVelocidad > 0){
      yVelocidad = 0; // se pone la yVelocidad a 0
      if(upKeyDown){
      yVelocidad = saltoConstante;
      //DOBLE SALTO
      upReleasedInAir = false; //si tocas el piso se pone en false
      dobleSaltoListo = true; // si tocas el piso se pone en true
      } else { // si no se toca el piso:
      yVelocidad += (gravedadConstante * 1.1); //aceleracion para abajo
      //DOBLE SALTO
      if(upKeyDown == false){
      upReleasedInAir = true;
      if(dobleSaltoListo && upReleasedInAir){
      if(upKeyDown){
      yVelocidad = saltoConstante;
      dobleSaltoListo = false; //esto hace que no se pueda saltar mas de 2 veces
      // Esto hace que al reiniciar no aumente la velocidad
      if(xVelocidad > maxVelocidadConstante){ //derecha
      xVelocidad = maxVelocidadConstante;
      else if(xVelocidad < (maxVelocidadConstante * -1)){ //izquierda
      xVelocidad = (maxVelocidadConstante * -1);
      // FRICCION
      xVelocidad *= friccionConstante;
      yVelocidad *= friccionConstante;
      // Esto hace que se pare de mover si es que la velocidad esta por debajo de 0.5
      // sino esta esto siempre se va a mover por la friccion, pero cada vez mas lento, es mejor pararlo
      if(Math.abs(xVelocidad) < 0.5){
      xVelocidad = 0;
      //MOVIMIENTO 1:
      //del mapa (acordate que no se mueve Felipe, sino el mapa)
      scrollX -= xVelocidad;
      scrollY -= yVelocidad;
      tierra.x = scrollX;
      tierra.y = scrollY;
      // hacer que el cielo se mueva mas lento que el mapa y al revez
      // (efecto de percepcion)
      cielo.x = scrollX * 0.2
      cielo.y = scrollY * 0.2
      // hacer que LAS NUBES se muevan mas lento que el mapa y al revez
      // (efecto de percepcion)
      nubes.x = scrollX * 0.3
      nubes.y = scrollY * 0.3
    function proximoNivel():void{
      nivelActual++;
      trace("Proximo nivel: " + nivelActual);
      if(nivelActual == 2){
        gotoNivel2();
      // para extender:
      // else if(nivelActual == 3) { gotoLevel3(); } // etc
    function gotoNivel2():void{
      tierra.visuales.gotoAndStop(2);
      tierra.colisiones.gotoAndStop(2);
      scrollX = 0;
      scrollY = 500;
    //agregando
    if( ( leftKeyDown || rightKeyDown || xVelocidad > velocidadConstante || xVelocidad < velocidadConstante *-1 ) && chocaAbajo){
      animationState = "running";
      } else if(chocaAbajo){
      animationState = "idle";
      } else {
      animationState = "jumping";
      if(Felipe.animacion.currentLabel != animationState){
      Felipe.animacion.gotoAndStop(animationState);
    // MOVIMIENTO 2:
    // Conecta con las teclas que estan apretadas
    // Codigo de animacion tambien.
    Felipe.addEventListener(Event.ENTER_FRAME, moverFelipe);
    function moverFelipe(event:Event):void{
      //si ciertas teclas estan apretadas le resta el valor de .x o se lo suma,
      //haciendo que se mueva
      if(leftKeyDown){
      //ANIMACION
      xVelocidad -= velocidadConstante; //vel mapa
      velocidadCielo += velocidadConstante; // vel cielo
      velocidadNubes += velocidadConstante; // vel nubes
      if(rightKeyDown){
      //ANIMACION
      xVelocidad += velocidadConstante; //vel mapa
      velocidadCielo -= velocidadConstante; // vel cielo
      velocidadNubes -= velocidadConstante; // vel nubes
      if(upKeyDown){
      //ANIMACION
      if(downKeyDown){
      //animacion
    // "listener" para las pulsaciones del teclado
    //este "listener" escucha las teclas que se apretan
    stage.addEventListener(KeyboardEvent.KEY_DOWN, checkKeysDown);
    function checkKeysDown(event:KeyboardEvent):void{
      //poniendo "true" a los "booleans" para hacer que se mueva con WASD o FLECHITAS
      if(event.keyCode == 37 || event.keyCode == 65){
      leftKeyDown = true;
      if(event.keyCode == 38 || event.keyCode == 87){
      upKeyDown = true;
      if(event.keyCode == 39 || event.keyCode == 68){
      rightKeyDown = true;
      if(event.keyCode == 40 || event.keyCode == 83){
      downKeyDown = true;
    //este "listener" escucha las teclas que se sueltan
    stage.addEventListener(KeyboardEvent.KEY_UP, checkKeysUp);
    function checkKeysUp(event:KeyboardEvent):void{
      //poniendo "false" a los "booleans" para hacer que pare de caminar cuando se sueltan las teclas
      if(event.keyCode == 37 || event.keyCode == 65){
      leftKeyDown = false;
      if(event.keyCode == 38 || event.keyCode == 87){
      upKeyDown = false;
      if(event.keyCode == 39 || event.keyCode == 68){
      rightKeyDown = false;
      if(event.keyCode == 40 || event.keyCode == 83){
      downKeyDown = false;
    // PUNTERO
    puntero.addEventListener(Event.ENTER_FRAME, onEnter);
    function onEnter(event:Event):void
      var dx:Number = mouseX - puntero.x
      var dy:Number = mouseY - puntero.y
      var angle:Number = Math.atan2(dy,dx) * 180 / Math.PI;
      puntero.rotation = angle;
    //Botones
    tierra.botonPrueba.addEventListener(MouseEvent.CLICK, botonPruebaClickeado);
    function botonPruebaClickeado(e:MouseEvent):void
      proximoNivel();
    its stuck in the jumping animation, i dont know why

    Can you isolate the code that is involved with your issue, possibly pinpointing the line that you think is not executing as you expect it to?

  • Flash animation doesnt work on smart phone?

    I created a flash animation for my website banner. When I open the site on my laptop it works completely fine, but it seems not to work when I browse the website using my smart phone. Is there anything I did wrong?
    Thank you!

    If you're sure you've installed the latest version of Flash, take each of the following steps that you haven't already tried. After each step, relaunch Safari and test. For a "missing plug-in" error, start with Step 4.
    1. If you're getting a "blocked plug-in" error, then from the menu bar select
     ▹ System Preferences… ▹ Flash Player ▹ Advanced
    and click Check Now. Quit and relaunch your browser.
    2. Triple-click the line below to select it:
    /Library/Internet Plug-Ins
    Right-click or control-click the highlighted text and select
    Services ▹ Open
    from the contextual menu. A folder should open. If there is more than one item in the folder with the words "Flash Player" (not "flashplayer") in the name, open the respective Info windows, check the version numbers, and delete all except the latest. You may be prompted for your login password.
    3. Re-download and reinstall Flash. Download it from this page:
    Adobe - Install Adobe Flash Player
    Never download a Flash update from anywhere else.
    4. If you get a "missing plug-in" error, select
    Safari ▹ Preferences... ▹ Security
    from the Safari menu bar and check the box marked Enable plug-ins.
    5. Select
    Safari ▹ Preferences... ▹ Extensions
    from the Safari menu bar. If any extensions are installed, disable them.
    6. In the Safari preference window, select
    Privacy ▹ Remove All Website Data
    Close the window. Then select
     ▹ System Preferences… ▹ Flash Player ▹ Advanced
    and click Delete All. Close the preference pane.

  • Control+Z doesnt work while skype desktop is runni...

    Hi Friends,
    A while ago I saw that Control+z (undo) does not work. 
    I googled it and found on a forum that a previous version of skype had caused this issue.
    And I dediced to try it and it worked for me.
    So As of today Control+Z function of Windows 8 does not work on my desktop while Skype's latest version is running.
    Any work around, or any plans to fix it?
    Thanks,
    Ulaş

    Great. Thanks a lot

  • My mouse scroll wheel doesnt work while using firefox, but works with everthing else

    when using firefox my mouse wheel will not work in any website, it will work if i open a pdf file

    If it's an Acer laptop, there appears to be a bug with the ALPS drivers. See: https://bugzilla.mozilla.org/show_bug.cgi?id=605357

  • HP Security Client doesnt work with Chrome browser

    Clean install, everything is latest from HP website, running 8.1, Client Security passwords work fine with Explorer but Chorme extension is seems broken

    No help from HP so far. I found a way to enable the extension with regular Chrome brower however the extension is broken and does NOT work in Chrome. HP developers need to adress this issue otherwise this simple login process is useless.
    In order to enable the extension you must "whitelist" it in Windows policies under Chrome.
    How can I get help from HP ? Tech support said they dont deal with software issues.....

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

  • Re: i was charging my iphone 3GS yesterday in electricity when once it turned off suddenly while it was in quarter battery. I tried charging it again but it didint open, i tried to plug it into my laptop but itunes didnt recognize it and it doesnt work.

    Re: i was charging my iphone 3GS yesterday in electricity when once it turned off suddenly while it was in quarter battery. I tried charging it again but it didint open, i tried to plug it into my laptop but itunes didnt recognize it and it doesnt work.

    Hello candymerna,
    At this point I would recommeng resetting the device if if will not turn on.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    From: iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
              http://support.apple.com/kb/ht1430
    If it does turn on, but will not charge then take a look at this part of the article iPhone: Hardware troubleshooting found http://support.apple.com/kb/ts2802
    Power/Battery
    Battery does not charge from the USB power adapter
    Important: Only original iPhone can be charged from a FireWire-based power source. If iPhone is connected to a computer that's turned off or is in sleep or standby mode, the battery may drain.
    Verify that the outlet being used is working.
    Try another USB power adapter if available.
    If no other USB power adapter is available, try connecting to a high-power USB 2.0 port (not a keyboard). The computer must be turned on and not in sleep or standby mode.
    Try another USB cable if available.
    Also refer to iPhone and iPod touch: Charging the battery.
    If it is charging, but not recognized in iTunes take a look at one of these articles depending on your Operating System.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    or
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/ts1591
    Cheers,
    Sterling

  • I was charging my iphone 3GS yesterday in electricity when once it turned off suddenly while it was in quarter battery. I tried charging it again but it didint open, i tried to plug it into my laptop but itunes didnt recognize it and it doesnt work. help

    i was charging my iphone 3GS yesterday in electricity when once it turned off suddenly while it was in quarter battery. I tried charging it again but it didint open, i tried to plug it into my laptop but itunes didnt recognize it and it doesnt work. help plzzz

    Hello candymerna,
    At this point I would recommeng resetting the device if if will not turn on.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    From: iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
              http://support.apple.com/kb/ht1430
    If it does turn on, but will not charge then take a look at this part of the article iPhone: Hardware troubleshooting found http://support.apple.com/kb/ts2802
    Power/Battery
    Battery does not charge from the USB power adapter
    Important: Only original iPhone can be charged from a FireWire-based power source. If iPhone is connected to a computer that's turned off or is in sleep or standby mode, the battery may drain.
    Verify that the outlet being used is working.
    Try another USB power adapter if available.
    If no other USB power adapter is available, try connecting to a high-power USB 2.0 port (not a keyboard). The computer must be turned on and not in sleep or standby mode.
    Try another USB cable if available.
    Also refer to iPhone and iPod touch: Charging the battery.
    If it is charging, but not recognized in iTunes take a look at one of these articles depending on your Operating System.
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    or
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/ts1591
    Cheers,
    Sterling

  • Is there a way to get Flash to work in a browser while offline?

    In order to work offline I'm using XAMPP to develop a website which is working great except that I can't see any Flash content. External Flash players have no problem working offline but obviously won't load anything but SWFs and FLVs.
    Is there a way to get Flash to work in a browser while offline?
    Thanks
    -Chaz

    You can open a swf file in a browser offline, either as a standalone file or as part of a web page.  If the file is dependent on loading online content in some way, or needs to interact with a server-side script, then it may not get very far.

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

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

  • ItemDisabled doesnt works in f:selectItem of h:selectOneMenu

    Here is the dropdown in which itemDisabled="true" doesnt works for f:selectItem
    <h:selectOneMenu id="manufList" value="#{manufacturerBean.selectedManufacturer}" >
    <f:selectItem itemLabel="New" itemValue="New" itemDisabled="true" />
    <f:selectItems value="#{manufacturerBean.manufacturerList}" />
    <a4j:support action="#{manufacturerBean.loadManufacturerDetails}" event="onchange" reRender="manufName,manufDescription,manufSource,btnSave,btnDelete" />
    </h:selectOneMenu>
    Any pointers/suggestions will be appreciated
    Regards
    Bansi

    Forgot to mention in my earlier posting ................
    I have observed itemDisabled="true" works in Firefox browser but not in IE.
    Even in Firefox browser the item is disable only onChange i.e. pick different value form the list. I want the item to be disable as soon as the page loads
    The dropdown is the first component in my JSF page and it does CRUD operation. The first value in the dropdown is "New".
    When users pick "New" value from the dropdown it facilitates Create operation
    If users pick a value othet than "New" from the dropdown then all other fields are dynamically populated facilitating "Update" operation
    As picking "New" value from dropdown results in "Create" operation so its role based and needs to be disabled as follows
    <f:selectItem itemLabel="New" itemValue="New" itemDisabled="#{manufacturerBean.hasRole}" />
    which unfortunately doesnt work as soon as the page loads
    I am setting the value for property "hasRole" in the Constructor of backing bean as shown below
    public ManufacturerBean() {
         System.out.println("Inside Manuf Constructor");
    UserInfo userInfo = UserInfoHolder.getUserInfo();
    userRoles = userInfo.getUserRoles();
              Iterator it = userRoles .iterator();
         while (it.hasNext()) {
         // Get element
         userRole = (UserRole) it.next();
         roleName = (String) userRole.getNamsRole().getName();
         if (roleName.equals("NAMS Admin"))
              hasRole=true;
         else
              hasRole=false;
    Any pointers/suggestions will be highly appreciated
    Regards
    Bansi

Maybe you are looking for

  • 790FX-GD70 not Booting, FF code

    Hello, new to the forum... I signed up on here because I am having a rather difficult time with my MSI motherboard; I haven't been able to find any help elsewhere. I put together a machine using the MSI 790FX-GD70 socket AM3 board (not winki ed.) and

  • Is there a way to save and view Microsoft Office documents on the iPhone?

    I have just transitioned from a Blackberry to an iPhone 4 for business. On the Blackberry I was able to save and open Microsoft Office documents such as Word, Excel etc. do I have this capability on the iPhone and if so, what is the app required to d

  • RSCRM_BAPI Query output in Process Chain

    Hi, I am using RSCRM_BAPI to get the query result into table and from this table i am extracting data into another infoprovider. Here i am planning to schedule this RSCRM_BAPI Execution in Process Chain,i don't have any option to include this in Proc

  • Why can't I send and receive photos

    why can't i send and receive photos

  • Exporting project- folder structure to other Non-Aperture  applications

    Hello, I'm about to lay the foundation for a new Aperture installation. As far as organizational structure goes, this what I have in mind: 1 Project / year 1 Album / event Example: Project 1993 Derek's Birthday album Linda's wedding album Project 199