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->DVD Profiler: Layouts and Reports Page: 1  Previous   Next
Quotes box...
Author Message
DVD Profiler Unlimited RegistrantErikStraker
Registered: January 9, 2008
Posts: 3
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
I'm looking to make a movie quotes box sort of like the tagline one was made but my html knowledge is rudimentary at best. Any ideas on how I could do this?
 Last edited: by ErikStraker
DVD Profiler Unlimited RegistrantStar Contributornorthbloke
Registered: March 15, 2007
Reputation: High Rating
United Kingdom Posts: 5,459
Posted:
PM this userDirect link to this postReply with quote
Here's a very basic way of doing it:

Create an HTML window and replace the default code with this:
Quote:

<HTML>
<HEAD>

<SCRIPT TYPE="text/javascript">
<!--
<DP NAME="HEADER_VARS" Language="JavaScript" Comments="True" IncludeCast="False" IncludeCrew="False">
//-->
function showquote()
{
var check = DP_Notes.indexOf("<quote=");
if (check != -1) {
quote = DP_Notes.substring(check, DP_Notes.indexOf(">", check));
quote = quote.replace("<quote=","");
}
document.write(quote)
}
</SCRIPT>

</HEAD>
<BODY onload="showquote()">

</BODY>
</HTML>


And then all you need to do is put in the notes of the profile this:

<quote="insert quote here">

The speech marks are optional, and will show in the window if used.
DVD Profiler Unlimited RegistrantErikStraker
Registered: January 9, 2008
Posts: 3
Posted:
PM this userView this user's DVD collectionDirect link to this postReply with quote
Thank you so very much. Works great.
    Invelos Forums->DVD Profiler: Layouts and Reports Page: 1  Previous   Next