Re: [Proto-Scripty] License link on main page not working

2011-01-11 Thread Rüdiger Kaatz
Hi there, I'm not part of the prototype team, but the link to the license should probably be: http://www.prototypejs.org/license Good luck, Rudi. On Tue, Jan 11, 2011 at 10:59 AM, JaiminiRam jaimini...@gmail.com wrote: Hi, We are trying to use this software but are unable to proceed unless

Re: [Proto-Scripty] Re: License link on main page not working

2011-01-11 Thread Rüdiger Kaatz
Hi, sorry, but I cannot really help you with this. As I said I'm not from the prototype team nor anywhere related to them, I'm just using their library. Cheers, Rudi. -- You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to

Re: [Proto-Scripty] upload plugin and photo(image) gallery plugin

2011-01-13 Thread Rüdiger Kaatz
Hi Walter, you write: As far as the progress meter goes, the only other issue there is that you usually also have to have a Perl module on your server to monitor the upload progress. PHP won't do it, not sure about Ruby or Python. It depends a LOT on your server whether you get a realistic

Re: [Proto-Scripty] Re: number sign (#) in a select option - gets truncated

2011-01-14 Thread Rüdiger Kaatz
Easy, you're welcome. On Jan 14, 2011 5:20 PM, ehickstech ehickst...@gmail.com wrote: Brilliant!! Thank you so much! On Jan 14, 10:39 am, Rüdiger Kaatz rudirak...@gmail.com wrote: Hi there, I suppose the mistake is in passing in a string to parameters. Better do it like this: new

Re: [Proto-Scripty] document.fire() not defined

2011-01-19 Thread Rüdiger Kaatz
Hi there, is this the first call to the prototype library? Maybe it does not load correctly? -- 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

Re: [Proto-Scripty] local variables for for() array iteration

2011-01-19 Thread Rüdiger Kaatz
Hi there, there are not stupid questions of course. They could be a bit more prototype-related though... All you should have to do is use var in order to make a variable local to the function it is declared in. In your example that would be: for(var i=0;iarray_b_length;i++) On Wed, Jan 19, 2011

Re: [Proto-Scripty] local variables for for() array iteration

2011-01-19 Thread Rüdiger Kaatz
And last but not least, if this is a prototype mailing list you should of course use prototype, so your loops would look like this: $A(array_b_length).each(function(arrayElement) { // do something with the element... }); -- You received this message because you are subscribed to the Google

Re: [Proto-Scripty] Re: local variables for for() array iteration

2011-01-19 Thread Rüdiger Kaatz
. -- T.J. Crowder Independent Software Engineer tj / crowder software / com www / crowder software / com On Jan 19, 3:18 pm, Rüdiger Kaatz rudirak...@gmail.com wrote: And last but not least, if this is a prototype mailing list you should of course use prototype, so your loops would look like