similar to: more that 5 time beats for effect.pulsate

Displaying 20 results from an estimated 200 matches similar to: "more that 5 time beats for effect.pulsate"

2006 May 26
4
stopping effects, help me again please
Hi * and thanks for you responses some body help me stop effect, just last effect. Thanks! to somebody help me with: Pulsator = Class.create(); Pulsator.prototype = {initialize: function(element) { this.stopped = false; new Effect.Pulsate(element, { afterFinish: this.action.bind(this) }); },action: function(element){if(!this.stopped) new Effect.Pulsate(element, { afterFinish:
2006 May 18
1
stop effect
hi * how can i stop a effect? for example a effect.pulsate is possible? thanks rag
2006 May 29
0
[Fwd: stopping effects, help me again please]
Hi * and thanks for you responses some body help me stop effect, just last effect. Thanks! to somebody help me with: Pulsator = Class.create(); Pulsator.prototype = {initialize: function(element) { this.stopped = false; new Effect.Pulsate(element, { afterFinish: this.action.bind(this) }); },action: function(element){if(!this.stopped) new
2006 Dec 19
2
Effect.Pulsate on last scriptaculous
Somone have tested the last scriptaculous version that ships with last prototype? I you make an Effect.Pulsate, the element stays hidden after the effect finish if the element don''t have opacity stablished. This is for the changes on the setStyle method on prototype. The original code is:
2004 Jun 06
2
Analog Bridged Calls Pulsate
Hello, I've been playing around with two generic X100P analog cards to create a proof-of-concept system before we go ahead and hook up a PRI. I'm running into a reproducible problem with sound quality of bridged calls, and am hoping someone will be able to point me in the right direction. I have in my dial plan a _9. extension so outgoing calls can be made... the first thing is
2006 Sep 29
0
sortable and Pulsate on Internet Explorer bug
Maybe someone can help me to make the Effect.Pulsate working on Internet Explorer in this example? <ul id="list"> <li>Element 1</li> <li>Element 2</li> </ul> <script> Sortable.create("list"); new Effect.Pulsate("list"); </script> Thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message
2006 Nov 21
1
Bug in Effect.Pulsate with IE?
Hi there, can someone confirm a bug with IE and Effect.Pulsate()? When use the Effect wihtout the option pulses the element is hiden after the effect has finished. When i use Effect.Pulsate(element, {pulses:3}) all runs fine. In Firefox both calls runs fine... Bye, René --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups
2005 Oct 17
11
a better question
I''m trying to call a click() event on an <a href> that has an Observable registered for it. Something like: <a href="#" id="toggle_1929">show</a> ... Event.observe("toggle_1929", ''click'', function(event){ Element.toggle ("group_1929"); return false; }); ... $("toggle_1929").click(); //this throws
2008 Oct 31
6
link_to submit form value 2
Hi to all, I''d like to pass with a link to values inside some form. I''ve read in other posts that it''s possible if i include the forms inside a html <div>... So here it''s my code of the view : <div id="study"> <table> <tr><td><label for="study_titolo">Titolo di
2005 Jun 24
1
Executing custom effect for n seconds
Glad to see this list get going! I have a custom effect ''Pulse'' that basically does an opacity fade in/ out. I want to execute this effect with a custom duration. I''m looking for a consistent approach that is inline with script.alicio.us and Prototype. Is there a way to do something like this (pseudo code): Effect2.Pulse = function(element) { new
2006 Aug 13
4
has_many and foreign_key question
Alright, noob here, etc. etc. Trying to figure out the has_many usage. If I understand correctly, when you declare that a table/class has_many whatevers, the rails assumption is that there will be a foreign key in the whatevers table pointing back to the ''id'' primary key in the first table. This doesn''t seem to be the only way to have a ''has_many''
2005 Oct 13
6
performance
I''ve got a page I''ve implemented a bunch of observables and sortables. There are around 330 items in the list. The Observables (for hide/show of sublists) don''t seem to impact performance, but the Sortables take a very long time to load when the page is refreshed or submitted--even after accounting for the server-side processing and latency. I''ve
2009 Feb 13
0
THREE MODELS PROBLEM IN 'NEW' ACTION
Hello, I have this problem : When I use three models, and associate them, then, my ''new'' action need more data to work, How can I resolv it, or I do it in the right way ? Thanks Jose. ******************** my models ************************* class Libro < ActiveRecord::Base has_many :lecciones end class Leccion < ActiveRecord::Base has_many :vocabularios
2005 Oct 11
8
Sortable as a class?
Hi there! My first post to this list, so first of all many thanks for the amazing Scriptaculous library. I''m currently using it for some nice Ajax effects in Apache Cocoon (http://cocoon.apache.org/). I''m currently struggling with Sortable, which I would like to adapt as the conventions used in Cocoon are different from those currently used. Basically, I would like to send
2006 Apr 27
7
RJS & Ajax question...
Hi, I''m trying to convert an older Rails application to use Ajax. I''ve already moved my edit and show actions so that, instead of displaying as separate pages, they appear in a <div> on my list view. However, I have two problems: 1) When the user saves the changes, I want to put all the ajax changes in an RJS template. However, form_remote_tag :url =>{:action =>
2006 Jun 12
0
Please! stopping effects, help me again
My friend Sigi wrote: > Pulsator = Class.create(); > Pulsator.prototype = {initialize: function(element,options) > { > this.element = element; > this.options = options || {}; > this.options.afterFinish = this.action.bind(this); > this.stopped = false; > this.action(); > }, > action: function(){ >
2006 Jun 23
5
how can i alter the validations error messages.
hello my name is reynaldo my question is the next. i want change the text of the validations error messages generated by ruby when you don''t wrote properly the data in the form. -- Posted via http://www.ruby-forum.com/.
2005 Oct 14
6
Draggables onDragStart
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 1027 bytes Desc: image001.gif Url : http://wrath.rubyonrails.org/pipermail/rails-spinoffs/attachments/20051014/b3c26edf/attachment.gif
2005 Aug 31
4
Element.show - element.style.display=''''
All Head up. I found that when I had a hidden DIV (using css - display: none) which I wanted to Effect.Appear on some event (although the underlying problem seems to be with Element.show()), I had to make an amendment to the underlying prototype.js code by changing : element.style.display = '''' -> element.style.display = ''block''; I think the problem was
2004 May 17
2
Problems w. chan_capi + ztdummy
Hi Everybody I've got a weird problem. I am running one Asterisk system on a dual processor box. This box mostly do VoIP only but it has a Fritz PCI ISDN card installed with latest drivers. Dialing out through the ISDN cards from an internal Snom phone works fine and so does dialing in. Except - if I load the ztdummy module (for IAX channels) the capi drivers starts acting up. It is hard