hosted by liquidweb


Go Back   Web Hosting Talk : Web Hosting Main Forums : Web Design and Content : make an embeded flash XHTML 1.0 Transitional
Reply

Web Design and Content Subjects include, HTML, graphics, editors, CSS, Flash, graphics creation, placing of ads, ad serv companies, copyright, content and nearly anything else design related. Also talk about businesses that provide design services. If you link to your site, you must post in Web Site Reviews.
Forum Jump

make an embeded flash XHTML 1.0 Transitional

Reply Post New Thread In Web Design and Content Subscription
 
Send news tip View All Posts Thread Tools Search this Thread Display Modes
  #1  
Old 11-18-2005, 04:43 PM
saukwebsolutions saukwebsolutions is offline
Junior Guru
 
Join Date: Oct 2005
Location: The Ville
Posts: 225

make an embeded flash XHTML 1.0 Transitional


Is this possible. I am still learning this stuff, but here is the code that is bringing up errors:


Code:
 <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="300" height="500" hspace="2" vspace="2" align="right">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="movie" value="form.swf" />
        <param name="quality" value="high" />
        <param name="bgcolor" value="#CCCCCC" />
        <embed target="form.swf" width="300" height="500" hspace="2" vspace="2" align="right" quality="high" bgcolor="#CCCCCC" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></embed>
How can I change the words aroud to make it compliant?

Here is a link to the test results:

http://validator.w3.org/check?uri=ht...doctype=Inline


Thanks again for any and all help

__________________
My Portfolio: www.matthewsauk.com

Reply With Quote


Sponsored Links
  #2  
Old 11-18-2005, 04:48 PM
dollar dollar is offline
Retired Moderator
 
Join Date: Sep 2004
Location: Flint, Michigan
Posts: 5,768
The short and simple answer is that you don't IIRC there is a way to do it with Java, but your already limited by how many users have flash, why limit even more to only those who have flash and java being able to view the flash?

__________________
Mike from Zoodia.com
Professional web design and development services.
In need of a fresh hosting design? See what premade designs we have in stock!
Web design tips, tricks, and more at MichaelPruitt.com

Reply With Quote
  #3  
Old 11-18-2005, 04:55 PM
saukwebsolutions saukwebsolutions is offline
Junior Guru
 
Join Date: Oct 2005
Location: The Ville
Posts: 225
I would think that most if not all people are able to view flash or even java. I think there is a small % of people that are not able to view it or choose not to view it for security reasons.

Over 98% of the people who visit the site use IE, and really that means a good possibility that both are enabled on that machine.

Thanks for the help though, at least the front of the site is.

__________________
My Portfolio: www.matthewsauk.com

Reply With Quote
Sponsored Links
  #4  
Old 11-18-2005, 04:56 PM
Marble Marble is offline
Web Hosting Master
 
Join Date: Dec 2003
Location: Vancouver BC, eh?
Posts: 570
http://www.alistapart.com/articles/flashsatay/

Imo, if you are taking care of the important things, like using alt tags on images that represent content, etc... having a few oddities that don't validate is not a big deal. If you really want to make a good xhtml site, don't use flash.

I still use target="blank" attributes on external links, well-knowing that it doesn't validate. But I'd rather not have my users use the back/history button when viewing external sites... This makes my sites not validate 100%, but I don't see it as a big deal.

Reply With Quote
  #5  
Old 11-18-2005, 04:59 PM
saukwebsolutions saukwebsolutions is offline
Junior Guru
 
Join Date: Oct 2005
Location: The Ville
Posts: 225
Well right now that is the only thing not validating so I am happy. This is some interesting stuff, and very hard to get every single thing coded correctly

__________________
My Portfolio: www.matthewsauk.com

Reply With Quote
  #6  
Old 11-18-2005, 05:38 PM
digiscape digiscape is offline
Junior Guru Wannabe
 
Join Date: Dec 2003
Location: Port Macquarie
Posts: 79
This is a neat javascript solution, it validates and will detect versions of flash installed
http://blog.deconcept.com/flashobject/

Reply With Quote
  #7  
Old 11-18-2005, 05:48 PM
the_pm the_pm is offline
Community Liaison 2.0
 
Join Date: May 2004
Location: Akron/Canton, Ohio (USA)
Posts: 11,110
Quote:
Originally Posted by Marble
http://www.alistapart.com/articles/flashsatay/

Imo, if you are taking care of the important things, like using alt tags on images that represent content, etc... having a few oddities that don't validate is not a big deal. If you really want to make a good xhtml site, don't use flash.

I still use target="blank" attributes on external links, well-knowing that it doesn't validate. But I'd rather not have my users use the back/history button when viewing external sites... This makes my sites not validate 100%, but I don't see it as a big deal.
Just be careful! They forgot a quotation mark in the final markup sample!

Code:
<object type="application/x-shockwave-flash
should be
Code:
<object type="application/x-shockwave-flash"

