ahk
ahk

Reputation: 81

Fail to embed Flash by using Data uri scheme

i just want to embed a flash like this:

<object
data="data:application/x-shockwave-flash;base64,..."
type="application/x-shockwave-flash">
<param name="movie"
value="data:application/x-shockwave-flash;base64,..."
/> </object>

but it just doesn't work. Did i make any mistake?

thankz

Upvotes: 8

Views: 1196

Answers (1)

Anonymous
Anonymous

Reputation:

That's because it doesn't work. Not only would you have a buffer overflow, but most browsers don't allow for the inclusion of Flash via Data URIs. If you need a good place to host your Flash, Google Code works just fine.

Upvotes: 4

Related Questions