PP2-01 Play All Videos (a Play All for Tracks) PDF Print E-mail

PP2-01_tn.jpg

This DVD is a simple playback suitable for a demo reel, spot reel or similar. It contains a Splash page, which plays first, then it navigates to one Menu which can select from the four available video tracks (SEG1, SEG2, SEG3, SEG4).

• Each track, once selected from a menu button, will play and then return to the same button on the menu (the default button on the MAINMENU has not been set).
• If you want to always return to the SAME button on the MAINMENU, set the default button to that number.
• If you want to be able to play ALL tracks, use the 1M 4Trks Play All or 1M4Trks Play in Sequence template instead

Like this one? You can get more details about it from our store

 

 
PP2-02 Play All Menus PDF Print E-mail

PP2-02_tn.jpg

This DVD is a simple Menu plus four Additional Menus, with a special Play All feature added. This allows you to play Graphics instead of Video Clips. (Note that you NEED at least ONE track or Slideshow)


Like this one? You can get more details about it from our store
 
PP2-03 Random Track Script PDF Print E-mail

PP2-01_tn.jpg

The Random Tracks Script continually cycles and picks a Track to play at random.

 

Like this one? You can get more details about it from our store

 

 

 

 
PP2-04 Random Track Better PDF Print E-mail

PP2-04_tn.jpg

The Random Tracks – Better Script continually cycles and picks a Track to play at random. ♦ This version has a more refined and error-trapped Random Generator, with a larger “seed value” so it should be bulletproof! 

Like this one? You can get more details about it from our store

 

 

 

 
PP2-05 Random Buttons PDF Print E-mail

PP2-05_tn.jpg

This Script continually cycles and picks a button number at random. Check out the script to see the mechanism of the Random Number Generator – this script plays Buttons instead of Menus or Tracks.

 

Like this one? You can get more details about it from our store

 

 

 

 
PP2-05a Random Buttons Better PDF Print E-mail

PP2-05_tn.jpg

This Script continually cycles and picks a button number at random. This project is exactly the same as Project 05, but it uses the better random Number Generator routine...

 

Like this one? You can get more details about it from our store

 

 

 

 
PP2-06 Random Marker PDF Print E-mail

PP2-06_tn.jpg

This Script is similar to 05 Random Buttons, but this Random script selects a Marker from within the Video Track, bypassing the Menu altogether.

 

Like this one? You can get more details about it from our store

 

 

 

 
PP2-07 Random Menu PDF Print E-mail

This script will continue to cycle until you shut off the DVD player, or hit STOP.  

The Script that is the Startup Action continually cycles and picks a MENU at random. While we're using MENUS in this one, you could just as easily use TRACKS of Video. This script can be used as a product catalog using GRAPHICS FILES for your products! It can also be extended to a largeer number of Menus

 
PP2-07a Random Menu Better PDF Print E-mail
This Project is the same as 07, but uses the Better Random Number Generator scheme, so you should see fewer repeats of the same image. There are some checks and balances built in that prevent repeats – you should examine the script lines carefully to see how this is done!
 
PP2-08 Script Plays Buttons PDF Print E-mail
This Scripting example shows scripts being used to select (and highlight) a SPECIFIC BUTTON within a menu -each Script plays a different, unique Button within the “ButtonsMenu”.
 
PP2-09 Button Play 1 Script PDF Print E-mail
The Menu buttons each select a unique script (Script 1 - Script 8) Each Script sets GPRM 0 to a unique value equal to the button that selected it; We use this function in other projects, but its purpose here it to show you what can be done within a script. This GPRM value will show up in the Info Pane of the Simulator display, if it has been opened.
 
PP2-10 Button Plays 2 Scripts PDF Print E-mail
This Scripting example uses scripts in two places, and shows off GPRM Assignment, Scripts playing Scripts, and Conditional Branching.
 
PP2-11 Button Plays Stories PDF Print E-mail
This Scripting example uses scripts in three places First, each Menu button selects a unique script (Script 1 -Script 8); That Script sets GPRM 0 to the numerical value of the button that selected it (1-8); Each Script then calls the Play Marker Script, which executes a series of If...Then tests to determine which button was selected; this is known as “Conditional Branching”; When it gets a match, it plays a Story from the Recipe Track. Each story calls the 'Play Ending Script' when finished That script redirects navigation to the slide in the slideshow equal to the value of GPRM 0, again showing “Conditional Branching”.
 
