this code seems to be 1.11 I made some changes to make it 1.2 compatible. http://mooshell.net/sB7vD/
Changes: 1. used Implements : [Options] instead of the recreating the 'setOptions' method. this removed the object.Extend reference 2. There was some weird stuff with element dimensions el.getSize().size.x ??? should be el.getSize().x 3. Change Fx.Styles -> Fx.Morph 4. where this.el get set I added 'mouseover' and 'mouseout' events this allows for pausing. 5. in the 'next' method I capture the timeoutId from 'delay' 6. added 'over' and 'out' method to handle pausing and resuming. The Fx transition has an oncomplete that adds elements in to give the perception of an endless scroll. Problem is this is independent of the 'next' delay loop. So when you rollover and then back out there is a jumping going on right now. This can be corrected with a little better engineering on how the periodical works in conjunction with the Fx transition. I'm too tired to dive into that at the moment. This should give you a bit of direction in the meantime. On Mon, Aug 31, 2009 at 1:56 AM, Deepali <deeps...@gmail.com> wrote: > > Hello, > > Using following effect, i am able to get the perfect effect to show my > recent feeds on my site. > > http://woork.blogspot.com/2008/07/fantastic-news-ticker-newsvine-like.html > > but now i want on mouse hover the scrolling should stop moving. > because sometimes its to fast so somtimes one can not read the > content. > > here is the demo for it. > > http://woorktuts.110mb.com/newsticker/index.html > > Can anyone tell me how can i stop scrolling on mouse hover? > > Thanks in advance