Re: [Dynapi-Help] Events, is it possible to keep triggering events while mousebutton is held down?

2004-10-12 Thread Leif W
- Original Message - From: "Joop Quadackers" <[EMAIL PROTECTED]> To: "dynapi-help" <[EMAIL PROTECTED]> Sent: Tuesday, October 12, 2004 11:44 Subject: [Dynapi-Help] Events, is it possible to keep triggering events while mousebutton is held down? > He

[Dynapi-Help] Events, is it possible to keep triggering events while mousebutton is held down?

2004-10-12 Thread Joop Quadackers
Hello, last weekend I tried to do some animation with the Dynapi3. I have an animated character on the screen which can be controlled with the arrow-keys on the keyboard. That works perfectly. But when I want to control the character by clicking on (and holding down) North, East, South and West

Re: [Dynapi-Help] events + array problem

2001-10-07 Thread Michael Pemberton
I continuing on from Richard, if N is the value of the highest layer, then i= Hi all, how can I do it ? > > working example: > > Layer[i] - define as dynlayer's Array > XLayer[i] - other Array > > listner = new EventListener(Layer[0]); > listner.onmouseover=function(e) {XLayer[0].setVisible(true)}

Re: [Dynapi-Help] events + array problem

2001-10-06 Thread Richard Bennett
I think the problem is in this part: i<=n if n==10 that would create a listener for 11 layers, as you start counting from 0. I think i To: <[EMAIL PROTECTED]> Sent: Saturday, October 06, 2001 11:57 PM Subject: [Dynapi-Help] events + array problem > > Hi all, how can I do i

[Dynapi-Help] events + array problem

2001-10-06 Thread denmaco
Hi all, how can I do it ? working example: Layer[i] - define as dynlayer's Array XLayer[i] - other Array listner = new EventListener(Layer[0]); listner.onmouseover=function(e) {XLayer[0].setVisible(true)}; Layer[0].addEventListener(listner); ... ... ... ... ... listner = new EventListener(Laye

[Dynapi-Help] events and retrieving the id of the current parentLayer

2001-07-16 Thread Kasper Schnell
Hello everybody. I hope one of you can help me. My problem is as follows: I have a program that, when working properly, is supposed to create a draggable layer with a bgImage when clicking on another layer. Inside the draggable layer is two small childLayers. When clicking on them the parent

[Dynapi-Help] Events not processing if previous event not finished

2001-05-11 Thread Ben Empson
OK, here's another one. I've noticed this several times while programming DynAPI stuff - say you code an event for onmouseover, and an event for onmouseout. If mouseout occurs before the onmouseover event has finished executing, the mouseout event gets ignored, or at least the code does not get e

RE: [Dynapi-Help] Events on Html elements in NS...

2001-03-06 Thread GORTSILAS ANDREAS
ubject: RE: [Dynapi-Help] Events on Html elements in NS... Andreas, I reported this as a bug, see the bug report here: http://sourceforge.net/tracker/?func=detail&atid=105757&aid=405056&group_id= 5757 I also posted an example of this happening, see it here under ns4.76 : http:

RE: [Dynapi-Help] Events on Html elements in NS...

