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

2011-01-12 Thread Tobie Langel
Fixed the link. FWIW, the license is included in the src code. Best, Tobie -- 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-scriptacul...@googlegroups.com. To unsubscribe from this

[Proto-Scripty] Re: I wrote a dropdown multiselect also

2011-01-12 Thread Luke
nice! -- 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-scriptacul...@googlegroups.com. To unsubscribe from this group, send email to

[Proto-Scripty] help me, about Class.create

2011-01-12 Thread 쏘주망태
// my code : var Parent = Class.create({ intro:{ name:'', age:0 }, initialize:function(){}, show:function(){ document.write(this.intro.name); } }); var ChildA = Class.create(Parent, { initialize:function(){ this.intro.name = 'A'; this.intro.age = 10; } });

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

2011-01-12 Thread Ivan Polak
Hi!, please, is there any plugin in prototype (scriptaculous) to upload file (with progress bar, with posibility to upload two or more files) for example like in facebook image gallery upload. and the second question is, is there any image(photo) gallery plugin with dragdrop feature, like in

[Proto-Scripty] Re: help me, about Class.create

2011-01-12 Thread T.J. Crowder
Hi, The properties you pass into `Class.create` are put on the prototype of the resulting constructor function (class, for lack of a better term). That means those properties are *shared* by all instances created by that constructor function. So when either the `ChildA` or `ChildB` constructor

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

2011-01-12 Thread Walter Lee Davis
Your first port of call should be http://scripteka.com for all of your ProtoScripty extras love. As far as uploads go, you realize that Ajax can't upload files (except in Safari 5 and Chrome.latest), so any of these systems must fake an in-page upload using a dynamically created iframe.