Если вы не пользуетесь событиями onRollOver и onRollOut для кнопок, достаточно будет использовать Button.prototype, чтобы разом задать onRollOver и onRollOut всем объектам класса Button:

Код AS1/AS2:
startDrag(_cursor,true);
function standartCursor(){
Mouse.show();
_cursor._visible=false;
}
function customCursor(){
Mouse.hide();
_cursor._visible=true;
}
Button.prototype.onRollOver=function(){
standartCursor();
}
Button.prototype.onRollOut=function(){
customCursor();
}
customCursor();