Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsGeneralPHPASPPerlColdFusionFlashHTML, CSS, ScriptsBrowsers

Webmaster Forum / HTML, CSS, Scripts / JavaScript / December 2005



Tip: Looking for answers? Try searching our database.

howto hide  QuickTime object?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Encapsulin - 30 Dec 2005 15:47 GMT
Hello everybody,
is it possible to hide qtvr <object...> (or even change its size to 1
pixel rectangle)?
I need to hide qtvr from the page dynamically, if .mov source is empty.

For example:

<script language="javascript">
function _hide_(){ ??? }

function showfile(filename){
  if(filename == "")
     _hide_();
  else
      document.getElementById("qtvr").SetURL(filename);
}
</script>
             <OBJECT
classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"

codebase="http://www.apple.com/qtactivex/qtplugin.cab"
                      width="180" height="160"
                      id="qtvr" >
               <PARAM name="src" value="">
              </OBJECT>
<br><a href="javascript:showfile('sample1.mov');">sample1</a>
<br><a href="javascript:showfile('');">hide qtvr</a>

Is it possible? How should _hide_() function looks like?
Many thanks.
Janwillem Borleffs - 30 Dec 2005 16:37 GMT
> 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/

Thomas 'PointedEars' Lahn - 30 Dec 2005 17:52 GMT
> <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
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.