How to use JAVA to embed Music Notation in WEB pages (2)

Click here to view the HTML source of this page!

Applet and GUIDO source in HTML code

Go to overview (How to embed Music in WEB pages)

Introduction

Embedding Conventional Music Notation using GUIDO Music Notation and the NoteServerApplet in conjunction with the GUIDO NoteServer is easy. You can either place the GUIDO description directly inside the HTML-code (as is presented on here) or you can use a URL to a GUIDO description as is demonstrated on this page.

Using Applet with GUIDO URL

This applet uses a URL to the GUIDO data:

This code was used for the Notation-Display:

<applet 
  codebase="http://tempo.iti.informatik.tu-darmstadt.de/salieri/nview/java"
  code="NoteServerApplet" 
  width=585
  height=330>

  <PARAM NAME=server VALUE='tempo.iti.informatik.tu-darmstadt.de'>
  <PARAM NAME=serverVersion VALUE="">
  <PARAM NAME=zoomFactor VALUE='0.5'>
  <PARAM NAME=gmnurl 
  VALUE='http://tempo.iti.informatik.tu-darmstadt.de/salieri/nview/javascript/choral.gmn'>
</applet>

Go to overview (How to embed Music in WEB pages)