- 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
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
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)}
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
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
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
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
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:
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
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
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
: 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
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
: 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
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');
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
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
; 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]>
>
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.
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
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
, 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
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
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
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
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
26 matches
Mail list logo