Ajax Layer JavaScript DHTML

http://dynapi.sourceforge.net/
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999


DynAPI Examples - HTML Button


dynapi.library.setPath('./dynapisrc/');
dynapi.library.include('dynapi.api');
dynapi.library.include('TemplateManager');
dynapi.library.include('HTMLButton');
dynapi.library.include('FlashSound');


fs = new FlashSound();
fs.setSWF("./dynapiexamples/images/sndfx.swf");
HTMLComponent.setFlashSound(fs); // Set FlashSound object for all HCs
var tp = new Template('This is the Template:
{@fld}
',100,100,250,200,'#EEEEEE');
hb = new HTMLButton(null,'Click Here');
hb.sndOnClick = '/click@start';
hb.addEventListener({
  onclick:function(e){
    var o=e.getSource();
    alert('This is a Button');
  }
});
tp.addChild(hb,'fld');
dynapi.document.addChild(tp);






           
       
dynapi.zip( 791 k)