Animating when dragging a moviclip (enlarging)

I'm trying to get a movieclip to enlarge (scale up) as it is dragged.

I think this is close...

Are you able to see what I have not got right here?

cake=zimify(this.cake)
.centerReg()
.pos(580,30,CENTER,TOP)
.drag()

cake.on("drag",e=>{
e.target.animate({scale:2})
S.update()
})

Once again - thank you...

Rod

There is no "drag" event. If you are animating the scale, maybe it would work with "mousedown".

The "pressmove" event goes as you are dragging. Then "pressup" as you stop.

If you are animating or dragging, for that matter, then you do not need S.update()