A Flash Developer Resource Site

Results 1 to 9 of 9

Thread: Koolmoves not rendering in NETSCAPE

  1. #1
    Junior Member
    Join Date
    Aug 2006
    Posts
    4

    Koolmoves not rendering in NETSCAPE

    I have included my page (see below) of which I am having issues in NETSCAPE, could anyone please tell me why in NETSCAPE I see an extremely small rendering of my page. In IE it renders properly.

    I don't see any ill formed HTML. I would really appreciate any help someone could shed on this problem, as I am losing members that are NETSCAPE usres.

    Thanks so much in advance.


    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <script language="JavaScript" type="text/JavaScript">
    function checkit()
    {

    if(navigator.appName != "Microsoft Internet Explorer")
    {
    alert('This site is designed to be viewed by Internet Explorer, your browser is ' + navigator.appName + ', if you are having problems viewing the site, please switch your browser to Internet Explorer. Sorry for the inconvenience!. Any other issues please email us at [email protected].');
    }
    }
    </script>



    <head>
    <title>Pointspread Pro's Your NFL Handicapping Specialists</title>
    <META HTTP-EQUIV="expires" CONTENT="Wed, 03 Nov 1999 12:21:14 GMT">
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <meta http-equiv="Cache-Control" Content="no-cache">
    <meta name="description" content="free nfl picks">
    <meta name="keywords" content="handicapping, 2006 nfl schedule, nfl, picks, pro, pick, football picks, football, predictions, weekly picks, betting, wagering, nfl picks, nfl week 1, nfl week 2, nfl week 3">
    <meta name="revisit after" content="7 days">
    <meta name="robots" content="follow,index">
    <meta name="robots" content="all">
    <meta name="classification" content="sports">

    <!-- NOTE: paste following code between <head> and </head> tags -->
    <script src="AC_RunActiveContent.js" type="text/javascript"></script>
    </head>
    <body onload="checkit()">

    <table width="862" border="0" cellspacing="2" cellpadding="2" align="center" bgcolor="#BFC8DD">
    <tr>
    <td width="862">
    <script type="text/javascript">
    AC_FL_RunContent('codebase',"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,65,0",'loop','false','bgco lor','#ffffff','width','1862','height','1584','src ','psp2','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','psp2');
    </script>
    <OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH="862" HEIGHT="584">
    <PARAM NAME=movie VALUE="psp2.swf">
    <PARAM NAME=quality VALUE=high>
    <PARAM NAME=bgcolor VALUE="blue">
    <param name="play" value="true" />
    <param name="loop" value="false" />
    <param name="bgcolor" value="#BFC8DD" />
    <embed src="psp2.swf" width="616" height="84" autostart="false" quality="high" type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_>"
    Version="ShockwaveFlash">
    </EMBED>
    </OBJECT>
    </td>

    <!--- <td width="100"><font face="Verdana"><b>NFL News...</b><br><a href=http://www.freshcontent.net/directory/sports/nfl_news.html>Fresh Content.net</a><br><br>
    <script type="text/javascript" src="http://www.freshcontent.net/nfl_news_feed.php"></script>
    </td>
    --->

    </tr>
    </table>
    </body>
    </html>







    Jim

  2. #2
    Banned XareoX's Avatar
    Join Date
    Aug 2006
    Posts
    462
    sry i dont know i dont have net scape ask a km admin like bob or maybe chris or some 1 with netscape could help u out

  3. #3
    Banned XareoX's Avatar
    Join Date
    Aug 2006
    Posts
    462
    they will proberly reply on this fourm if they dont contact bob at [email protected]
    Last edited by blanius; 08-12-2006 at 08:28 PM.

  4. #4
    Junior Member
    Join Date
    Aug 2006
    Posts
    4

    [email protected]?

    Thanks, but is it support@koolmoves I wasn't sure if you had a typo?

    Thanks.

    Jim

  5. #5
    Senior Member indogo's Avatar
    Join Date
    Dec 2005
    Posts
    282
    Ok you seem to have 3 different dimentions specified
    1862 x 1584 in the javascript

    862 x 584 in the object tags

    616 x 84 in the embed tags (hence the small display in netscape)

    I suggest the second values are the correct ones so set these in all three

    This site is designed to be viewed by Internet Explorer
    speechless!

    regards

    mike

  6. #6
    Polak Maly ant_Z's Avatar
    Join Date
    Jul 2006
    Location
    Poland
    Posts
    440
    DUDE! Youve got 3 different movies! Different bgcolors!

    and if youre using script in your site and if youve gott php dont use <script type="text/javascript" src="http://www.freshcontent.net/nfl_news_feed.php">...

    use

    <?php @include('http://www.freshcontent.net/nfl_news_feed.php'); ?> or if content of this script is important use
    <?php @require('http://www.freshcontent.net/nfl_news_feed.php'); ?>

    if error occurs, "@" makes that function wont show errors. You can delete "@" if you want to see error codes in case of error. If you need some help with code contact with me via ICQ - and remember - im in GMT +1 :]

  7. #7
    Junior Member
    Join Date
    Aug 2006
    Posts
    4
    Quote Originally Posted by indogo
    Ok you seem to have 3 different dimentions specified
    1862 x 1584 in the javascript

    862 x 584 in the object tags

    616 x 84 in the embed tags (hence the small display in netscape)

    I suggest the second values are the correct ones so set these in all three



    speechless!

    regards

    mike
    Thanks, problem solved. I can't believe how I missed the size thing, I thought I used the exact output from the Koolmoves Export funtion so I didn't think I needed to tweak the sizes ib the embed vs. object tags.

    Thanks again

  8. #8
    Junior Member
    Join Date
    Aug 2006
    Posts
    4
    Quote Originally Posted by ant_Z
    DUDE! Youve got 3 different movies! Different bgcolors!

    and if youre using script in your site and if youve gott php dont use <script type="text/javascript" src="http://www.freshcontent.net/nfl_news_feed.php">...

    use

    <?php @include('http://www.freshcontent.net/nfl_news_feed.php'); ?> or if content of this script is important use
    <?php @require('http://www.freshcontent.net/nfl_news_feed.php'); ?>

    if error occurs, "@" makes that function wont show errors. You can delete "@" if you want to see error codes in case of error. If you need some help with code contact with me via ICQ - and remember - im in GMT +1 :]
    Thanks Ant,
    The php I got directly from them (freshcontent), the type=javascript was part of the code they told me to copy/paste, so I didn't change anything.

    I have commented out this anyway, but I appreciate the info on it.

  9. #9
    Senior Member indogo's Avatar
    Join Date
    Dec 2005
    Posts
    282
    Glad you got sorted....

    Thanks, problem solved. I can't believe how I missed the size thing, I thought I used the exact output from the Koolmoves Export funtion so I didn't think I needed to tweak the sizes ib the embed vs. object tags.
    no normally not..the export should work as is...bob might be interested if it came direct from the export function....notice 1584 584 84...looks like somethings slightly adrift there

    regards

    mike

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