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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Button not showing

Status
Not open for further replies.

SPARROWHILL

Technical User
Apr 8, 2004
3
US
I am loading multiple swf audio's to a web page. The first buttons shows but the other three don't load.

I am new to all of this what am I doing wrong.

In other web pages I see all their audio buttons load with the web page.

 
can you give us an example of your code and a link? i'm not quite clear on what you're wanting to achieve

tigerjade

Always code as if the person who ends up maintaining your code will be a violent psychopath who knows where you live. -- Martin Golding


 
Here is the code for the webpage I got it straight from Macro media

<BODY>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase=" width=250 height=90 align="absmiddle">
<param name=movie value="lukeroebuck/lukeroebuck1.swf">
<param name=quality value=best>
<param name=wmode value=transparent>
<param name=bgcolor value=#FFFFFF>
<param name=loop value=true>
<embed src="lukeroebuck/lukeroebuck1.swf"
quality=best
wmode=transparent
bgcolor=#FFFFFF
loop=false width=100
height=30
type="application/x-shockwave-flash"
pluginspage=" align="absmiddle">
</embed>
</object>


<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase=" width=100 height=30 align="absmiddle">
<param name=movie value="lukeroebuck/lukeroebuck2.swf">
<param name=quality value=best>
<param name=wmode value=transparent>
<param name=bgcolor value=#FFFFFF>
<param name=loop value=true>
<embed src="lukeroebuck/lukeroebuck2.swf"
quality=best
wmode=transparent
bgcolor=#FFFFFF
loop=false width=100
height=30
type="application/x-shockwave-flash"
pluginspage=" align="absmiddle">
</embed>
</object>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase=" width=100 height=30 align="absmiddle">
<param name=movie value="lukeroebuck/lukeroebuck3.swf">
<param name=quality value=best>
<param name=wmode value=transparent>
<param name=bgcolor value=#FFFFFF>
<param name=loop value=true>
<embed src="lukeroebuck/lukeroebuck3.swf"
quality=best
wmode=transparent
bgcolor=#FFFFFF
loop=false width=100
height=30
type="application/x-shockwave-flash"
pluginspage=" align="absmiddle">
</embed>
</object>
</BODY>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top