Ajax Layer JavaScript DHTML

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


DynAPI Examples - HTML HyperLink


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


fs = new FlashSound();
fs.setSWF("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,'lime');
hl = new HTMLHyperLink(null,'Click Here',null,'HTML Hyper Link Demo');
hl.sndOnMouseover = '/click@start';
hl.sndOnClick = '/check@start';
hl.startFlash()
hl.addEventListener({
  onclick:function(e){
    var o=e.getSource();
    o.setURL('dynapi.sf.net'); // jump to url;
    status = 'Visit DynAPI\'s website at http://'+o.getURL();
    // o.allowEvent(); // By default HyperLink events are canceled (return false)
  }
});
tp.addChild(hl,'fld');
dynapi.document.addChild(tp);






           
       
dynapi.zip( 791 k)