Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

.swf click through not working in IE?

Status
Not open for further replies.

Brooker22

Programmer
Jun 16, 2009
6
GB
I'm wrapping the file in an object, inside a href link. I've read a few time this should'nt be done, but is working in all other browsers bar IE? i don't think i should have to do this as the swf. file itself, actually has a click through to the url i want anyway.


This is how my code is looking.

<a href="<object type="application/x-shockwave-flash" width="300" height="250" data=" <param name="wmode" value="opaque">
<param name="src" value=" <param name="href" value=" <param name="autohref" value="true">
<param name="alt" value= "Oracle Primavera">
<param name="tooltip" value= "Oracle Primavera">
<param name="cache" value="false">
<param name="target" value=" <embed src=" width="300" height="250" href=" target=" autoplay="true" pluginspage="</object></a>

any obvious glaring mistakes in terms of coding this? i'm still very much trying to find my feet in asp/ c#

Any help would be much appreciated!

Thanks,
Harry.
 
any obvious glaring mistakes in terms of coding this? i'm still very much trying to find my feet in asp/ c#

Apart from the fact that there's absolutely no ASP or C# here whatsoever, the only thing I can see is that you mix tag closing styles on your param elements, when you should use one or the other, i.e. you have:

Code:
<param name="wmode" value="opaque">
<param name="src" value="[URL unfurl="true"]http://execdigital.co.uk/banners/OracleMPU.swf"[/URL][!]/[/!]>

Dan




Coedit Limited - Delivering standards compliant, accessible web solutions

Dan's Page [blue]@[/blue] Code Couch:
Code Couch Tech Snippets & Info:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top