;

PDA

Click to See Complete Forum and Search --> : scrollpane question


Jrexi
10-14-2004, 02:24 PM
How do you disable spanning in a scrollpane. For example, I have an image that loads in a scrollpane and I don't want the user to be able to select it and drag it around. I also dont want the cursor to change when they mouse over it, I don't want it selectable at all.

Thanks in advance.

Jrexi

w.brants
10-14-2004, 02:54 PM
If your scrollpane is named scrollpane1, add the following line of actionscript code to the frame where you put it.
scrollpane1.allowDragging = false

Jrexi
10-14-2004, 04:37 PM
Originally posted by w.brants
If your scrollpane is named scrollpane1, add the following line of actionscript code to the frame where you put it.
scrollpane1.allowDragging = false

Thanks W!