Function Invocation PART 1

will not work if i invoke like this on button with this function:

function showMC(clip){
_root.content.drive.local.section5.clip.fade(6)
}

on (release) {
showCM(clipA);
}

will work instead:

function showMC(clip){
clip.fade(6)
}

on (release) {
showCM(_root.content.drive.local.section5.clipA);
}

i’m pretty bad at those syntax thing, what i want to
avoid is to change evry button when my path changes (i got
plenty of button)

thanks!