flash listeners
flash listeners
Out of context: Reply #1
- Started
- Last post
- 5 Responses
- normal0
That's exactly what you'd want to do. Something like this:
var stageListener = new Object();
stageListener.onResize = function () {
if (movieholder._height >= yourmovies._height) {
noScroll();
}
else {
scrollerFunction();
}
};
Stage.addListener(stageListener...