[OT] EL Javascripy V.II

Ahora ya en audio, a ver si alguien se anima y saca un
vídeo xD
http://www.youtube.com/watch?v=_OI-rjMH5yk

Saludos desde Colombia
http://es.youtube.com/watch?v=Wfmtq_AAWKM&feature=user
http://es.youtube.com/user/GoogleMexico
ATT
Daniel Fernando Luna Sánchez
Anuack Technology de Colombia
PBX (+57)(+7) 6378053 -
Ola: 300-3990816
Comcel: 311-2263309
Movistar: 315-6833493
Bucaramanga. Santander. Colombia
Servicio al Cliente de 8:00 AM a 8:00 PM (GMT -05:00)
Registro de Dominios
Hosting (Hospedaje Web) Compartido O Dedicado
Administradores de Contenidos Web
Aplicaciones Web
Diseño Web - Multimedia
Equipos de cómputo
NO SPAM. NOTIFICACIÓN LEGAL Y CONFIDENCIAL
"Anuack Luna" <[email protected]> escribió en
el mensaje
news:gbf7m2$o8v$[email protected]..
> El video dice mas que mil palabras.
>
>
http://mail.google.com/mvideo
>
>
http://www.youtube.com/watch?v=VfDW7qAdFGk
>
> Saludos desde Colombia
>
> --
>
>
>
> ATT
>
> Daniel Fernando Luna Sánchez
> Anuack Technology de Colombia
> PBX (+57)(+7) 6378053 -
> Ola: 300-3990816
> Comcel: 311-2263309
> Movistar: 315-6833493
> Bucaramanga. Santander. Colombia
> Servicio al Cliente de 8:00 AM a 8:00 PM (GMT -05:00)
> Registro de Dominios
> Hosting (Hospedaje Web) Compartido O Dedicado
> Administradores de Contenidos Web
> Aplicaciones Web
> Diseño Web - Multimedia
> Equipos de cómputo
>
> NO SPAM. NOTIFICACIÓN LEGAL Y CONFIDENCIAL
>
>

Similar Messages

  • [Fricky]El Javascripy

    Xavier Carné & Alex García a Eurovisión YA
    ¡¡¡Teclea, teclea!!!
    El javascripy mola mogollón,
    funciona en explorer y también en firefox.
    Ponle javascripy a esa paginita,
    que el javascripy la deja muy bonita.
    Abre ventanas,
    muestra mensajes,
    valida formularios,
    mi amol ya tu sabes!
    Programan los seniors,
    Programan los juniors,
    Programa mi jefe con acentos en el function!
    Y el javascripy se programa asi:
    1-El tag <script>
    2-el function vars
    3-el alert-confirm
    4-el return trú
    Programa el javascripy,
    Programa el javascripy,
    programan los heavys también los frikis
    Programan en la offis, programan en la uni,
    Programan los fruittis y también los lunnis.
    Programa Maradona esnifando una raya,
    y Juan Carlos le dice: ¿Porque no usas ajax?
    En el formulario de un triste portal,
    pusieron javascripy y ya pudo validar
    ¡¡¡Validar!! ¡¡Validar, validarr,
    validarrr!!!
    Y el javascripy se programa asi:
    1-El tag <script>
    2-el function vars
    3-el alert-confirm
    4-el return trú
    Fuente: h**p://francesc.caliu.cat/2008/03/13/el-javascripy/

    Muy friky, frikísimo, ja, ja, ja.
    Slu2
    `8¬]
    Juan Muro
    "Lucas Sevilla" <[email protected]> escribió en
    el mensaje
    news:fsa85r$lkr$[email protected]..
    > Muy bueno si señor jajajaaj
    >
    >
    > "CMacias" <[email protected]> escribió en el
    mensaje
    > news:fs8slf$8aq$[email protected]..
    >> Xavier Carné & Alex García a
    Eurovisión YA !!
    >>
    >> ¡¡¡Teclea, teclea!!!
    >>
    >> El javascripy mola mogollón,
    >> funciona en explorer y también en firefox.
    >>
    >> Ponle javascripy a esa paginita,
    >> que el javascripy la deja muy bonita.
    >>
    >> Abre ventanas,
    >> muestra mensajes,
    >> valida formularios,
    >> mi amol ya tu sabes!
    >>
    >> Programan los seniors,
    >> Programan los juniors,
    >> Programa mi jefe con acentos en el function!
    >>
    >> Y el javascripy se programa asi:
    >> 1-El tag <script>
    >> 2-el function vars
    >> 3-el alert-confirm
    >> 4-el return trú
    >>
    >> Programa el javascripy,
    >> Programa el javascripy,
    >> programan los heavys también los frikis
    >>
    >> Programan en la offis, programan en la uni,
    >> Programan los fruittis y también los lunnis.
    >>
    >> Programa Maradona esnifando una raya,
    >> y Juan Carlos le dice: ¿Porque no usas ajax?
    >>
    >> En el formulario de un triste portal,
    >> pusieron javascripy y ya pudo validar
    >>
    >> ¡¡¡Validar!! ¡¡Validar,
    validarr, validarrr!!!
    >>
    >> Y el javascripy se programa asi:
    >> 1-El tag <script>
    >> 2-el function vars
    >> 3-el alert-confirm
    >> 4-el return trú
    >>
    >> Fuente:
    h**p://francesc.caliu.cat/2008/03/13/el-javascripy/
    >
    >

  • Camera Rotation Problem

    Hello
    I have a problem with my camera rotation. I would like to have a button which allows me to rotate a camera in my scene using only x and y axe and with z axe blocked. My javascript is :
    var c = getAnnots3D(0)[0].context3D;
    var camera = c.scene.cameras.getByIndex(0);
    var camdir = camera.position.subtract(camera.targetPosition);
    camera.position.set(-Math.sin(3.14/6)*camdir.y+Math.cos(3.14/6)*camdir.x,Math.cos(3.14/6) *camdir.y+Math.sin(3.14/6)*camdir.x,camdir.z);
    Script works good for x and y axe , but unfortunatelly z axe moves too(kind of a wave, starts low goes up and ends down after Pi/2) . Even if I block it using a constant instead of camdir.z, it moves but javascripy debugger shows z value blocked.
    Any idea what I'm doing wrong ?
    Help appreciated
    Bartek

    Your math really doesn't make any sense to me.
    All those math.cos(..) calls are constant because you are only passing constants. i.e. Math.cos(3.14/6) will always be 0.866158094. So you are doing this:
    position.set(-.9y + .5x, .9x + .5y, z);
    I'm not really sure what this "button" is supposed to do. if you want it to prevent the camera from tilting up and down, you have to repeatedly prevent the camera from tilting using a TimerEventHandler.
    Also, you are taking the camera direction and using it to set it's position, this will keep moving the camera near the origin and will probably be unpredictable.
    So really, I'm not sure what you are trying to do. Let the camera rotate freely in only 2 of it's own axis? only 2 of the world axis? or orbit an object only on 2 axis? only let it move left and right, but prevent it from tilting up or down? ...
    I can help, but you need to be more specific.

Maybe you are looking for