> Is it possible? How should _hide_() function looks like?
// Hide the movie
function hide(){
document.getElementById("qtvr").style.display = 'none';
}
// Show the movie
function show(){
document.getElementById("qtvr").style.display = '';
}
JW
Thomas 'PointedEars' Lahn - 30 Dec 2005 17:54 GMT
>> Is it possible? How should _hide_() function looks like?
>
[quoted text clipped - 7 lines]
> document.getElementById("qtvr").style.display = '';
> }
<URL:http://pointedears.de/scripts/test/whatami#inference>
PointedEars
Encapsulin - 30 Dec 2005 19:13 GMT
In some reason Mozilla crashed with the following code (but IE is ok):
<SCRIPT type="text/javascript">
function showmov(filename)
{
if(filename == "")
{
document.movie.style.display = 'none';
}
else
{
document.movie.style.display = '';
document.movie.SetURL(filename);
}
document.getElementById('report').innerHTML =
"["+document.movie.style.display+"] ["+document.movie.GetURL()+']';
}
</SCRIPT>
<br><a href="javascript:showmov('sample1.pano');">sample1</a>
<br><a href="javascript:showmov('sample2.pano');">sample2</a>
<br><a href="javascript:showmov('');">hide</a>
<hr><span id="report">status</span>
<hr>
<OBJECT
classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
codebase="http://www.apple.com/qtactivex/qtplugin.cab"
width="180" height="160"
id="movie" >
<PARAM name="src" value="">
<EMBED width="180" height="160"
src=""
TYPE="video/quicktime"
PLUGINSPAGE="www.apple.com/quicktime/download"
name="movie" id="movie"
enablejavascript="true">
</EMBED>
</OBJECT>
WHY?
Thomas 'PointedEars' Lahn - 30 Dec 2005 19:36 GMT
> In some reason Mozilla crashed with the following code (but IE is ok):
> [much the same nonsense again, and more new nonsense]
Apparently you are unable to read and comprehend. I will no longer
waste my time with you, and I suggest that nobody else does: PLONK
PointedEars
Randy Webb - 30 Dec 2005 20:22 GMT
Thomas 'PointedEars' Lahn said the following on 12/30/2005 2:36 PM:
>>In some reason Mozilla crashed with the following code (but IE is ok):
>>[much the same nonsense again, and more new nonsense]
>
> Apparently you are unable to read and comprehend.
Now you know how you appear to other people as you display those same
traits.
> I will no longer waste my time with you
And anybody else's time?

Signature
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
> <script language="javascript">
The language attribute is deprecated since the current HTML version (4.01),
the `type' attribute is required:
<script type="text/javascript">
> <OBJECT
> classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
[quoted text clipped - 4 lines]
> <PARAM name="src" value="">
> </OBJECT>
This will not work with any other QuickTime-capable plugin than
the QuickTime plugin on Microsoft Windows systems with enabled
ActiveX/COM support,
> <br><a href="javascript:showfile('sample1.mov');">sample1</a>
although the resource name indicates that it is not required. And
you have still not read the FAQ, hence the ongoing misuse of the
`javascript:' pseudo-protocol.
PointedEars