[Proto-Scripty] Infinite references

2010-12-09 Thread Bart
Hi, I'm creating a visual tree structure in which every item can have multiple childs. In the following code the parent item adds one child to itself. But for some reason the child adds itself as a child of its own in an infinite loop: - CODE -- var Item = Class.create({ colu

[Proto-Scripty] SlideDown starting fron the bottom

2008-10-14 Thread Bart
Hi I want to use the SlideDown effect, but it has to start from the bottom. So the contents from the div must be reveiled from bottom to top. Is this possible with scriptaculous? Thanks a lot. Bart --~--~-~--~~~---~--~~ You received this message because you

[Proto-Scripty] Re: SlideDown starting fron the bottom

2008-10-14 Thread Bart
m. > > On 14 Oct 2008, at 10:31, T.J. Crowder wrote: > > > > > Isn't that a SlideUp? > >http://github.com/madrobby/scriptaculous/wikis/effect-slideup > > > I think I'm missing the point, though. > > -- > > T.J. Crowder > > tj / cro

[Proto-Scripty] Re: SlideDown starting fron the bottom

2008-10-15 Thread Bart
Anyone? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to prototype-scriptaculous@googlegroups.com To unsubscribe from this group, send email to

[Proto-Scripty] pauzing event untill effect completion

2009-05-04 Thread bart issimo
HI all, I've got a little problem with an application I'm building. I want to let images scroll down behind a frame with a transparent center. For this I've built a div, in which I load the images dynamicly, using php and mysql. With each click on the arrows 'up', or 'down' I let the div move up

[Proto-Scripty] Re: pauzing event untill effect completion

2009-05-04 Thread bart issimo
That did the trick indeed :-), it was very simple actually : new Effect.MoveBy('moveboxpurple', 100, 0, { queue: 'end' }). That lets the next event start when the first one has finished. Thank you very much. Greets, Bart On 4 mei, 13:40, "T.J. Crowder" wrote: