/interface bridge port set command doesn't take affect

On a RB450, I want to move a port from one bridge to another at a scheduled time. The script I write doesn’t work.
Can someone look at it and offer suggestions as to what is wrong?

Here is the script.

name=“1700run” owner=“admin”
policy=ftp,reboot,read,write,policy,test,winbox,password,sniff
last-started=dec/15/2010 05:00:46 run-count=8
source=
/interface bridge port
set [find name=“ether4”] bridge=bridge_local
:log info “1700 run”

Thank you!

There are no parameter “name” in bridge ports.

Script should be:
/interface bridge port set [find interface=“ether4”] bridge=bridge_local

That fixed my problem, thank you very much.