Welcome to the Invelos forums. Please read the forum rules before posting.

Read access to our public forums is open to everyone. To post messages, a free registration is required.

If you have an Invelos account, sign in to post.

    Invelos Forums->General: General Discussion Page: 1  Previous   Next
Trailers
Author Message
DVD Profiler Unlimited RegistrantRico
Strike Three
Registered: April 8, 2007
United States Posts: 1,057
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
If I felt any better I'd be sick!
Envy is mental theft. If you covet another mans possessions, then you should be willing to take on his responsibilities, heartaches, and troubles, along with his money. D. Koontz
DVD Profiler Desktop and Mobile Registrantpauls42
Reg: 31/01/2003
Registered: March 13, 2007
United Kingdom Posts: 2,692
Posted:
PM this userEmail this userVisit this user's homepageView this user's DVD collectionDirect link to this postReply with quote
I think this one is better.
Daves Trailer Page
Paul
DVD Profiler Unlimited RegistrantStar ContributorLord Of The Sith
Registered: March 17, 2007
United States Posts: 853
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Personally I just use the quicktime page.  I get most of the trailers in a pretty timely fashion.  I am glad you all posted this though.  It reminds me of a feature request, yes I know this isn't the place for it, but I want opinions before I even bother Ken. 

Does anyone think it would be cool to be able to access trailers from inside the program?  That way if a friend was like wow what's that movie like you could show them a downloaded trailer.
DVD Profiler Desktop and Mobile RegistrantMarEll
Registered: June 9, 2007
United Kingdom Posts: 1,208
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Thats already possible with either a html window or a plugin.
DVD Profiler Unlimited RegistrantStar ContributorLord Of The Sith
Registered: March 17, 2007
United States Posts: 853
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
I was unaware.  Thanks.  Do you know the name of the plugin?
DVD Profiler Unlimited RegistrantStar Contributorsnarbo
Registered: March 13, 2007
United Kingdom Posts: 1,242
Posted:
PM this userDirect link to this postReply with quote
Quoting Lord Of The Sith:
Quote:
I was unaware.  Thanks.  Do you know the name of the plugin?



Try Here
Not so much a plug in more of a html window thing.

Steve
DVD Profiler Desktop and Mobile RegistrantMarEll
Registered: June 9, 2007
United Kingdom Posts: 1,208
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
I use the code below (credit to northbloke  ).  It allows for trailers of different file types.  You rename the trailer the collection number it has in profiler then you create a tag called 'ztrailer' and give it 3 child tags (mov, wmv, vob), if your trailers are different formats that is.

Quote:

<HTML>
<HEAD>

<SCRIPT TYPE="text/javascript">
<!--
<DP NAME="HEADER_VARS" Language="JavaScript" Comments="True" IncludeCast="False" IncludeCrew="False">
//-->
</SCRIPT>

<SCRIPT language=javascript>
window.onload = window_onload;
function window_onload() {
  var i;
  myloop: for (i = 0; i < DP_Tags.length; i++) {
    switch (DP_Tags[i]) {
      case "ztrailer/WMV":
        idPlay.href = "F:\\Trailers\\" + DP_CollectionNumber + ".wmv";
        break myloop;
      case "ztrailer/MOV":
        idPlay.href = "F:\\Trailers\\" + DP_CollectionNumber + ".mov";
        break myloop;
      case "ztrailer/VOB":
        idPlay.href = "F:\\Trailers\\" + DP_CollectionNumber + ".vob";
        break myloop;
    }
  }
  if (i >= DP_Tags.length) {
    // Remove link if there is no trailer tag
    idPlay.removeNode(true);
  }
}
</SCRIPT>

</HEAD>
<BODY>

<A id=idPlay href="#">Play Trailer</A>

</BODY>
</HTML>
 Last edited: by MarEll
    Invelos Forums->General: General Discussion Page: 1  Previous   Next