__________________
Studio1337___̴ı̴̴̡̡̡ ̡͌l̡̡̡ ̡͌l̡*̡̡ ̴̡ı̴̴̡ ̡̡͡|̲̲̲͡͡͡ ̲▫̲͡ ̲̲̲͡͡π̲̲͡͡ ̲̲͡▫̲̲͡͡ ̲|̡̡̡ ̡ ̴̡ı̴̡̡ ̡͌l̡̡̡̡.__Web Design

Reply With Quote
  #8  
Old 11-18-2005, 06:07 PM
Marble Marble is offline
Web Hosting Master
 
Join Date: Dec 2003
Location: Vancouver BC, eh?
Posts: 570
Good catch! Is alistapart aware of this?

Quote:
Originally Posted by the_pm
Just be careful! They forgot a quotation mark in the final markup sample!

Code:
<object type="application/x-shockwave-flash
should be
Code:
<object type="application/x-shockwave-flash"

Reply With Quote
  #9  
Old 11-18-2005, 06:57 PM
the_pm the_pm is offline
Community Liaison 2.0
 
Join Date: May 2004
Location: Akron/Canton, Ohio (USA)
Posts: 11,110
I think people have pointed it out. I have no idea why it isn't fixed. It's a blaring mistake in a very popular article!

__________________
Studio1337___̴ı̴̴̡̡̡ ̡͌l̡̡̡ ̡͌l̡*̡̡ ̴̡ı̴̴̡ ̡̡͡|̲̲̲͡͡͡ ̲▫̲͡ ̲̲̲͡͡π̲̲͡͡ ̲̲͡▫̲̲͡͡ ̲|̡̡̡ ̡ ̴̡ı̴̡̡ ̡͌l̡̡̡̡.__Web Design

Reply With Quote
  #10  
Old 11-18-2005, 07:03 PM
saukwebsolutions saukwebsolutions is offline
Junior Guru
 
Join Date: Oct 2005
Location: The Ville
Posts: 225
interesting stuff! thanks

__________________
My Portfolio: www.matthewsauk.com

Reply With Quote
  #11  
Old 11-18-2005, 07:11 PM
WebDesignGold WebDesignGold is offline
Web Hosting Guru
 
Join Date: Jul 2004
Posts: 337
Hmm.. Someone else claims he got a better solution than that of ALA.
Is this true?

__________________
My woman left me..
I've got no website..
I've got no money..

Reply With Quote
  #12  
Old 11-18-2005, 07:54 PM
seodevhead seodevhead is offline
Web Hosting Evangelist
 
Join Date: Aug 2005
Location: EIB Network
Posts: 474
Here is your answer. It is called Flash Satay. It is modified source by a gentleman with the last name Satay. I have been using it for sometime now and it works great... 100% valid and no extraneous code. You can google 'flash satay' or visit here:

http://www.alistapart.com/articles/flashsatay/

Reply With Quote
  #13  
Old 11-18-2005, 08:24 PM
WebDesignGold WebDesignGold is offline
Web Hosting Guru
 
Join Date: Jul 2004
Posts: 337
Quote:
Originally Posted by seodevhead
Here is your answer. It is called Flash Satay. It is modified source by a gentleman with the last name Satay. I have been using it for sometime now and it works great... 100% valid and no extraneous code. You can google 'flash satay' or visit here:

http://www.alistapart.com/articles/flashsatay/

That's what we are talking about, right above your post.

__________________
My woman left me..
I've got no website..
I've got no money..

Reply With Quote
  #14  
Old 11-18-2005, 08:40 PM
seodevhead seodevhead is offline
Web Hosting Evangelist
 
Join Date: Aug 2005
Location: EIB Network
Posts: 474
Ahhh....

thanks for the validation on that ;-)

Reply With Quote
  #15  
Old 11-18-2005, 09:17 PM
FleZ FleZ is offline
Junior Guru Wannabe
 
Join Date: May 2002
Location: Mtl, Quebec
Posts: 97
Quote:
Originally Posted by WebDesignGold.com
Hmm.. Someone else claims he got a better solution than that of ALA.
Is this true?

No it isn't, and the Flash Satay article talks about a solution similar to this guy's and it tells why it isn't so good.

Reply With Quote
Reply

Related posts from TheWhir.com
Title Type Date Posted
Datacore Software Study: Virtualization Hindered by High Storage Costs, Performance Web Hosting News 2013-04-30 16:42:30
Solutions Sales and the Cloud Blog 2013-02-21 12:16:37
NetApp Introduces FAS Midrange Storage Systems for Agile Data Infrastructure Web Hosting News 2012-11-06 12:26:21
Web Hosting Tutorial Provider DemoWolf Acquires Competitor DemoDemo Web Hosting News 2011-09-21 15:36:44
TDS Completes Data Center Relocation for University of Texas Web Hosting News 2011-08-26 19:49:32


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes
Postbit Selector

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump
Login:
Log in with your username and password
Username:
Password:



Forgot Password?
Advertisement:
Web Hosting News:



 

X

Welcome to WebHostingTalk.com

Create your username to jump into the discussion!

WebHostingTalk.com is the largest, most influentual web hosting community on the Internet. Join us by filling in the form below.


(4 digit year)

Already a member?