Trying to play a paused tween in update function

I’m following this example: https://phaser.io/examples/v3/view/tweens/paused-tween# but I’m using a path. After the path is complete I want to kickoff the tween.

The path is in the Update function so this is where the play command is but it’s not working.

I think I found a way around it. It appears the tween needs to be playing if you want to do anything to it in the update function. So, I hide the tween image in the create function and tween.restart() the image in the update function.

Got idea from this: https://www.html5gamedevs.com/topic/40623-update-tween-end-value/