<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- Generated by NCL Eclipse -->
<ncl id="Redimencionamiento" xmlns="http://www.ncl.org.br/NCL3.0/EDTVProfile">
	<head>
		<!--REGIONES-->
		<regionBase>
			<region id="rgvideo" height="100%" width="100%" zIndex="2"/>
			<region id="rgboton" left="88%"   top="82%" height="14%" width="9%" zIndex="2"/>" />
		</regionBase>
		<!--DESCRIPTOR-->
		<descriptorBase>
			<descriptor id="dvideo" region="rgvideo"/>
			<descriptor id="dboton" region="rgboton"/>
		</descriptorBase>
		<!--IMPORTAR CONECTORES-->
		<connectorBase>
		<importBase documentURI="../ConnectorBase.ncl" alias="conector"/>
		</connectorBase>
	</head>

	<body>
		<media id="video" src="../media/video1.mp4" descriptor="dvideo">
			<property name="bounds"/>
		</media>
		<media id="bgreen" src="../media/green.jpg" descriptor="dboton"/>
		<media id="byellow" src="../media/yellow.jpg" descriptor="dboton"/>
		
		<!--PUERTAS-->
		<port id="pinicio" component="video"/>
		<port id="pboton" component="bgreen"/>
	   
	   <!--ENLACES-->
	    <link xconnector="conector#onKeySelectionSetNStopN">
	    <linkParam name="keyCode" value="GREEN"/>
	    <bind role="stop" component="bgreen"/>
	    <bind role="onSelection" component="bgreen"/>
	    <bind role="set" component="video" interface="bounds">
	    <!--REDIMENSIONAR PANTALLA-->
	    <bindParam name="var" value="25%,25%,50%,50%"/> <!--left,top,width,height-->
		</bind>	
		</link>
		
		<link xconnector="conector#onEndStart">
	    <bind role="onEnd" component="bgreen"/>
		<bind role="start" component="byellow">
		</bind>
		</link>	
		
		<link xconnector="conector#onKeySelectionSetNStopN">
	    <linkParam name="keyCode" value="YELLOW"/>
	    <bind role="onSelection" component="byellow"/>
	    <bind role="stop" component="byellow"/>
	    <bind role="set" component="video" interface="bounds">
	    <!--REDIMENSIONAR PANTALLA-->		
	    <bindParam name="var" value="0%,0%,200%,200%"/> <!--left,top,width,height-->
		</bind>	
		</link>
		
		<link xconnector="conector#onEndStart">
	    <bind role="onEnd" component="byellow"/>
		<bind role="start" component="bgreen">
		</bind>
		</link>
	</body>
</ncl>