HELP! I do not know

[center]well I have several objects in this Flash file I am making. I am using Flash MX 2004. The objects are as follows/

  1. button labled “check”
    2.Inpu text labled “note”
    and 3. a movie clip labled “sticky”

I have this script

[left]on (press) {
startDrag("“sticky”);
}
on (release) {
stopDrag();
}
[center]------------------------------------

the script is attached to the button. I want it so when I click and drag the button everything moves with it. How (if possible) can I do that. Can someone please tell me. PLEASE

Thanks in advance.

[/center]
[/left]
[/center]

funny thing… i was thinking that in order to do that you had to calculate the current x & y of the button, and on enterframe calculate the difference and add/subtract it from the other’s x & y so they would move in tandem… but i put this on the button:

on (press) {
this.startDrag(false);
}
on (release) {
stopDrag();
}

and they all move together, which i didn’t expect. see if that works for you.