-
scrollpane question
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
-
If your scrollpane is named scrollpane1, add the following line of actionscript code to the frame where you put it.
Code:
scrollpane1.allowDragging = false
-
Quote:
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.
Code:
scrollpane1.allowDragging = false
Thanks W!