Welcome, Guest. Please Login.
05. Sep 2010 at 13:59
News: First, I want to welcome you to the Breeze/Presenter Forum at robrode.com! However, due to an unprecedented number of spam messages that this board has suffered, a new policy has gone into effect: Guests may view any topic available, but NO POSTING will be allowed. If you wish to legitimately join this forum and actively participate in discussions, you MUST email me at robva65 AT netscape.net (actual email address was intentionally re-written here because of spam) with your information and I will personally add you to the list of participants. I apologize if this seems a bit drastic, but I simply will not allow this board to be inundated with useless garbage. Thanks! ~Rob
Home Help Search Login


Pages: 1
Send Topic Print
Controlling the Playback Component in Presenter (Read 898 times)
robva65
YaBB Administrator
*****




Posts: 96
Controlling the Playback Component in Presenter
20. Aug 2009 at 13:00
 
Just had a client who requested that the playbar component in Presenter be eliminated.  Interestingly enough, they felt that since the content they were working with didn't contain any audio at all, it was futile to include the scrubber EVEN THOUGH there was animated elements on many slides AND they still wanted the attachments button, Back/Next and Play/Pause controls to remain intact.
 
Okay...no big deal....I don't necessarily agree...but no big deal.
 
Most of us would would have normally taken the following approach: publish your content, then dive into the vconfig.xml file and set the playbar value to "false".  Problem: it wipes out EVERYTHING!
 
Solution: A flash file that does the heavy lifting for us.
 
Here's how:
 
In order to kill the playbar scrubber while leaving the attachments and audio controls intact, use the following code on a single frame of an fla:
 
this.onEnterFrame = function () {
_root.m_controlBar.m_scrubBar._visible= 0;
}
 
Save and publish the flash file (I called it killScrubBar.fla) and add the swf to teh FIRST slide in your PPT deck.  Publish the PowerPoint deck and the scrubber/playback will be gone!
 
NOTE: Because Presenter 7 is set up for Flash Player 8, its best to code everything using ActionScript 2.0 as the coding environment.
Back to top
 
 

The Administrator.
View Profile WWW   IP Logged
mark
YaBB Newbies
*




Posts: 1
Re: Controlling the Playback Component in Presente
Reply #1 - 28. May 2010 at 09:45
 
My problem was I was trying to remove only the next and previous buttons. I found this on another forum and it works great.  Same technique just slightly different actionscript.
 
I am using custom navigation however still plan on using audio on each slide, so I still wanted the scrub.
 
this.onEnterFrame = function () {  
_root.m_controlBar.m_slideNextBtn._visible= 0;  
_root.m_controlBar.m_slideBackBtn._visible= 0;  
 
}
Back to top
 
 
View Profile   IP Logged
Pages: 1
Send Topic Print