Hello everyone
I created a website consisting of 2 divs, one containing a flash and one containing text.
The flash is used as a background for my text. See code:
Code:
<div id="text" style="position:absolute;text-align: right;width:100%;disabled:true;" id="bg">
text...
</div>
<div id="flash">
<p align='center'>
<object width="990" height="613">
<param name="bg" value="bgdark.swf">
<param name="wmode" value="opaque">
<embed src="bgdark.swf" width="990" height="613" wmode="opaque">
</object>
</p>
</div>
The problem is: The flash object contains clickable areas, and if I make the text in the text div long enough to cover those clickable areas, they stop being clickable. How do I make them clickable at all times?
Is there maybe a way to "disable" the text div?
I even used a script to make the text unselectable (can't mark it and then ctrl+c or whatever) and it didn't work;
text that touches a clickable part in the flash makes that part unclickable. the other clickable parts stay clickable.
Thanks in advance!