Step 1 - Draw an object * Anything you likeStep 2 - Transform it into a Movie Clip * Select the object (or if you created several objects for a drawing select them all) * Right-click on the object and create a movie symbol * Give the instance a name in the properties panel !Step 3 - Adapt code belowDragging code is really simple and follows the same principles we encountered for example in the Flash button tutorial. * Associate an event listener with an event handler function. This time we listen to "mouse down" and "mouse up" events and for each we need to write a function that will do the dragging.// Register mouse event functionsblue_btn.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);blue_btn.addEventListener(MouseEvent.MOUSE_UP, mouseUpHandler);red_btn.addEventListener(MouseEvent.MOUSE_DOWN,...