<div>Hola nico, te paso un ejemplo que puede que te sirva:<br></div><div>  </div><div>------------------------------NCL----------------------------------------------</div><div><br>  &lt;media id=&quot;appLua&quot; src=&quot;main.lua&quot; descriptor=&quot;descApplication&quot;&gt;<br>
      &lt;property name=&quot;tamVideo&quot;/&gt;<br>  &lt;/media&gt;<br>  <br>  &lt;media id=&quot;video&quot; src=&quot;video.mp4&quot; descriptor=&quot;descVideo&quot;&gt;<br>     &lt;property name=&quot;bounds&quot; /&gt;<br>
   &lt;/media&gt;<br> <br><br>  &lt;link xconnector=&quot;onEndAttributionSet&quot;&gt;<br>     &lt;bind role=&quot;onEndAttribution&quot; component=&quot;application&quot; interface=&quot;tamVideo&quot; /&gt;<br>     &lt;bind role=&quot;getValue&quot; component=&quot;application&quot; interface=&quot;tamVideo&quot;/&gt;<br>
     &lt;bind role=&quot;set&quot; component=&quot;video&quot;  interface=&quot;bounds&quot;&gt;<br>         &lt;bindParam name=&quot;var&quot; value=&quot;$getValue&quot;/&gt;<br>     &lt;/bind&gt;<br>   <br>   &lt;/link&gt;</div>
