Hi,
I suggest you make a background clip inside your clip and give it a name, say "Base", place it below the buttons on another layer.
Then exit your movie clip and place this code on the main timeline, assuming you give the whole clip the name "outer".
PHP Code:outer.Base.onPress = function()
{
startDrag(outer);
};
outer.Base.onRelease = function()
{
stopDrag();
};




Reply With Quote