So for one of my courses, I wanted to create an alternative method of presenting closed captions for our elearning course instead of the preferred method that we currently use, which was started back when they were using Articulate 5 and before. So after placing all your closed captions in the notes section of the PowerPoint, simply publish. Then here is a zip file that contains 2 files (art_plugins.xml and cc.swf) that can go in the published PLAYER folder that will create a Closed Caption button at the top, where ATTACHMENTS and EXIT appear. If you are zipping to upload to a LMS, be sure to extract and put these files into the folder before zipping. Though, if you zipped, that’s still not a problem. Simply double-click on the zip file so that WinZip opens it. Double-click on the player folder and drag the files into the WinZip program. Click Add at the bottom, and then the X at the top right.
Closed Captions Button: How It Works
I have my presentation player template set to No Sidebar View, Display Mode = 2. To set this, in PowerPoint, click on the Articulate tab (in 2007/2010), then select Player Templates. Under Layout, select the view modes you want to allow. The default has them all selected. The Standard View must be selected/checked. Set whichever you’d like as your starting mode by selecting it so that it turns blue and then click Set as Starting View.
Closed Captions Button: AS2 Code
For those who like code, I simply took the Test_Tool.fla from the Articulate SDK.
tab="notes";
var displayMode = ArtAPI.GetDisplayMode(); //be sure that this is defined according to the Articulate SDK
var currentTab = _level44.mcSidePanel.mcOutlinePanel.g_strLastActiveId; //thanks to @onEnterFrame
if ((displayMode == 1) && (currentTab == tab)) {
ArtAPI.SetDisplayMode(2); //be sure that this is defined according to the Articulate SDK
}
else {
ArtAPI.SetDisplayMode(1);
_level44.mcSidePanel.mcOutlinePanel.mcTabCtrl.SetSelectedTab(tab);
}
Thanks James for collaborating with me and giving me some code to build this easy Articulate closed captions button! If anyone ever needs someone to do some custom Articulate work for you whether template building or building a custom player, he can do it and more. Check him out at his website and elearningenhanced.com site.










