search for: somelisten

Displaying 2 results from an estimated 2 matches for "somelisten".

Did you mean: somelist
2007 Jun 10
1
variable scope
...switch (random(3)) { case 0: klik.start(0, 1); break; case 1: klik1.start(0, 1); break; case 2: klik2.start(0, 1); break; default: klik.start(0, 1); } someListener = new Object(); someListener.onMouseMove = function () { _root.createEmptyMovieClip('rectangle', 10000); borderXcurrent = Math.floor((_xmouse - 13) / CellSize + (_xmouse > borderXstart)) * CellSize + 13; borderYcurrent = Math.floor((_ymouse - 13) /...
2006 May 21
3
Catching events outside document (on window chrome)
Hello, How can I catch the onmouseup event outside the ducument - means when the pointer is above window chrome (e.g. toolbar)? Event.observe(document, ''mouseup'', someListener) works only inside the document for me. Thanks in advance for your help! Thomas -- Posted with http://DevLists.com. Sign up and save your mailbox.