[Dynapi-Help] evnt.setBubble is not a function.

2001-03-01 Thread Doug Melvin
now, why would the following code produce "evnt.setBubble is not a function"?     scrollKnob.knobDragListener=new EventListener(scrollKnob);  scrollKnob.knobDragListener.onresize = function(evnt) {   evnt.setBubble(false);    alert('resize');  };  scrollKnob.knobDragListener. {   evnt.setBub

[Dynapi-Help] evnt.setBubble is not a function.

2001-02-15 Thread Doug Melvin
can anyone tell me why, in some cases setBubble is legal, and in others it's not? Code: follows    var BackListener=new EventListener(this); BackListener.onprecreate=function(evnt) {  if (evnt.getSource()!=evnt.getTarget()) return;  var scroll=evnt.getTarget();  scroll.initObjects(); }; Bac