How do I layer a animated pic over a flash slideshow?

K

Kchavez

I am trying to layer and animated picture to move across the page over a
flash sideshow and it keeps putting the animated image behind it. I have
tried the different positioning but it keeps putting it in the back. Anyone
have any ideas?
 
K

Kchavez

ok I tried that, and it is still behind it. Maybe I put the code in the wrong
place? I dont know html very well. I create mainly in the design view. Any
other ideas?
 
K

Kchavez

<div style="position: absolute; width: 100px; height: 100px; z-index: 0"
id="layer2;"wmode="Transparent">
<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="824" height="159">
<param name="movie" value="klamathpics.swf">
<param name="quality" value="High">
<embed src="klamathpics.swf"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" name="obj1" width="824"
height="159"></object>
</div>

Thats the code and where i put it..???
 
S

Stefan B Rusynko

See below

<div style="position: absolute; width: 100px; height: 100px; z-index: 0" id="layer2>
<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="824" height="159">
<param name="movie" value="klamathpics.swf">
<param name="quality" value="High">
<param name="wmode" value="Transparent">
<embed src="klamathpics.swf"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" name="obj1" width="824"
height="159"></object>
</div>






| <div style="position: absolute; width: 100px; height: 100px; z-index: 0"
| id="layer2;"wmode="Transparent">
| <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1"
| codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="824"
height="159">
| <param name="movie" value="klamathpics.swf">
| <param name="quality" value="High">
| <embed src="klamathpics.swf"
| pluginspage="http://www.macromedia.com/go/getflashplayer"
| type="application/x-shockwave-flash" name="obj1" width="824"
| height="159"></object>
| </div>
|
| Thats the code and where i put it..???
|
| "Stefan B Rusynko" wrote:
|
| > Set your flash parameters to allow transparency
| > wmode=Transparent
| > See http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| > |I am trying to layer and animated picture to move across the page over a
| > | flash sideshow and it keeps putting the animated image behind it. I have
| > | tried the different positioning but it keeps putting it in the back. Anyone
| > | have any ideas?
| >
| >
| >
 
K

Kchavez

ok, I tried that and it still is behind it? I might have to figure something
else out..

Stefan B Rusynko said:
See below

<div style="position: absolute; width: 100px; height: 100px; z-index: 0" id="layer2>
<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="824" height="159">
<param name="movie" value="klamathpics.swf">
<param name="quality" value="High">
<param name="wmode" value="Transparent">
<embed src="klamathpics.swf"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" name="obj1" width="824"
height="159"></object>
</div>






| <div style="position: absolute; width: 100px; height: 100px; z-index: 0"
| id="layer2;"wmode="Transparent">
| <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1"
| codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="824"
height="159">
| <param name="movie" value="klamathpics.swf">
| <param name="quality" value="High">
| <embed src="klamathpics.swf"
| pluginspage="http://www.macromedia.com/go/getflashplayer"
| type="application/x-shockwave-flash" name="obj1" width="824"
| height="159"></object>
| </div>
|
| Thats the code and where i put it..???
|
| "Stefan B Rusynko" wrote:
|
| > Set your flash parameters to allow transparency
| > wmode=Transparent
| > See http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| > |I am trying to layer and animated picture to move across the page over a
| > | flash sideshow and it keeps putting the animated image behind it. I have
| > | tried the different positioning but it keeps putting it in the back. Anyone
| > | have any ideas?
| >
| >
| >
 
S

Stefan B Rusynko

The flash is z index 0
- make it higher than the z-index of your animation
<div style="position: absolute; width: 100px; height: 100px; z-index: 2" id="layer2">

and your animation would be
<div style="z-index: 1" id="layer1">





| ok, I tried that and it still is behind it? I might have to figure something
| else out..
|
| "Stefan B Rusynko" wrote:
|
| > See below
| >
| > <div style="position: absolute; width: 100px; height: 100px; z-index: 0" id="layer2>
| > <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1"
| > codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="824"
height="159">
| > <param name="movie" value="klamathpics.swf">
| > <param name="quality" value="High">
| > <param name="wmode" value="Transparent">
| > <embed src="klamathpics.swf"
| > pluginspage="http://www.macromedia.com/go/getflashplayer"
| > type="application/x-shockwave-flash" name="obj1" width="824"
| > height="159"></object>
| > </div>
| >
| >
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| > | <div style="position: absolute; width: 100px; height: 100px; z-index: 0"
| > | id="layer2;"wmode="Transparent">
| > | <object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1"
| > | codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" border="0" width="824"
| > height="159">
| > | <param name="movie" value="klamathpics.swf">
| > | <param name="quality" value="High">
| > | <embed src="klamathpics.swf"
| > | pluginspage="http://www.macromedia.com/go/getflashplayer"
| > | type="application/x-shockwave-flash" name="obj1" width="824"
| > | height="159"></object>
| > | </div>
| > |
| > | Thats the code and where i put it..???
| > |
| > | "Stefan B Rusynko" wrote:
| > |
| > | > Set your flash parameters to allow transparency
| > | > wmode=Transparent
| > | > See http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
| > | >
| > | > --
| > | >
| > | > _____________________________________________
| > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > | > "Warning - Using the F1 Key will not break anything!" (-;
| > | > To find the best Newsgroup for FrontPage support see:
| > | > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > | > _____________________________________________
| > | >
| > | >
| > | > |I am trying to layer and animated picture to move across the page over a
| > | > | flash sideshow and it keeps putting the animated image behind it. I have
| > | > | tried the different positioning but it keeps putting it in the back. Anyone
| > | > | have any ideas?
| > | >
| > | >
| > | >
| >
| >
| >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top