I have made the following code to create and drag letters, sorry if it is very dirty, but I am just learning AS3, I need you to help me complete the code to delete the created letters and restart the animation, with a button.
LetraA.addEventListener(MouseEvent.MOUSE_DOWN, arrastrarA);
function arrastrarA(event: MouseEvent): void {
var LetraA_1 = new letraA;
addChild(LetraA_1);
LetraA_1.x = 72.15;
LetraA_1.y = 316.45;
LetraA_1.startDrag();
}
LetraB.addEventListener(MouseEvent.MOUSE_DOWN, arrastrarB);
function arrastrarB(event: MouseEvent): void {
var LetraB_1 = new letraB;
addChild(LetraB_1);
LetraB_1.x = 170.35;
LetraB_1.y = 316.45;
LetraB_1.startDrag();
stage.addEventListener(MouseEvent.MOUSE_UP, soltarletras);
function soltarletras(event: MouseEvent): void {
LetraA.stopDrag();
}
Resetear.addEventListener(MouseEvent.CLICK, eliminarhijos);
function eliminarhijos(event:MouseEvent):void
{
"I need help here please"
}
There are several ways about it. It depends on what you have and can and cannot do there which one to use.
Way №1. You can have a separate container for all the letters and clean up exactly that container.
Way №2. Enrollment list. You keep a list of things you need to remove.
Way №3. Tagging. If for any impossible reason any of the above doesn't suit you, you can name these letters in a specific way so you can filter them from other objects.
Way №4. Into the weird. If none of above works for you, there's still a way to separate the letters from other objects there.