Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 435549
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T20:23:14+00:00 2026-05-12T20:23:14+00:00

I have a MovieClip instance which can be moved around the stage using startDrag()

  • 0

I have a MovieClip instance which can be moved around the stage using startDrag() and stopDrag(). The instance also has some child MovieClips using addChild(). The parent moves the children when dragging, which is fine. The children have there own startDrag() and stopDrag() which should apply only to the child object, however it also moves the parent and other children. When clicking a child the MouseEvent of the child is being called but so is the parent.

public class Component extends MovieClip {
    private var nodes_array:Array = new Array();

    public function Component() {
        x = 60;
        y = 100;

        nodes_array.push(addChild(new Node(50, 50)));
        nodes_array.push(addChild(new Node(150, 150)));

        addEventListener(MouseEvent.MOUSE_DOWN, startDraggingComponent);
        addEventListener(MouseEvent.MOUSE_UP, stopDraggingComponent);
    }
    private function startDraggingComponent(me:MouseEvent):void {
        this.startDrag();
    }
    private function stopDraggingComponent(me:MouseEvent):void {
        this.stopDrag();
    }


    public class Node extends MovieClip {

    public function Node(x:int, y:int) {
        this.x = x;
        this.y = y;

        addEventListener(MouseEvent.MOUSE_DOWN, startDraggingNode);
        addEventListener(MouseEvent.MOUSE_UP, stopDraggingNode);
    }
    private function startDraggingNode(me:MouseEvent):void {
        this.startDrag();
    }
    private function stopDraggingNode(me:MouseEvent):void {
        this.stopDrag();
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T20:23:14+00:00Added an answer on May 12, 2026 at 8:23 pm

    In the Node class listener’s you need to call e.stopImmediatePropagation();. That will prevent event from bubbling up to its parent.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can you add a movieclip to the stage from a child class? My setup
I have a movieClip within another MovieClip. I gave the child movieClip the instance
So I have the MovieClip mc1 which added to the stage ( addChild )
My stage have 3 movieclip that is mc1,mc2 and mc3. each of them are
I have my player movieclip on the stage, and when the mouse is clicked
In my Flash project I have a movieclip that has 2 keyframes. Both frames
I have created a movieclip which have 120 frames. Now i have used multiple
I have an instance on my stage that I dragged from my library at
I have a MovieClip of instance name BeachMovie. On the same frame I have
I have a movieclip instance named 'placeholder' on the canvas, and I want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.