Jimmy,
If, on the other hand, you need to disable the playbar within
the Presenter content (ie published powerpoint deck), there are
basically 2 ways:
1) you can kill the playbar by modifying the vconfig.xml doc
that gets created after you publish a deck. Simply set the value
from "true" to "false" and that pretty much will eliminate the
playbar.
2) you can also temporarily kill it off using actionscript.
The caveat here, however, is that you'll need to create a flash
object and import it using the Breeze command "Insert Flash" within
the powerpoint environment. The code to use within Flash looks like
this:
_root.m_controlBar.enabled = false;
--OR--
root.m_miniControlBar.enabled = false;
Rob