DO12 - Viewer refuses to take String command

This works:

[code]Set cmd = DOpus.NewCommand()
cmd.AddLine "Show VIEWERCMD=next"

DOpus.Viewers.lastactive.command(cmd)
[/code]

This doesn't work:

DOpus.Viewers.lastactive.command("Show VIEWERCMD=next")

How come? This is the exact example from the Opus 12 Changes.pdf

I am running 12.0.5 (Beta) x64

Thanks, it's a bug in the documentation. If you pass a string it has to be the argument for the Show VIEWERCMD command (i.e. DOpus.Viewers.lastactive.command("next")).