long enough.
Travis Garris, Ciber
Durham, NC
-Original Message-
From: Digital Strider
To: [EMAIL PROTECTED]
Sent: 05/31/2001 6:17 PM
Subject: RE: [Dynapi-Help] An Array of DynLayers
It seems to me this whole adventure is based on your desire to know
"where"
the DynAPI placed yo
001 2:05 PM
To: [EMAIL PROTECTED]
Subject: Re: [Dynapi-Help] An Array of DynLayers
That's a very educative event example, I must say.
You are creating a 'i' variable and using it in a loop. Each layer is given
a
mouseup listener that goes
alert("I am "+i)
but when is this ex
Dynayer.
Do you (or someone else) have any idea why this happens?
Richard.
- Original Message -
From: "Jordi Ministral" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: 31 May, 2001 23:04
Subject: Re: [Dynapi-Help] An Array of DynLayers
> That's a very educa
That's a very educative event example, I must say.
You are creating a 'i' variable and using it in a loop. Each layer is given a
mouseup listener that goes
alert("I am "+i)
but when is this executing ? Not now. The method you are setting is one that
will execute onmouse up, and then 'i' will be
Because of this line:
Events[i].onmouseup = function() {
myText.setHTML("I am " + i);
};
This will set the HTML of myText to I am 1 or I am 0, depending on which you
clicked on.. Hope this helps.
--
Vincent Calendo
<< I hope I'm not flooding the list on my fi
I hope I'm not flooding the list on my first day, but I gots to axe
questions.
Why do I get the result "I am 2" when I click on of the buttons in the
example below?
I created myText to see if I could affect objects via the array. I can.
I created Button0 and Button1 to put into an array, and t