Hi everyone!
I’m trying to make a box that contains a formulary. I’ve already built this box with it’s texts, text boxes, buttons, images…
Now, I discovery that it’s possible to drag this box using Action.
The code is something like this:
on(Press) = function(){
startDrag(this);
}
on(Release) = function(){
stopDrag();
}
I’ve done and it worked well!
But my problem is that doing it, I became unable to write things on the formulary and press the buttons.
So, I want to know if there’s any way to do a box with a formulary in it that can be dragged (that doesn’t jeopardize my form…)
I dislike to make Actions, so if there’s any way to do it in ActionScrips (classes), I would be glad!