Re: [VE][108] Error Message Feedback

Rogue wrote:
 > Do you have have a valid way to do it for quicktime?

well I found an aswer to my question here:

http://realdev1.realise.com/rossa/rendertest/quicktime.html

Example Markup from that link

<script type="text/css">

|//* hides the second object from all versions of IE *//
* html object.mov {
    display: none;
}|

|//* displays the second object in all versions of IE apart from 5 on PC *//
* html object.mov//**// {
    display: inline;
}|

|//* hides the second object from all versions of IE >= 5.5 *//
* html object.mov {
    display//**//: none;
}
</script>|

|<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" 
codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="320" 
height="260">
 <param name="src" value="/rossa/mov/tang.mov" />
 <param name="controller" value="true" />
 <object type="video/quicktime" data="/rossa/mov/tang.mov" width="320" 
height="260" class="mov">
  <param name="controller" value="true" />
  Error text.
 </object>
</object>|

Received on Tuesday, 14 February 2006 07:29:39 UTC