Click to See Complete Forum and Search --> : something wrong with my index.html?


mauriceamadeus
05-17-2008, 06:23 PM
hi guys,
I'm currently trying to upload a new website. It works if I put in the complete URL www.rainermarialatzke.com/main.swf
however, it won't appear when i type in www.rainermarialatzke.com.
Does anyone know why?? my source code is as follows. I just can't see why it wouldn't work.....



<!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" />
<meta name="description" content="rainermarialatzke" /> <meta name="keywords" content="showcase, design" />
<title>Rainer Maria Latzke</title>
<script src="Scripts/AC_ActiveX.js" type="text/javascript"></script>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head>
<body>

<center><script type="text/javascript">
AC_AX_RunContent( 'width','920','height','630','src','http://www.rainermarialatzke.com/main.swf','movie','http://www.rainermarialatzke.com/main.swf' ); //end AC code
</script><noscript><object width="920" height="630">
<param name="movie" value="http://www.rainermarialatzke.com/main.swf">
<embed src="http://www.rainermarialatzke.com/main.swf" width="920" height="630"></embed>
</object></noscript></center>

<body>
</html>




Thanks a lot for all the help I can get!
Maurice

aj_nsc
05-17-2008, 07:32 PM
Why did you put that in noscript tags? It works fine if you remove the script and noscript tags and just leave the embed code.

Perhpas someone else could give you insight on how to make this code valid (http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.rainermarialatzke.com%2F) XHTML transitional.

mauriceamadeus
05-18-2008, 02:34 AM
wow, that was silly of me! haha, thanks a lot! Websiteis up and running now,
any cretique is more then welcome by the way

thanks,
Maurice

Centauri
05-18-2008, 10:17 AM
You realize that anyone using assistive programs (screen readers for instance), and search engine spiders will see abolutely nothing on the site ?

mauriceamadeus
05-18-2008, 12:18 PM
because it's flash? Is there anything I can do to prevent that?

I did come across this program once, but am not exactly sure if i want to try it, what do you think?

http://www.flashrelease.com/

Eye for Video
05-18-2008, 01:24 PM
Another option is to use SWFObject and create alternate content. People without Flash would see the jpeg (not sure about the assistive readers though). Spiders could see and read your alternate text content. In your case that content would be a jpeg image of the first (or last) frame of the .swf. Use an <alt> tag to give some description of the page and map out a hotspot or two to make it clickable. At least that may be better than a blank page.
http://www.adobe.com/devnet/flash/articles/swfobject.html

Eye for Video
www.cidigitalmedia.com

WebJoel
05-18-2008, 04:15 PM
....<title>Rainer Maria Latzke</title>
<script src="Scripts/AC_ActiveX.js" type="text/javascript"></script>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head>
<body>

<center><script type="text/javascript">
AC_AX_RunContent( 'width','920','height','630','src','http://www.rainermarialatzke.com/main.swf','movie','http://www.rainermarialatzke.com/main.swf' ); //end AC code
</script><object width="920" height="630">
<param name="movie" value="http://www.rainermarialatzke.com/main.swf">
<embed src="http://www.rainermarialatzke.com/main.swf" width="920" height="630"></embed>
</object></center>
<body>
</html>.... that second "<body>" should be the implicit closure "</body>"