A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: [Resolved] [Resolved] Netscape Problems: Please Help

  1. #1
    Junior Member
    Join Date
    Aug 2000
    Posts
    2
    I made my first two attempts at swish files and they run great in IE5, but when I try to play them in Netscape, they don't work. The first one, http://www.integrated-learning.com/cla.htm doesn't play at all in Netscape.

    The second, http://www.integrated-learning.com/uu.htm plays but does not play the music and is very slow and choppy. It also takes the text off to the sides of the movie clip even though I told it to "clip" during export.

    Does anyone know what I'm doing wrong? Any help would be greatly appreciated as this Netscape thing is driving me nuts. Thanks

  2. #2
    Senior Member
    Join Date
    Jul 2000
    Posts
    350
    Well, firstly your missing loads of HTML, you don't have the <embed> tag which Netscape requires.
    Swish can create the HTML for you if you editor is that crap not to do it for you.

    Secondly, your other SWF looks fine on my PC, sound is OK.
    Maybe it's too demanding for lower CPU's ?

    -Richard


  3. #3

    Check your e-mail

    I e-mailed you a finished code that will work in IE and NS, like the post before this one, you are missing some HTML. You can change the values to fit your needs (i.e. loop values etc.). This is the code I put together and got to work in both browsers:

    <html>
    <head>
    <title>YOUR TITLE HERE</title>
    <meta name="title" content="YOUR TITLE HERE">
    <meta name="description" content="YOUR DESCRIPTION HERE">
    <meta name="keywords" content="YOUR KEYWORDS HERE">
    <meta name="author" content="YOUR AUTHOR CONTENT HERE">
    <meta name="robots" content="INDEX,FOLLOW">
    <meta name="revisit-after" content="31 days">
    <!-- YOUR SITE DESCRIPTION HERE -->
    </head>
    <body bgColor=#000000 text=#FFFFFF link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" MARGINWIDTH="0" MARGINHEIGHT="0" LEFTMARGIN="0" RIGHTMARGIN="0" TOPMARGIN="0" BOTTOMMARGIN="0">
    <center>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    width="700"
    height="400"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#3,0,0,0">

    <param name="MOVIE" value="http://www.integrated-learning.com/uutest.swf">
    <param name="BGCOLOR" value="#000000">
    <param name="PLAY" VALUE="true">
    <param name="LOOP" VALUE="false">
    <param name="QUALITY" VALUE="high">

    <embed
    src="http://www.integrated-learning.com/uutest.swf"
    bgcolor="#000000"
    width="700"
    height="400"
    play="true"
    loop="false"
    quality="high"
    pluginspage="http://www.macromedia.com/shockwave/download/"
    type="application/x-shockwave-flash">
    </embed>
    </object>
    </center>
    </body>
    </html>

    Let me know if you need any more help,
    Adrian

  4. #4
    Junior Member
    Join Date
    Aug 2000
    Posts
    2
    Thank you!!!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center