| DeeDub 2005-03-08, 6:46 pm |
| Actually, it turns out you can!
I found this solution at:
http://groups-beta.google.com/group...7f29b7ece57446f
We had this same problem and it works perfect.
<!-- PDF file, Flash object, select/combo box that you want to be
underneath
another object -->
<iframe style="position:absolute; left:200px; top:200px; width:150px;
height:150px; background-color:blue; z-index:1;"
src="/file.pdf"></iframe>
<!-- element you want to show on top -->
<div style="position:absolute; left:100px; top:100px; width:150px;
height:150px; background-color:blue; z-index:10;"></div>
<!-- put this directly behind (z-index) the element you want to show
up;
notice the z-index -->
<iframe style="position:absolute; left:100px; top:100px; width:150px;
height:150px; z-index:9;" src="about :blank"></iframe>
Enjoy! And thanks to the person who originally posted (Kody Brown) !
Dennis Webb
darrel wrote:
>
> I didn't even know you could do that.
>
PDF.[color=darkred]
>
> You can't. Any object embedded will take the foreground layer (form
elements
> too).
>
> -Darrel
|