Hi

I am using this.

                          new Draggable('hueArrows',{
                                snap: function(x,y,draggable) {
                                  function constrain(n, lower, upper) {
                                        if (n > upper) return upper;
                                        else if (n < lower) return lower;
                                        else return n;
                                  }

                                  element_dimensions = 
Element.getDimensions(draggable.element);
                                  parent_dimensions =
Element.getDimensions(draggable.element.parentNode);
                                  return[
                                        constrain(x, 0, parent_dimensions.width 
-
element_dimensions.width),
                                        constrain(y, 0, 
parent_dimensions.height -
element_dimensions.height)];
                                },
                                revert:false
                          });

When dragging, I want to read the position of "hueArrows" and take
some actions. How can I do this?

Regards,
Moe Sweet

--~--~---------~--~----~------------~-------~--~----~
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-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to