[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/
>
>

Similar Messages

  • [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
    >
    >

  • 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

  • Can I modify 'Load Files into Stack.jsx' for custom white balance?

    I've been wondering whether its possible to change Adobe's 'Load Layers in Stack' script so that it loads RAW files with the white balance adjustments I have made in Camera Raw ('ACR'). At present, the script loads the files as layers with the defaul

  • Error in AQ JMS code

    Hi All, I am trying to write a anonymous PLSQL block to read JMS data from the ORACLE AQ and getting a ClassCastException as mentioned below. Any help on this would be highly appreciated. Let me know in case any additional information is required. QU

  • Macbook not access work or home networks with wep key

    I have just purchased a Macbook. It is to be used for work and home purposes. The work network is a given, and can not be changed. It requires a wep key that is 26 charcters long. When I input this via the Network instructions on my Macbook, it is no

  • No extensions on leopard

    I can't get any extensions to install for either Flash CS3 or Dreamweaver CS3. Either double-clicking the extension or going through the install menu have the same result: a flashing progress bar and no installation. This is happening on OS X Leopard

  • Error message in my BB when i reboot

    Hai, i wanna asking question about my blackberry 8520 black, when i reboot my BB there is error message on the screen : Uncaught exception : indek 4 > = 4 sometimes the number 4 can change into 5 or others number 1.what that message mean ? 2. what th