HELP Please javaScript for flash detection On Click

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • kevin

    HELP Please javaScript for flash detection On Click

    meta refresh tag is failing , it is supposed to go to the entry1.htm
    site which is the flash swf file but it doesn't

    check code please



    thanks
    kevin
  • McKirahan

    #2
    Re: HELP Please javaScript for flash detection On Click

    "kevin" <letmeknow_kevi n@hotmail.com> wrote in message
    news:c4a1aed7.0 310192057.25787 25a@posting.goo gle.com...[color=blue]
    > meta refresh tag is failing , it is supposed to go to the entry1.htm
    > site which is the flash swf file but it doesn't
    >
    > check code please
    >
    > http://members.optusnet.com.au/~kevindauth/
    >
    > thanks
    > kevin[/color]


    Looking at your code I didn't see anything like :

    <meta http-equiv="refresh" content="0;
    URL=http://members.optusne t.com.au/~kevindauth/entry1.htm">


    Comment

    • kevin

      #3
      Re: HELP Please javaScript for flash detection On Click

      Sorry I updated the index file here is the code
      I'll put it up now as


      thanks for the effort I'm hanging to fix it.

      kevin:-)



      <HTML>
      <HEAD>
      <meta http-equiv=Content-Type content="text/html;
      charset=ISO-8859-1">
      <TITLE>index</TITLE>

      <META HTTP-EQUIV="Refresh" CONTENT="10"
      URL="http://members.optusne t.com.au/~kevindauth/entry2.htm">


      </HEAD>
      <BODY bgcolor="#00000 0">




      <!-- URL's used in the movie-->
      <!-- text used in the movie-->
      <OBJECT classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000"
      codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,0,0"
      WIDTH="18" HEIGHT="18" id="index" ALIGN="">
      <PARAM NAME=movie VALUE="index.sw f"> <PARAM NAME=quality VALUE=high>
      <PARAM NAME=bgcolor VALUE=#000000> <EMBED src="index.swf" quality=high
      bgcolor=#000000 WIDTH="18" HEIGHT="18" NAME="index" ALIGN=""
      TYPE="applicati on/x-shockwave-flash"
      PLUGINSPAGE="ht tp://www.macromedia. com/go/getflashplayer" ></EMBED>
      </OBJECT>
      </BODY>
      </HTML>

      Comment

      • Thomas 'PointedEars' Lahn

        #4
        Re: HELP Please javaScript for flash detection On Click

        kevin wrote:

        | Subject: Re: HELP Please javaScript for flash detection On Click

        The subject should provide a summary of your posting. Don't use `HELP'
        (especially not in caps) or stuff like that there because this is not
        a support but a discussion newsgroup.
        [color=blue]
        > meta refresh tag is failing , it is supposed to go to the entry1.htm
        > site which is the flash swf file but it doesn't
        >
        > check code please[/color]

        You do not need a single JavaScript line here. Use

        <object ...>
        alternative
        </object>

        and user-agents which don't have the Flash plugin installed (or not
        the version your movie requires) will display `alternative' content,
        whatever that may be. `alternative' may also be contained in an
        `embed' element while this is contained in the `object' element.
        The `embed' element, however, is not part of (valid) HTML and you
        should avoid it where possible although it may be supported by some
        UAs.


        PointedEars

        Comment

        • kevin

          #5
          Re: HELP Please javaScript for flash detection On Click

          ahhh nope still a mistery did anyone actually try the test.htm link

          thanks
          kevin

          Comment

          Working...