Devi usare _height, ma ormai il setProperty è abbastanza 'superato', la stessa actions che usi puoi scriverla così

on (release) {
_root.mc1._width = 50
}

Per cambiare anche l'altezza quindi puoi usare

on (release) {
_root.mc1._width = 50
_root.mc1._height = 80
}