in past threads draggable objects have been put off until the movie clips are added... now that 3.0 beta has them, what is the best way to approach this? Has any of the other beta testers tried this yet?
Printable View
in past threads draggable objects have been put off until the movie clips are added... now that 3.0 beta has them, what is the best way to approach this? Has any of the other beta testers tried this yet?
bob -
what are the chances of adding a gui flag that can make an object draggable?
Its actually been in there since 2.8
to make a shape dragable you add this AS to a symbol:
On(press)
{
this.StartDrag();
}
to make it stop dragging on release add this AS:
On(release)
{
this.StopDrag();}