Ok, I downloaded a free ticker .fla at flash kit (since I don’t know anywhere near enough to write my own)
Anywho, I would like to change it a little so when the mouse is over the ticker, the scrolling stops, then, when you move the mouse off, it scrolls again. Can you help me out?
onClipEvent (enterFrame) {_root.run();}
onClipEvent (mouseDown) {
Mouse.hide();_root.mousess._alpha=100; startDrag("_root.mousess", true); _root.mousedown = true;
_root.dragging = true; _root.lasty = _root._ymouse;
}
onClipEvent (mouseUp) {
Mouse.show();_root.mousess._alpha=0;stopDrag(); _root.dragging = false; _root.lasty = -1;
}
also, how will I import this into my main page.
Do I just simply import the .swf into the .fla of my main page?