PDA

View Full Version : button control vs. movide clip control


JeffyB
07-23-2003, 02:42 AM
OK, I'm clearly missing something fundamental here. I'm playing with duplicateMovieClip. It works fine from a button using

> on(release)

but doesn't work from an MC using

> on(rollout)

Any obvious hints before I upload the example?

TIA,

Jeff

soon, maybe I can help somebody...:D

CyanBlue
07-23-2003, 02:58 AM
Howdy... ;)

Try these...yourDuplicatedMovieClipInstanceName.onRoll Over = function () { }
yourDuplicatedMovieClipInstanceName.onRollOut = function () { }
yourDuplicatedMovieClipInstanceName.onPress = function () { }
yourDuplicatedMovieClipInstanceName.onRelease = function () { }Do some more searching on the forum with 'duplicateMovieClip onRollOver onPress' to find more information...
See this thread as well...
http://www.actionscript.org/forums/showthread.php3?s=&threadid=29283