Hi
I’ve some draggable movie clips that drag on(press) - but I’d also like the movie clips buttons to load and open a new movie on the double click.
The problem is that that the on(release) stops the drag - and is effectively used up as far as loading a movie clip goes.
I’d like to get the double click effect that Yugop achieves on his draggable movie clip buttons on http://www.intentionallies.co.jp.
Any ideas on achieving this? I’ve tried nested movie click buttons but this is proving problematical.
The AS I’m using on the movie clip buttons is below.
Thanx for any help on getting this to work.
Dirk
on (press) {
//Start Dragging Movieclip Behavior
startDrag(this, false, 168, 224, 564, 476);
this.swapDepths(this._parent.getNextHighestDepth());
n=this.getDepth();
_root.introBox.swapDepths(n+1);
//End Behavior
}
on (release,rollOut) {
stopDrag();
}