[Proto-Scripty] Re: BGEffects: Animate your background images!

2011-11-13 Thread ncubica
Pretty neat job, thanks for the advice... On 13 nov, 13:12, Pedro De Almeida almei...@gmail.com wrote: Hi all, I just wanted to share with you my BGEffects component for script.aculo.us. BGEffects is a library for creating perspective animations (aka parallax effect) using background

[Proto-Scripty] Re: Image cache problem with Ajax

2011-09-29 Thread ncubica
i know you resolve your problem but It wont be easy if you delete from the dom the img / tag storing the actual images then... create new new Images() append to the div and finally add a query cheat link??? just a shot... best ncubica... On 29 sep, 13:28, Phil Petree phil.pet...@gmail.com wrote

[Proto-Scripty] Re: Future of Prototype.js

2011-09-29 Thread ncubica
knowledge because this framework... and care about it. Best Ncubica... On 27 sep, 08:58, Walter Lee Davis wa...@wdstudio.com wrote: On Sep 27, 2011, at 12:00 AM, Marty Amberg wrote: One more thing.  Chevy and Ford and Honda, make lots of cars but that does not mean they produce the best vehicles

[Proto-Scripty] Re: Future of Prototype.js

2011-09-25 Thread ncubica
Hi TJ, I would like to help in the implementation of the UI interface for prototype, who do you think can lead this feature? I'm think I'm best using prototype than working on the core, I could help in this stage, and also I would love a renaissance of protoype. I think in the same way of you...

[Proto-Scripty] Re: Prototype's evolution

2011-08-19 Thread ncubica
Please somebody from the prototype dev core team answer us!!! we love prototype, but is dying!!! On Aug 18, 7:57 pm, Brian Williams brianw1...@gmail.com wrote: that's  very good point, Phil. I've been reluctant to say anything on this, but maybe another voice will take a step closer to an

[Proto-Scripty] Re: Prototype's evolution

2011-08-19 Thread ncubica
btw... google groups is closing... does anyone knows what is gonna happen with this email group?? On Aug 19, 2:02 am, ncubica ncub...@gmail.com wrote: Please somebody from the prototype dev core team answer us!!! we love prototype, but is dying!!! On Aug 18, 7:57 pm, Brian Williams

[Proto-Scripty] Re: Prototype's evolution

2011-08-19 Thread ncubica
T.J. As Always you're right sorry is not true google group is closing. Thanks for the note. ;) On Aug 19, 4:06 am, T.J. Crowder t...@crowdersoftware.com wrote: Hi, On Aug 19, 8:08 am, ncubica ncub...@gmail.com wrote: btw... google groups is closing... does anyone knows what is gonna

[Proto-Scripty] Re: Prototype Vs. JQuery

2011-05-01 Thread ncubica
@lvdesign you comment sound more that an advertising than an real prove for why to move to jquery, I mean seriously I don't know anything that you CAN'T do with prototype and do with jquery cause at finally both are javascript, so the question is more about what is the real future of prototype,

[Proto-Scripty] Re: Prototype 1.7 EvalJSON Error Sintax on Date Eval

2011-01-07 Thread ncubica
I don't think that is the reason because actually is an array of objects and without the When properties works, Im mean if you do something like [ {Aspirante_id:37, AspirantesComentarios_id: 6, Comentario:asdfadsf, Who:nahum }, {Aspirante_id:38,

[Proto-Scripty] Prototype 1.7 EvalJSON Error Sintax on Date Eval

2011-01-06 Thread ncubica
Hi I'm working with the evalJSON method many time before but some reason now is sending me a Error Sintax when I try it to use with any Date format. the json string which I'm receiving in the responseJSON is the follow. [{Aspirante_id:37,AspirantesComentarios_id:

[Proto-Scripty] Re: Stack overflow... ???

2010-10-15 Thread ncubica
[off-topic] Hi TJ I just saw in your jsbin code the attribute span data-picker='colors=blue'Blue/span data-picker is a real attribute?? or you just add it for easy use with the $('*[data- picker]') selector?? thanks in advance nahum On Oct 14, 10:35 am, T.J. Crowder t...@crowdersoftware.com

[Proto-Scripty] Re: Array merge problem

2010-09-28 Thread ncubica
Is not better to use an object inside of the Array. at least is more readable var uri = [ { base : mypathbase/, img : image1.png }, { base : mypathbase/, img : image2.png }] var img = uri[0].base + uri[0].img; // mypathbase/image1.png best On Sep 28, 2:24 pm, Walter Lee Davis

[Proto-Scripty] Re: window.open on ajax response

2010-07-10 Thread ncubica
I guess one easy option is to call a outside function like new Ajax.Request('someURL', { onSuccess: function(response) { var success = response.responseText; success == true ? openPopup(http://google.com;) : openPopup(http://yahoo.com;); }

[Proto-Scripty] Re: referencing div when class event triggered.

2010-07-10 Thread ncubica
I guess you can do something like: funcToCall(event){ var o = Event.element(event); //and that's the object who was been mouseovered X) } Here is a similar question did it time ago in this list best practice...

[Proto-Scripty] Ajax JSON Request with Flickr URL response don't work in Firefox

2010-06-24 Thread ncubica
Hi every body I have a weird issue I been working with the Flickr API, in Flickr for make a connection with the server is through url format in my case something like this

[Proto-Scripty] Re: Ajax JSON Request with Flickr URL response don't work in Firefox

2010-06-24 Thread ncubica
24.06.2010 19:47, schrieb ncubica: Hi every body I have a weird issue I been working with the Flickr API, in Flickr for make a connection with the server is through url format in my case something like this http://api.flickr.com/services/rest/?method=flickr.photosets.getList;... If your run

[Proto-Scripty] Re: Ajax JSON Request with Flickr URL response don't work in Firefox

2010-06-24 Thread ncubica
the call to the Flickr API. David Am 24.06.2010 19:47, schrieb ncubica: Hi every body I have a weird issue I been working with the Flickr API, in Flickr for make a connection with the server is through url format in my case something like this http://api.flickr.com/services/rest

[Proto-Scripty] Re: Javascript Prototype Best Practice Event Handlers

2010-05-11 Thread ncubica
above. You'll want the first version if you're still using 1.6 (and since 1.7 is still at RC1, I expect you probably are). HTH, -- T.J. Crowder Independent Software Consultant tj / crowder software / comwww.crowdersoftware.com On May 10, 4:09 pm, ncubica ncub...@gmail.com wrote: Hi

[Proto-Scripty] Javascript Prototype Best Practice Event Handlers

2010-05-10 Thread ncubica
Hi this question is more a consulting of best practice, Sometimes when I'm building a complete ajax application I usually add elements dynamically for example. When you'r adding a list of items, I do something like: var template = new Template(li id='list#{id}'#{value}/li); var arrayTemplate =