PP2-12 Buttons Menus Web (DVD@cess) PDF Print E-mail
This Scripting example uses scripts in two places and DVD@cess to play web pages!! BE SURE YOU TURN ON "USE @CESS" in the DVDSP Menu >PREFERENCES>SIMULATION> "EnableDVD@cess".
 
PP2-13 Non-advancing Buttons PDF Print E-mail
This script takes direct control of menu Buttons highlights, and returns them to the button number that was originally pressed -in many cases, DVD menus do this automatically, but in this case, by taking direct control we can specify exactly which button will highlight when we return, instead of leaving it to luck.
 
PP2-14 Advancing Buttons PDF Print E-mail
This script takes direct control of menu Buttons highlights, and returns them to the button number ONE HIGHER than the one that was originally pressed -in some cases, commercial DVDs have been programmed to do exactly this... by taking direct control of the button highlight with a Script, we can specify which button to highlight.
 
PP2-15 Random Slideshow PDF Print E-mail
This project shows off using Scripts (with Random function) to select Slideshows. Using the Simple Random function, it selects a Random number between 1 and 6, and plays a slideshow as determines by the “If...Then” tests in this script.
 
PP2-16 Random Slides PDF Print E-mail
Again using the Simple Random Number Generator, this project randomly selects a SLIDE within a slideshow, based on the value stored into GPRM0 by the Random command “ran GPRM0, 6”;
 
PP2-17 Scripting Markers PDF Print E-mail
This is a method to Select Markers within Tracks using Scripting instead of navigating using Buttons directly.
 
PP2-18 Scripting Stories PDF Print E-mail
Similar to project 17, this is a variation for Selecting Stories within Tracks using Scripts instead of buttons.
 
PP2-19 The “Add” Function PDF Print E-mail
This is a demo for using the ADD function, which is part of the SET GPRM command. This can be used to perform Arithmetic during DVD playback, but remember to watch out for underflow (< 0) and overflow (> 65535) of numeric values.
 
PP2-20 “Greater Than” Or “Less Than” Function PDF Print E-mail
This script uses our advanced Random Number with Range Checking scheme, but only tests for a value that’s Greater than or Less than 5
 
PP2-21 Subtract Function PDF Print E-mail
This is a demo for using the SUBTRACT (“sub”) scripting function, which is part of the SET GPRM command.
 
PP2-22 Multiply Function PDF Print E-mail
This is a demo for using the MULTIPLY scripting function, which is part of the SET GPRM command.
 
PP2-23 Divide by Function PDF Print E-mail
This is a demo for using the DIVIDE scripting function, which is part of the SET GPRM command.
 
PP2-24 File-enabled Menus (using DVD @ cess) PDF Print E-mail
This Project uses DVD @cess to open up an HTML file contained on the DVD disc itself! (Of course, you know this will not work on a Set-top box, only a DVD-enabled Computer)
 
PP2-25 Web-enabled Menus (using DVD @ cess) PDF Print E-mail
This Bonus Project uses DVD @cess to open up an HTML file from a web site. To do this, the DVD @cess property has been checked, and a valid Web URL has been entered – Internet URLs use a syntax like this: http://www.yourdomainname.tld (tld = .com, .org, .net, .mil, .edu.) to target a specific file on a web site, use this: http://www.yourdomainname.tld/filename.htm
 
PP2-26 File-enabled Tracks (using DVD @ cess) PDF Print E-mail
This version uses Track Markers instead of Menus, but still calls Local HTML files from the DVD Disc, as in project 24. NOTE that in DVD Studio Pro 2 and above, you can NOT enable a Track, but rather must enable a MARKER.
 
PP2-27 Web-enabled Markers (using DVD @ cess) PDF Print E-mail
This version uses Track Markers instead of Menus as in Project 25, but still calls Web pages from the Internet, as in project 25. NOTE that in DVD Studio Pro 2 and above, you can NOT enable a Track, but rather must enable a MARKER
 
PP2-28 File-enabled Track ends (DVD @ cess) PDF Print E-mail
If you would prefer your local HTML files to open at the END of a Track playback instead of at the beginning, you could File-enable a Marker just before the end of the Video Track, OR you could use this technique!
 
PP2-29 Web-enabled Track ends (DVD @ cess) PDF Print E-mail
If you want your Internet Web pages to open at the END of a Track playback instead of at the beginning, you could File-enable a Marker just before the end of the Video Track, OR you could use this technique!
 
