Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

poster movie problem

Status
Not open for further replies.

tpeck

Programmer
May 25, 2005
7
AU
Dear Forum Members,

My first post. The following code works well (as you would expect):

*****************************************************

<script language="JavaScript" type="text/javascript">
QT_WriteOBJECT('file:///C:/VIDEO/clip1.mov','268','216','',
'target','quicktimeplayer',
'scale','aspect',
'controller','true',
'autoplay','false');
</script>

*****************************************************

It scales (squashes), say, a 400 x 300 .mov file neatly into the smaller parameters I want. But what I would like is to use the poster.mov technique and still achieve this.

The following doesn't work (and I've tried everything known to man to get it to):

*****************************************************

<script language="JavaScript" type="text/javascript">
QT_WriteOBJECT('images/poster.gif', '268', '216', '', 'loop', 'true',
'href','<file:///C:/VIDEO/diskclip1.qtl>T<myself>','target',
'quicktimeplayer',
'scale','aspect',
'controller','false',
'autoplay','true');
</script>

*****************************************************

OK, the poster.mov is a gif file, but that shouldn't (and doesn't normally) make any difference.

diskclip1.qtl is as follows:

************

<?xml version="1.0"?>
<?quicktime type="application/x-quicktime-media-link"?>
<embed
src="clip1.mov"
autoplay="true"
fullscreen="full"
quitwhendone="true"
/>

************

QT_WriteOBJECT doesn't seem to scale the movie down. Removing the fullscreen attribute makes no difference either.

Anyone know why or what I can do?

Best,

Terry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top