<div><br></div><div>--------------------------------LUA (main.lua)---------------------------</div><div><br></div><div>event.post(&#39;out&#39;,{class = &quot;ncl&quot;, type = &quot;attribution&quot;, name =&quot;tamVideo&quot;, action=&quot;start&quot;, value=&quot;40%,40%,40%,40%&quot;})</div>
<div>event.post(&#39;out&#39;,{class = &quot;ncl&quot;, type = &quot;attribution&quot;, name =&quot;tamVideo&quot;, action=&quot;stop&quot;, value=&quot;40%,40%,40%,40%&quot;})</div><div><br></div><div><br></div><div>Explicación rápida:</div>
<div>Desde Lua se envia un evento a un property del mismo media Lua. Esta modificación es notada por el causalConnector asociado a ese property. Luego se toman los valores modificados y se los asigna a otra property, en este caso a la property bounds del media que contiene un video.</div>
<div><br></div><div><br></div><div><br></div><div class="gmail_quote">El 16 de abril de 2012 16:30, Nicolas Ignacio Roldan <span dir="ltr">&lt;<a href="mailto:niko_cbes@hotmail.com">niko_cbes@hotmail.com</a>&gt;</span> escribió:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


<div><div dir="ltr">
<br>Buenas otra vez gente de <b>Ginga</b>!<br>Busque, probe y fracase con todo lo que tenia que ver redimensionar un video desde LUA.<br>Yo lo hacia desde el codigo NCL y eso anda de maravilla.<br><br>Pero quiero hacerlo desde Lua, y ahi no encuentro como hacerlo. <img style="border-style:none;vertical-align:text-bottom" title="Confundido" alt="Confundido" height="19" width="19"><br>
<br>Probe con:<font color="#FF0000"><br><font color="#000000"><b>event.post</b>(&#39;out&#39;,{class = &quot;ncl&quot;, type = &quot;attribution&quot;, </font><font color="#000000"><b>name </b></font><font color="#000000">= &quot;</font></font><font color="#00B0F0"><b><font>bounds</font></b></font><font color="#000000">&quot;, action=&quot;start&quot;, <b><font>value</font></b>=&quot;<font color="#00B0F0">50%,0%,50%,80%</font>&quot;})</font><br>
... suponiendo que me iban a permitir  modificar las propiedades de el media de video como lo hacia con NCL; pero no funciono.<br><br><br>Antes lo manejaba asi y esto  funciona correctamente:<br><br>--------------------------------------- NCL --------------------------------------------------------------------------------------------<br>
&lt;head&gt;<br>        &lt;regionBase&gt;<br>                      &lt;region id=&quot;rgVideoPrincipal&quot; width=&quot;100%&quot; height=&quot;100%&quot; zIndex=&quot;0&quot;/&gt;<br>        &lt;/regionBase&gt;<br>        &lt;descriptorBase&gt;<br>
                    &lt;descriptor id=&quot;descVideoPrincipal&quot; region=&quot;rgVideoPrincipal&quot;/&gt;<br>        &lt;/descriptorBase&gt;<br>        &lt;connectorBase&gt;<br>                   &lt;causalConnector id=&quot;<b><font color="#00B050">onkeySelection</font></b>&quot;&gt;<br>
                    &lt;connectorParam name=&quot;oValor&quot;/&gt;<br>                    &lt;connectorParam name=&quot;oSetTecla&quot;/&gt;<br>                    &lt;simpleCondition role=&quot;onSelection&quot; key=&quot;$oSetTecla&quot;/&gt;<br>
                    &lt;simpleAction role=&quot;set&quot; value=&quot;$oValor&quot;/&gt;<br>                &lt;/causalConnector&gt;<br>        &lt;/connectorBase&gt;      <br>&lt;/head&gt;<br>&lt;body&gt; <br>          &lt;port id=&quot;pVideo&quot; component=&quot;vdoVideoPrincipal&quot;/&gt; <br>
          &lt;media id=&quot;<b>vdoVideoPrincipal</b>&quot; src=&quot;video.mp4&quot; descriptor=&quot;descVideoPrincipal&quot;&gt;<br>                &lt;property name=&quot;<b><font color="#00B0F0">bounds</font></b>&quot;/&gt;<br>
           &lt;/media&gt;<br><br><font color="#FF0000">--si presiono el boton INFO que se redimensione el video </font><br>    &lt;link xconnector=&quot;<b><font color="#00B050">onkeySelection</font></b>&quot;&gt; -- []<br>
            &lt;bind role=&quot;onSelection&quot; component=&quot;imgBotonInfo&quot;&gt;<br>                &lt;bindParam name=&quot;oSetTecla&quot; value=&quot;INFO&quot;/&gt;<br>            &lt;/bind&gt;<br>            &lt;bind role=&quot;set&quot; component=&quot;vdoVideoPrincipal&quot; <b>interface</b>=&quot;<b><font color="#00B0F0">bounds</font></b>&quot;&gt;<br>
                &lt;bindParam name=&quot;oValor&quot; <b>value</b>=&quot;<font color="#00B0F0">50%,0%,50%,80%</font>&quot;/&gt;<br>            &lt;/bind&gt;&gt;<br>     &lt;/link&gt;<br>&lt;/body&gt; <br><br>----------------------------------------------------------------------------------------------------------------------------------------<br>
<br><br>... pero ahora en vez de utilizar el   &lt;causalConnector id=&quot;<b><font color="#00B050">onkeySelection</font></b>&quot;&gt; quiero utilizar codigo Lua para hacer acciones mas o menos parecidas; por ejemplo que se redimensione cuando presiono ROJO; AZUL; AMARILLO, etc... de acuerdo a la tecla que se presione tener un tamaño diferente del video.  <br>
<br>Encontre que dice que no se puede hacer desde Lua:<br><font color="#FF0000"><a href="http://groups.google.com/group/devdtv/browse_thread/thread/d10957999834a5e7" target="_blank">http://groups.google.com/group/devdtv/browse_thread/thread/d10957999834a5e7</a></font><br>
<br>¿es asi? ¿Alguien probo? ¿existe alguna solución a esto de redimensionar video desde Lua?<br>Desde ya muchas gracias como siempre a todos!<br>saludos<br><font style="font-size:12pt" size="3"><b>nico</b></font><br><br>
                                               </div></div>
<br>__________________________________________Lista de correo <a href="mailto:Ginga-argentina@lists.ourproject.org">Ginga-argentina@lists.ourproject.org</a><br>
cambiar suscripción: <a href="https://lists.ourproject.org/cgi-bin/mailman/listinfo/ginga-argentina" target="_blank">https://lists.ourproject.org/cgi-bin/mailman/listinfo/ginga-argentina</a><br>
Sitio web: <a href="http://comunidad.ginga.org.ar" target="_blank">http://comunidad.ginga.org.ar</a><br>
Wiki: <a href="http://wiki.ginga.org.ar" target="_blank">http://wiki.ginga.org.ar</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Saludos leo<br><br>