A Flash Developer Resource Site

Results 1 to 1 of 1

Thread: Whats wrong with my multiple drag and drop code?

  1. #1

    Whats wrong with my multiple drag and drop code?

    I've got ParaA, ParaB, and ParaC ( http://img.photobucket.com/albums/v2.../misc/para.gif ) which are dragable mc's (ie they have buttons inside them with the code below), they can be dropped onto any of the mc's Para1, Para2, and Para3.

    Here's the code for ParaA button:

    on (press) {

    startDrag(this, true);

    this.ox = this._x;
    this.oy = this._y;
    }

    on (release) {

    stopDrag();

    {
    if (this._droptarget == "/Para1")

    {
    _root.Para1.gotoAndStop(2);
    }

    if (this._droptarget == "/Para2")

    {
    _root.Para2.gotoAndStop(2);
    }

    if (this._droptarget == "/Para3")

    {
    _root.Para3.gotoAndStop(2);
    }

    else

    {

    this._x = this.ox;
    this._y = this.oy;

    }

    }

    stopDrag ();
    }

    When you drag ParaA to any of the mc's Para1, Para2, or Para3, it executes the relative _root.Para#.gotoAndStop(2); but only snaps to Para3. Have I missed something?

    Thanks in advance.
    Last edited by Pancreasboy; 07-18-2006 at 07:14 PM.
    Yourz Trooly,

    PB
    www.twistedpancreas.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center