Displaying 20 results from an estimated 6000 matches similar to: "Scriptaculous Help (page exit effects)"
2005 Sep 20
5
scriptaculous setting options - Speed
How do you set the options for an effect, I have multiple effects on
a page, some are small boxes but others are larger, I want to be able
to set the speed of each effect individually.
so the question is how do I have 2 effect.BlindUp objects on one page
with different speeds?
Thanks.
______________________________________________________________________
Alex Duffield . Principal .
2007 May 17
5
AJAX, PHP and scriptalicious
Hey,
I''m brand new to AJAX and scriptalicious, so i''m hoping for some help.
inside hello.php
I have this piece of code to grab and loop out users in the database:
function test(){
$query = mysql_query(''SELECT * FROM `testing`'');
while($i = mysql_fetch_row($query))
{
echo''<div class="testie">'';
2006 Nov 27
7
3 prototype/scriptaculous effects in order on one <div>
What I am trying to do is fade out the content in a certain <div> load
new content while its black then fade in the new content but im lost.
I need it to go like this...
Effect.Fade,Ajax.Update,Effect.Appear
but everytime I try to do it it just trys to do all of them at once,
how do I go about making the effects wait on the previous one before it
starts?
2008 Apr 27
4
Smoothing out effects/ consistent effects everytime
HI All,
I am using this code here:
setTimeout("Sound.play(''sounds/movieprojector.mp3'');", 600);
setTimeout("Effect.Appear(''slideshow5'');", 850 + 600);
setTimeout("Effect.Puff(''slideshow5'');", 850 + 600 + 850);
2006 Jan 06
3
image replacement (new Effect.*****) problem
Here''s what I''m trying to do. I have two divs, one holds about 20 small
images of products and the other holds a single large image of one of
the products. I''m trying to use the jazzy "new Effect." way of changing
images but I can''t seem to get it too work. My script is replacing the
image and then making the element disappear. What
2006 Feb 03
2
Scriptaculous: Newbie question - Effect.fade
Hi there,
Is it possible to do an effect.fade without removing the hidden document
from the flow when in becomes invisible?
I have a line of images (initially all invisible)
[] [] [] [] []
And a list of links
- link 1
- link 2
- link 3
- link 4
- link 5
And what I want to happen is to have the images appear on link mouseover
and disappear on mouseout but for the images to maintain their
2008 Jul 11
1
Scriptaculous: how to keep element space?
Hello everybody,
I hope I am at the right place here with my question, otherweise
please accept my apologies.
I searched a lot for my question and did not find an answer, so I
would be very happy if you could help me out maybe.
I am using Effect.Fade for on element. Everythings works fine, but
when the element is faded out, its space it no longer used and
therefore other elements move and
2006 Feb 06
10
Urgently Need Solution
I''m using scriptaculous'' SlideUp and SlideDown effects to animate a menu.
Specifically, I SlideUp, make some CSS changes, and SlideDown. All works
well, except that for a split second in between, the element''s display
becomes ''none'' and the other menu item jump into the space. I haven''t been
able to find any way to force an element to retain
2006 Apr 06
1
Bug? In scriptaculous -- double text drawn one pixel off
Hello, I''m working with scriptaculous, and i''ve narrowed down a bug i''m
having to the following code:
http://rate.urbanpug.com
I''m using the latest release (as of sending this mail) of scriptaculous.
I''ve actually seen this bug before, and random tweaking fixed it.
Unfortunately, i can''t figure it out this time. I''ve reduced the bug
2008 Jan 21
2
scriptaculous fade problem
Been googling trying to find a workaround, with no luck yet ... I hope
y''all can help.
My goal is to have a semi-transparent background screen on a DIV which
will fade in and out over another DIV with a photo for a background.
currently I have background-image: url(screen.png) which is a 32x32
PNG24 filled with white at 35% opacity. The problem is that as the div
is fading-in, IE
2006 Sep 07
3
Using "scriptaculous.js?load=effects" on FF
Hi All,
For somewhat when I use <script src="scriptaculous.js?load=effects> the
effects.js is never get downloaded on FF. So, I can''t use any effect
at all. Anyone has the same problem? Please help!
Thanks,
Palawan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2006 Sep 14
10
scriptaculous Toggle Appear rate
I have the following code to toggle a basic appear of a div:
<a href="#" onclick="Effect.toggle(''d3'',''appear''); return
false;">Toggle appear</a>
I want to edit the rate in which the effect runs. I can''t for the life
of me figure it out. I would like to make the effect complete faster,
like .5 seconds. I''ve
2007 Nov 12
15
If form changed ask if you really want to exit page...
First things first: Hi all! I''ve been sucked into prototype and
script.aculo.us develpment thanks (because of?) the Symfony PHP
framework...
I''d like to implement a feature on some admin pages, but I can''t seem
to find the right search term to google it; I want to ask the user to
confirm exit of a page, if she has changed anything on the forms
displayed on it.
I have
2006 Oct 29
1
scriptaculous: fade out then in.
I''m pretty new to javascript, and scriptaculous, but I know what I want
to do.
I want to make it so that when a person clicks a link, the previous
content of the div fades out, and the new content fades in.
This is what I''ve got for my function:
<script type="text/javascript">
//<![CDATA[
function loadmerch(im)
{
new
2007 Jun 16
3
Help with effect queue.
I have an interesting challenge for you. I am using both Scriptaculous
and Prototype on a web site (not using Ruby) and I am trying to queue
effects and updates. Here is the situation - I have a page with
editable blocks, when the user clicks on the edit button under the
box, I want it to:
1) Use Ajax to go out and get the code to build the editor form.
2) When it has the form, use Effect.BlindUp
2008 Jan 10
4
Ajax.Autocompleter feature enhancement
I was wondering why Ajax.Autocomleter didn''t support array-style
parameters for the Ajax.Request and opened the following enhancement
request:
http://dev.rubyonrails.org/ticket/10612#preview
Any comments?
Cheers,
Andi
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group.
2008 Jun 19
7
getDimensions() fails for elements with ancestors with display: none
Prototype v1.6.0.2
If any of an element''s ancestors are hidden, Element.getDimensions()
returns misleading values. In order to address this in my own project,
I made the following modification:
getDimensions: function(element) {
element = $(element);
var display = element.getStyle(''display'');
+ var hiddenAncestor = element.ancestors().any(function(e)
{
2006 Jun 07
3
Including scriptaculous.js causes page to "hang"
When I say hang, I mean the browsers spinner keeps spinning and
Firefox''s info bar at the bottom says "Transfering data from ...... "
I''m just including the js like this:
<script src="/js/prototype.js" type="text/javascript"></script>
<script src="/js/scriptaculous.js" type="text/javascript"></script>
2008 May 30
7
Styling an Anchor Tag With Prototype
I have a question: How do you style the various components of the
anchor tag? I am doing it this way:
$$(''a:link,a:visited'').each(function(link){ //links
link.setStyle({ color: ''#''+$F(''cp4_Hex'') });
});
$$(''a:hover'').each(function(link){ //links
link.setStyle({ color: ''#''+$F(''cp5_Hex'')
2005 Dec 14
1
[scriptaculous] scroll down to show full auto completion list (w/ possible patch)
Hi everyone,
lately I''ve implemented an auto completion textfield at the bottom of a
form. I was a bit bothered by the fact that the user would potentially
need to scroll down in order to see all the options offered by the auto
completion. I couldn''t find any information on how to auto scroll to the
auto completion list with bulit-in functionality so I modified
controls.js