2001-03-06 Thread GORTSILAS ANDREAS
I beleive that you did not catch the problem here... Never mind ... I fix it, see the "dev" list... Thanks anyway... Andreas -Original Message- From: Doug Melvin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 06, 2001 11:47 PM To: [EMAIL PROTECTED] Subject: Re: [Dynapi-He

Re: [Dynapi-Help] Events on Html elements in NS...

2001-03-06 Thread Doug Melvin
try onmouseup, or onmousedown.. - Original Message - From: "GORTSILAS ANDREAS" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 06, 2001 12:25 AM Subject: RE: [Dynapi-Help] Events on Html elements in NS... > Yes,... > > but what about the

RE: [Dynapi-Help] Events on Html elements in NS...

2001-03-06 Thread David Cushman
Andreas, I reported this as a bug, see the bug report here: http://sourceforge.net/tracker/?func=detail&atid=105757&aid=405056&group_id=5757 I also posted an example of this happening, see it here under ns4.76 : http://www.merlinsworld.net/dynapi_ri_dcexamples/onclick01.shtml It happens on an

RE: [Dynapi-Help] Events on Html elements in NS...

2001-03-06 Thread GORTSILAS ANDREAS
: GORTSILAS ANDREAS [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 06, 2001 10:26 AM To: '[EMAIL PROTECTED]' Subject: RE: [Dynapi-Help] Events on Html elements in NS... Yes,... but what about the other events??? It must be a more generic solution to this! Andreas -Origin

RE: [Dynapi-Help] Events on Html elements in NS...

2001-03-06 Thread GORTSILAS ANDREAS
Yes,... but what about the other events??? It must be a more generic solution to this! Andreas -Original Message- From: slasherx2 [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 06, 2001 10:16 AM To: [EMAIL PROTECTED] Subject: RE: [Dynapi-Help] Events on Html elements in NS... I

RE: [Dynapi-Help] Events on Html elements in NS...

2001-03-06 Thread slasherx2
: Dynapi-Help Mailing List (E-mail) Subject: [Dynapi-Help] Events on Html elements in NS... In this code: . DynAPI.onLoad=function() { myLayer = new DynLayer() myLayer.setSize(100,100) myLayer.setBgColor('#c0c0c0') myLayer.moveTo(100,100) myList

[Dynapi-Help] Events on Html elements in NS...

2001-03-05 Thread GORTSILAS ANDREAS
In this code: . DynAPI.onLoad=function() { myLayer = new DynLayer() myLayer.setSize(100,100) myLayer.setBgColor('#c0c0c0') myLayer.moveTo(100,100) myListener = new EventListener(DynAPI.document) myListener.onclick=function(e) { alert('click');

Re: [Dynapi-Help] Events

2001-02-14 Thread Jordi - IlMaestro - Ministral
Any event in any DynLayer can have unlimited number of listeners. They are executed in the same order they were added. Canceling bubbling does NOT cause the other listeners for that event not to execute. Doug Melvin wrote: > Is it possible and 'safe' to add multiple events listeners for the > s

[Dynapi-Help] Events

2001-02-14 Thread Doug Melvin
Is it possible and 'safe' to add multiple events listeners for the same event to the same object?   Example:   I would like my Scroll widget to automatically add an .onmouseover listener to DynAPI.document to detect if the mouse has left the scroll, so that the scroll can be stopped.. (you k

Re: [Dynapi-Help] Events acting strange.

2001-02-08 Thread Joshua O'Connor-Rose
; Richard Bennett > > [EMAIL PROTECTED] > www.richardinfo.com > (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) > > - Original Message - > From: "Joshua O'Connor-Rose" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> >

Re: [Dynapi-Help] Events acting strange.

2001-02-07 Thread Richard Bennett
nfo.com (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2) - Original Message - From: "Joshua O'Connor-Rose" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 07, 2001 10:41 PM Subject: [Dynapi-Help] Events acting strange.

[Dynapi-Help] Events acting strange.

2001-02-07 Thread Joshua O'Connor-Rose
Sorry if this is an old topic but I couldn't find any information on this behavior. What would I be doing that would prevent certain events from working. Right Click - does not bring up the shortcut menu Resize - does not invoke a resize event. One user can't even scroll with the scrollbar. (T

Re: [Dynapi-Help] events..

2001-01-29 Thread Doug Melvin
THANKS! - Original Message - From: Richard Bennett To: [EMAIL PROTECTED] Sent: Monday, January 29, 2001 2:05 PM Subject: Re: [Dynapi-Help] events.. Hi, Without looking at the code you're talking about I think the easiest wou

Re: [Dynapi-Help] events..

2001-01-29 Thread Richard Bennett
, and ported to the 19/12/2000 snapshot of DynAPI2) - Original Message - From: Doug Melvin To: dynapi-help Sent: Monday, January 29, 2001 10:41 PM Subject: [Dynapi-Help] events.. I have a layer on my toolbar. I have an onclick handler assignewd to the layer.   Pr

Re: [Dynapi-Help] events..

2001-01-29 Thread Doug Melvin
and if so, how would I go about canceling the dragstart? I have a layer on my toolbar. I have an onclick handler assignewd to the layer.   Problem:   When I release the mouse button the Toolbar's drag event has been triggered..   I am setting setBubble(false) What more

[Dynapi-Help] events..

2001-01-29 Thread Doug Melvin
I have a layer on my toolbar. I have an onclick handler assignewd to the layer.   Problem:   When I release the mouse button the Toolbar's drag event has been triggered..   I am setting setBubble(false) What more do I need to do? Should I put code into the onmousedown of the layer to cancel t

RE: [Dynapi-Help] events

2001-01-24 Thread Pascal Bestebroer
amens Doug MelvinVerzonden: donderdag 25 januari 2001 0:17Aan: dynapi-helpOnderwerp: [Dynapi-Help] events I am getting the impression from the last few days that we can crete our own custom events.. Is this the case? Such as, say myWindow.onChange()? Doug Melvin

[Dynapi-Help] events

2001-01-24 Thread Doug Melvin
I am getting the impression from the last few days that we can crete our own custom events.. Is this the case? Such as, say myWindow.onChange()? Doug Melvin