PP2-30 Secret Code Project! PDF Print E-mail
This project shows you how to author a DVD that uses a keypad to attempt to restrict playback to those who have the secret code. The viewer gets two chances to get it right, or it will HALT playback on conclusion of the second wrong entry.wrong entry.
 
PP2-31 Alt Menu Return Project PDF Print E-mail
This project uses scripts and Variables to keep track of WHICH of the two menus generated the request to play the Track. Each Menu uses a SetMenu script to establish a value in GPRM 0 that corresponds to the number of the Menu you are currently in. The Original Menu sets the value to 1, and the Alternate Menu sets the value to 2.
 
PP2-32 Divide Modulo PDF Print E-mail
Divide and dispose of Remainder - coming soon!
 
PP2-33 Scripting Video Angles PDF Print E-mail
How This DVD Works:
 

32 divide modulo.jpg

This project uses Scripts and SPRMs to keep track of WHICH Video Angle in the Track will play.  
  • Each Menu Button links to a script containing a SetSystemStream command that sets the value of the Video stream to be played.

 

 
add-to-cart_blue.gif
 Sound Good? You can download this project right now, from our store
   

 

 
PP2-34 Scripting Audio Streams PDF Print E-mail
How This DVD Works:
 

32 divide modulo.jpg

This project uses Scripts and SPRMs to keep track of WHICH Audio Stream in the Track will play.  
  • Each Menu Button links to a script containing a SetSystemStream command that sets the value of the Audio stream to be played.

 

 
add-to-cart_blue.gif
 Sound Good? You can download this project right now, from our store
   

 

 
PP2-35 Scripting Subtitles PDF Print E-mail
How This DVD Works:
 

32 divide modulo.jpg

This project uses Scripts and SPRMs to keep track of WHICH Subtitle Stream in the Track will play.  
  • Each Menu Button links to a script containing a SetSystemStream command that sets the value of the Subtitle stream to be played.

 

 
add-to-cart_blue.gif
 Sound Good? You can download this project right now, from our store
   

 

 
PP2-35a Scripting "Sticky" Subtitles PDF Print E-mail
How This DVD Works:
 

32 divide modulo.jpg

This project demonstrates how to script "sticky" Subtitles - meaning, this technuque uses a GPRM to keep track of Subtitle status/value...

This project uses Scripts and SPRMs to set and track the Subtitle Stream that the Track will play.  The project uses scripts to set and retain the selected Subtitle Stream number in a GPRM, so that the Stream selection will persist during playback from Track to Track. ALL Tracks MUST contain the same number of Subtitle Streams, or the stream selection will fail to "stick"..

Specifically - If you set the Subtitle Stream to something OTHER than "0" (the first one), and play ANY Track or Slideshow that contains fewer Subtitle Streams than the selection, the stream selection will revert to an uncertain number (usually Stream zero).

The way to prevent this is to place dummy subtitle streams into any Track or Slideshow that contains unused stream areas; So if you have a Movie with 2 subtitles (0, 1), and a Special Features with only stream 0, you MUST put a dummy (textless) subtitle stream into the Special Feature sub stream 1 (the second one), or playing it will cause the Subtitle Selection to revert down to stream 0. 

 

 
add-to-cart_blue.gif
 Sound Good? You can download this project right now, from our store
   

 

 
PP2-36 Selecting Angles by Button PDF Print E-mail
How This DVD Works:
 

32 divide modulo.jpg

This project uses MENU BUTTONs to directly select WHICH Video Angle in the Track will play.  
  • Each Menu Button links to the track and sets the value of the Video Angle to play.

 

 
add-to-cart_blue.gif
 Sound Good? You can download this project right now, from our store
   

 

 

 
PP2-37 Selecting Audio by Buttons PDF Print E-mail
How This DVD Works:
 

32 divide modulo.jpg

This project uses MENU BUTTONs to directly select WHICH Audio Stream in the Track will play.  
  • Each Menu Button links to the track and sets the value of the Audio Stream to play.

 

 
add-to-cart_blue.gif
 Sound Good? You can download this project right now, from our store
   

 

 

 
PP2-38 Selecting Subtitles by Button PDF Print E-mail
How This DVD Works:
 

32 divide modulo.jpg

This project uses MENU BUTTONS to select WHICH Subtitle Stream in the Track will play.  
  • Each Menu Button links to the Track, and directly sets the Subtitle stream to be played.

 

 
add-to-cart_blue.gif
 Sound Good? You can download this project right now, from our store
   

 

 

 
PP2-39 Playlist 8-Old way–Script Intensive PDF Print