RE: [Dynapi-Dev] ScrollPane Question

2001-05-26 Thread A. Joannou
I beleive that the particular line accesses code in the viewport.js so have a look. Deli -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Robelix Sent: 25 May 2001 21:19 To: [EMAIL PROTECTED] Subject: [Dynapi-Dev] ScrollPane Question Hi! I need a

Re: [Dynapi-Dev] ScrollPane Question

2001-05-25 Thread Jordi Ministral
direction is a string. if it contains "up", you will execute scrool.scrollup(), id "down" you will execute scrol.scrolldown(). Objects can be accessed in an array manner instead of the traditional . way, so you can select the property with string manipulation. You could have done eval("scroll.sc

[Dynapi-Dev] ScrollPane Question

2001-05-25 Thread Robelix
Hi! I need a scrollbar with buttons. So I tried to extract it from the ScrollPane, but I don't understand one line in the buttonListener: var buttonListener = new EventListener(this); buttonListener.onmousedown = function(e) { var scroll = e.getTarget(); *