[Proto-Scripty] Draggable failing after first drag in Firefox?

2009-11-16 Thread woolyg
Hi all, I'm using: Scriptaculous 1.8.2 Prototype 1.6.0.3 Firefox 3.0.15 I'm stumped with this one. Using the following code within the BODY element: div id=drag_demo_1 style=width:80px; height:80px; cursor:move; background:#7baaed; border:1px solid #333;/div script type=text/javascript new

[Proto-Scripty] Re: Draggable failing after first drag in Firefox?

2009-11-16 Thread david
Hi WoolyG, I'm sure that this code will work on FF 3.0.15. Do you have any error in firebug? You could try tpo dowload prototype 1.6.1 and scriptaculous 1.8.3 to test if it's work ? -- david On 16 nov, 10:22, woolyg woo...@gmail.com wrote: Hi all, I'm using: Scriptaculous 1.8.2

[Proto-Scripty] Re: instanting and reinstanting a function: Ajax.PeriodicalUpdater

2009-11-16 Thread david
Hi Bill, Isn't it just an Ajax.Request that you need, because the periodical executer is used 'generally' without the need of a user click. I mean, in your exemple, it's like you start at the begginning the periodical updater, and after it reload every time there is new message the target DIV.

[Proto-Scripty] Ajax.Updater: alter retrieved content

2009-11-16 Thread Lox
Hello, I use Ajax.Updater to update a div content. I need to add scriptvarname = content/script to every content retreived with Ajax.Updater. Is there a way to do it with Responders ? I tried: Ajax.Responders.register({ onSuccess: function(r) {

[Proto-Scripty] Re: instanting and reinstanting a function: Ajax.PeriodicalUpdater

2009-11-16 Thread Alex McAuley
Bill. You can assign the periodical to a variable and call stop on it if you wish .. EG. var myperiodical=new Ajax.Periodical.. myperiodical.stop(); // stops it ... All this is defined but IMO unclear in the documentation HTH Alex Mcauley http://www.thevacancymarket.com -

[Proto-Scripty] Re: Ajax.Updater: alter retrieved content

2009-11-16 Thread Alex McAuley
You would have to modify the source as it does not push the object into the onComplete callback... Alex Mcauley http://www.thevacancymarket.com - Original Message - From: Lox laurent.dincl...@gmail.com To: Prototype script.aculo.us prototype-scriptaculous@googlegroups.com Sent:

[Proto-Scripty] Help Prototype in a few minutes per day

2009-11-16 Thread T.J. Crowder
Hi all, As you know, the new API docs[1] are generated via PDoc[2][3] from the source code. Unfortunately, though, porting over the old docs[4] is a non-trivial process, just because of the volumes involved and because frankly the old docs were pretty out of date. (I cheerfully volunteered to do

[Proto-Scripty] Re: Draggable failing after first drag in Firefox?

2009-11-16 Thread woolyg
Hi David, I'll do that and report back. Thanks! On Nov 17, 1:13 am, david david.brill...@gmail.com wrote: Hi WoolyG, I'm sure that this code will work on FF 3.0.15. Do you have any error in firebug? You could try tpo dowload prototype 1.6.1 and scriptaculous 1.8.3 to test if it's work ?

[Proto-Scripty] Working Demo?

2009-11-16 Thread Thomas.Paine
Before investing time and energy into implementing your auto complete addon I would like to see a working demo of it. The links I have found to your demo (http://demo.script.aculo.us/ajax/autocompleter) are all dead links. It appears that the demo sub-sub domain is not valid. Searching this group

[Proto-Scripty] Re: Working Demo?

2009-11-16 Thread Andy Daykin
Scripty2 is in alpha stages and may be out soon it might be worthwhile holding out for a stable release of that. -- From: Thomas.Paine tpa...@gmail.com Sent: Monday, November 16, 2009 1:35 PM To: Prototype script.aculo.us

[Proto-Scripty] Re: Working Demo?

2009-11-16 Thread Alex McAuley
You do know these projects are done for free dont you? I am sorry to point out that your comments are a little demanding against an open source project .. It takes minutes to setup your own demo so i would advise you experiment and see if it works for you. Alex Mcauley

[Proto-Scripty] onClick vs Element.observe

2009-11-16 Thread phegaro
Hi all, I have an app that is going to put out a list of items onto a page and each one has a number of click targets. Now i could setup the event handler in one of two ways. 1. add it into the template that is rendered with the following code div onclick=doIt() id=item_1 class=itemItem Name

[Proto-Scripty] Re: Insert , Defer and Is there a better way?

2009-11-16 Thread phegaro
This is not during DOM load but post dom load where i am trying to insert more dom elements into the tree that i am seeing things not always load. On Nov 5, 12:37 pm, Matt Foster mattfoste...@gmail.com wrote: In taking a second look at your code... Are you using the F function recursively to

[Proto-Scripty] Re: Working Demo?

2009-11-16 Thread Thomas.Paine
Yes, I do know that and I'm sorry I was rude in my original post. There are just quite a few options out there and a working demo helps me weed out the chafe so to speak. It would also help your adoption rate and in turn increase the number of people contributing to the software. A broken link

[Proto-Scripty] Re: Draggable failing after first drag in Firefox?

2009-11-16 Thread woolyg
Hi David, Whaddaya know, upgrading worked! Thanks for your suggestion, I will make sure I'm on the correct version before darkening the group's door again! Cheers WoolyG On Nov 17, 1:13 am, david david.brill...@gmail.com wrote: Hi WoolyG, I'm sure that this code will work on FF 3.0.15. Do