/** 
 * Example external configuration file.  
 * You can freely categorize these nodes 
 */

var conf = { 
     
    // default clip configuration 
    defaults: { 
         
        scaling: 'fit',
        autoPlay: false, 
        autoBuffering: true, 
        baseUrl: 'http://www.wrcc.org/multimedia/video/', 
     
        // functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        }         
    },
    defaults_splash: { 
         
        scaling: 'fit',
        autoPlay: true, 
        autoBuffering: true, 
        baseUrl: 'http://www.wrcc.org/multimedia/video/', 
     
        // functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        }         
    }, 
    defaults_animate: { 
         
        scaling: 'fit',
        autoPlay: true, 
        autoBuffering: true, 
        baseUrl: 'http://www.wrcc.org/multimedia/video/', 
     
        // functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        }         
    }, 
    defaults_scroll: { 
         
        scaling: 'fit',
        autoPlay: true, 
        autoBuffering: true, 
        baseUrl: 'http://www.wrcc.org/multimedia/video/', 
     
        // functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        }         
    }, 
    defaults_playlist: { 
         
        scaling: 'fit',
        autoPlay: true, 
        autoBuffering: true, 
        baseUrl: 'http://www.wrcc.org/multimedia/video/', 
     
        // functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        }         
    },
    defaults_videoIndex: { 
         
        scaling: 'scale',
        autoPlay: true, 
        autoBuffering: true, 
        baseUrl: 'http://www.wrcc.org/multimedia/video/', 
     
        // functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        },
       	onStart: function(clip) {
			var currentIndex = $f("player_videoIndex").getClip().index; 
		    var embed5 = $f("player_videoIndex").embed( { 
    			width: 438, 
			    height: 246
			})
		    .getEmbedCode(false, currentIndex);
			document.getElementById("textarea5").innerHTML = embed5; 
		}
    },
     
    // my skins 
    skins: {         
        wrcc:  {
              backgroundColor: '#000000',
              progressColor: '#015B7A',
              sliderColor: '#000000',
              durationColor: '#ffffff',
              backgroundGradient: 'none',
              bufferGradient: 'none',
              progressGradient: 'medium',
              buttonColor: '#5F747C',
              timeColor: '#01DAFF',
              borderRadius: '0',
              buttonOverColor: '#728B94',
              bufferColor: '#6c9cbc',
              sliderGradient: 'none',
              opacity:1.0,
              time: true
        },
         wrcc_wide:  {
              backgroundColor: '#000000',
              progressColor: '#015B7A',
              sliderColor: '#000000',
              durationColor: '#ffffff',
              backgroundGradient: 'none',
              bufferGradient: 'none',
              progressGradient: 'medium',
              buttonColor: '#5F747C',
              timeColor: '#01DAFF',
              borderRadius: '0',
              buttonOverColor: '#728B94',
              bufferColor: '#6c9cbc',
              sliderGradient: 'none',
              opacity:1.0,
              time: true
         },        
         wrcc_animate:  {
              backgroundColor: '#000000',
              progressColor: '#015B7A',
              sliderColor: '#000000',
              durationColor: '#ffffff',
              backgroundGradient: 'none',
              bufferGradient: 'none',
              progressGradient: 'medium',
              buttonColor: '#5F747C',
              timeColor: '#01DAFF',
              borderRadius: '0',
              buttonOverColor: '#728B94',
              bufferColor: '#6c9cbc',
              sliderGradient: 'none',
              opacity:1.0,
              time: true
         },         
         wrcc_scroll:  {
			  all: false,
              time: true,
			  fontColor: '#ffffff',
			  timeFontColor: '#333333',
			  autoHide: 'always',
			  play:true,
			  volume:true,
			  mute:true,
			  time:true,
			  stop:false,
			  playlist:false,
			  fullscreen:true,
			  scrubber: true,
			  backgroundGradient: 'none',
			  backgroundColor: 'transparent'
         },        
         wrcc_playlist:  {
			  playlist: true,
			  all: false,
              time: true,
			  fontColor: '#ffffff',
			  timeFontColor: '#333333',
			  autoHide: 'always',
			  play:true,
			  volume:true,
			  mute:true,
			  time:true,
			  stop:false,
			  playlist:true,
			  fullscreen:true,
			  scrubber: true,
			  backgroundGradient: 'none',
			  backgroundColor: 'transparent'
         },        
         wrcc_videoIndex:  {
			  playlist: true,
			  all: false,
              time: true,
			  fontColor: '#ffffff',
			  timeFontColor: '#333333',
			  autoHide: 'always',
			  play:true,
			  volume:true,
			  mute:true,
			  time:true,
			  stop:false,
			  playlist:true,
			  fullscreen:true,
			  scrubber: true,
			  backgroundGradient: 'none',
			  backgroundColor: 'transparent'
         },        
         wrcc_transparentIndex:  {
         	  bottom:0		
         },
         wrcc_transparent:  {
         	  height:375,
         	  bottom:0		
         },
         wrcc_transparent_43:  {
         	  height:500,
         	  bottom:0		
         },
         wrcc_miniPlaylist:  {
         	  width:524,
         	  height:393,
         	  bottom:0		
         },
         wrcc_miniPlaylist_169:  {
         	  width:667,
         	  height:375,
         	  bottom:0		
         }         
         
        // setup additional skins here ...         

    } 
     
}

