[Proto-Scripty] Re: yes, but Mootoolls do that -ImageMenu-

2009-08-26 Thread lvdesign
Hi, Yes is like a vertical accordion and this .v2 seems to me a very well soluce with mouse action. Thanks very much for comments and recommendation let's go to script Friendly, LV On Aug 25, 10:25 pm, Jarkko Laine jarks...@gmail.com wrote: On 25.8.2009, at 23.16, lvdesign wrote: Hi,

[Proto-Scripty] complete handler for effects.js

2009-08-26 Thread Scott Haines
In case anyone has run into the need to have an onComplete style handler for effects.js I have made a successful addition to the source code. Step 1: In the main effect.js code skip to about line 100, it should look like this: DefaultOptions: { duration: 1.0, // seconds fps:

[Proto-Scripty] Re: this keyword inside of the map function

2009-08-26 Thread Daniel Rubin
Andy Daykin wrote: The way that my script is working on that page http://andydaykin.com/Home (http://andydaykin.com/Home/public/js/Home.js is the link to the javascript file) is how I want it to work, but I want to make my script fit the prototype conventions a little bit more. So if I

[Proto-Scripty] Re: can I get a list of event listeners on an element?

2009-08-26 Thread T.J. Crowder
Hi, Prototype doesn't have an official API call that gives you the event handlers for an element. If you look at the source, it's fairly easy to get them (in particular the stopObserving source is helpful), but in a way that's undocumented and subject to change. (It changed quite a bit between

[Proto-Scripty] Re: complete handler for effects.js

2009-08-26 Thread Alex McAuley
You have put a trailing comma on the last option wich will cause an error in IE !!!... Alex Mcauley http://www.thevacancymarket.com - Original Message - From: Scott Haines sc...@newfrontproductions.com To: Prototype script.aculo.us prototype-scriptaculous@googlegroups.com Sent:

[Proto-Scripty] Re: Ajax requests again

2009-08-26 Thread Alex McAuley
Really? I thought the explination was a simple one. To recap A global way of knowing what is going on inside Ajax requests including. 1. The element that triggered the call 2. The container (if Ajax.Updater) the response is going to. Yes i have looked at Responders and i am using them

[Proto-Scripty] Re: Ajax requests again

2009-08-26 Thread T.J. Crowder
Alex, 1. Element that triggered the call (if any) if any doesn't make any difference to the question -- again, you can't get that information from Ajax.Request or Ajax.Updater, because it's not passed into them (whether it exists or not). You can only get that information if you pass it into

[Proto-Scripty] Re: ? of format of evalScripts

2009-08-26 Thread bill
Alex McAuley wrote: var request=new Ajax.Updater('element','/url',{ method: 'post', evalScripts: true, parameters : { id: id, page: page } }); request=null; - works fine... Its probably a syntax error in your

[Proto-Scripty] Re: Ajax requests again

2009-08-26 Thread Alex McAuley
Omg lol this is my point... All you have itterated is what i have worked out for myself already and replied subsequently to that effect (friday i think). Regards Alex Mcauley http://www.thevacancymarket.com - Original Message - From: T.J. Crowder t...@crowdersoftware.com To:

[Proto-Scripty] Re: More useful clone method

2009-08-26 Thread watermark86
1.6.1rc3 added Element.clone (which calls cloneNode). On Aug 25, 5:46 pm, Matt Foster mattfoste...@gmail.com wrote: Good luck with this,  let us know if it works out. Quick glance at your code I can see an obvious error...         var newElement = element.clone(true); //clone the node

[Proto-Scripty] Re: $H need help

2009-08-26 Thread Kevin Porter
Nah, it doesn't like the 'input.id' as an object key. Object keys must be literals. He'll have to assign that key with .set() before passing the hash into the update() function. - Kev ColinFine wrote: On Aug 26, 1:09 am, buda www...@pochta.ru wrote: I need to put into hash pairs:

[Proto-Scripty] Re: More useful clone method

2009-08-26 Thread watermark86
Well, I have x-mas presents. I give it it works for me status. I've tested this bit of code with firefox and it seems to work with every scenario I can throw at it. I'm sure there is room for speed improvements and I know it doesn't conform to coding style, but it works. It would be great if

[Proto-Scripty] Re: Usage of AJAX responder to monitor AJAX calls and call custom javascript on AJAX call completion

2009-08-26 Thread krishna81m
I am trying to achieve something similar to using asynchronous = false which waits until the AJAX call is completed!! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this

[Proto-Scripty] Re: KEY_DOWN event

2009-08-26 Thread Ooypunk
I see now I made a mistake in my question. I know where it is in the manual and I know what it's for, I just don't know hów to... For catching the mouse-events the manual is clear enough (there's a clear example in the next paragraph), but there is no example for catching the keyboard events.

[Proto-Scripty] Re: this keyword inside of the map function

2009-08-26 Thread Andy Daykin
Thanks a lot! It's working perfectly now! -Andy -- From: Daniel Rubin dru...@dimedis.de Sent: Wednesday, August 26, 2009 3:01 AM To: prototype-scriptaculous@googlegroups.com Subject: [Proto-Scripty] Re: this keyword inside of the map function