Aller au contenu

Pattenrond

INpactien
  • Compteur de contenus

    6
  • Inscription

  • Dernière visite

Messages posté(e)s par Pattenrond

  1. Chalut

    en javascript + HTML

    <html>
    <body>
    <script language="javascript">
    document.write("Hello World");
    </script>
    </body>
    </html>

    on peut aussi faire comme ça

    <html>
    <head>
    <script language="javascript">
    function bijour(){
    document.write("Hello World");}
    </script>
    </head>
    <body onLoad="bijour()">
    </body>
    </html>

    Avec Nsis (Installateur de Winamp)

    Name "Bonjour"
    OutFile "bonjour.exe"
    AutoCloseWindow true
    
    Section ""
    MessageBox MB_OK "Hello World"
    SectionEnd

    Petite variation

    Name "Bonjour"
    OutFile "bonjour2.exe"
    AutoCloseWindow true
    
    Section ""
    MessageBox MB_OK "Salut PcInpact et vive les poussins !!"
    SectionEnd
    
    Function .onInit
    MessageBox MB_OK "Hello World"
    FunctionEnd

    @pluche

×
×
  • Créer...