preview looks very classy
Posted 2 months ago
how would you get rid of the drag and drop capability and change it to single click instead of double click?
Posted 2 months ago
cooool
is that possible?
the card is a movieclip?
thanx
Posted about 1 month ago
i would like to see the drag disabled and either make the flip happen on rollover or with one click.
Is that a simple fix in the code?
Posted about 1 month ago
For mouse over and out card flip:
BusinessCard.Button.onRollOver = function(){ if(this._parent._currentframe == 1){ this._parent.swapDepths(top); this._parent.play(); } } BusinessCard.Button.onRollOut = function(){ if(this._parent._currentframe == 14){ this._parent.swapDepths(top); this._parent.play(); } } Posted 27 days ago