this is the script i hav used to link my file to an xml as you can see in this website http://www.huronconsultinggroup.com/
i used this script to scroll my text field.
onClipEvent (load) {
isOn = true;
this.setMask(_parent.mask_mc);
}
onClipEvent (enterFrame) {
if (isOn == true) {
_y = _y-0.700000;
}
// end if
if (_y<_height*-1+5) {
_y = 200;
}
// end if
}
now i want to stop this scrolling on rollover
xcully i converted my dynamic text into movie clip before giving it this script.
so please if anyone can help me to stop scrolling on rollover and then on roll out it starts playing again from the same position.