Localizing play-bar tool tips
Consider a scenario where you want to create content in some different language, say German or Hindi. You created the content properly, but then you discover that the play-bar shows its tool-tips in English. Did you know that you can localize the play-bar tooltips to match your content? This post shows you how…
Img 1. English tool-tips

Img 2. Italian tool-tips
For Localizing play-bar you will need to have Adobe Flash.
Adobe captivate 4 comes with fla files for the play-bars. Typically installation folder for captivate 4 is “C:\Program Files\Adobe\Adobe Captivate 4”.
Locating tool-tip strings in AS2
Fla files for AS2 are located at “installation folder\Templates\PlaybackFLA\AS2”.
Open the play-bar fla file which for which you want to change the tool-tips and open the actions window for the main time line.
Locating tool-tip strings in AS3
Fla files for AS3 are located at “installation folder\Templates\PlaybackFLA\AS3”.
Notice a movie clip with name as “Localization” in the library window. Double click on the Localization movie clip in library to open it and open the actions window.
Changing play-bar tool-tips
You will notice few array definitions on the time line of the fla file. Name of those arrays are pbcBtnTips_ENU (English), pbcBtnTips_CHT (Chinese Traditional), pbcBtnTips_FRA (French), pbcBtnTips_DEU (German), pbcBtnTips_ITA (Italian), pbcBtnTips_JPN (Japanese), pbcBtnTips_ESP (Spanish) and pbcBtnTips_KOR (Korean). And then you will find the last line as
var pbcBtnTips:Array = pbcBtnTips_ENU;
If you want to have German tool-tips, you will just have to change the last line to
var pbcBtnTips:Array = pbcBtnTips_DEU;
But if you want to have tool-tip for a different language say Hindi, you’ll have to create a new array say pbcBtnTips_HIN before the last line as
var pbcBtnTips_HIN:Array = new
Array("Rewind ", //rewind button Tool-tip
"Back ", //back button tool-tip
"Play ", //play button Tool-tip
"Pause ", //pause button Tool-tip
"Forward ", //forward button Tool-tip
"Closed Captioning ", //CC button Tool-tip
"Audio On ", //Audio on button Tool-tip
"Audio Off ", //audio off button Tool-tip
"Exit ", //exit button Tool-tip
"Information ", //info button Tool-tip
"dummy for scratch bar ", //this is a dummy entry
"Table of Contents ", //TOC button Tool-tip
"2x Fast Forward Speed ", //2xFF button Tool-tip
"4x Fast Forward Speed ", //4xFF button Tool-tip
"Normal Speed ", //1x button Tool-tip
"Print"); //print button Tool-tip
And change the last line to
var pbcBtnTips:Array = pbcBtnTips_HIN;
Here you will have to make sure that the order of the elements in the array remains the same.
Save these changes and publish the swf file to “installation Folder\gallery\playbackControls\swfBars\as2” folder for as2 play-bar and to “installation Folder\gallery\playbackControls\swfBars\as3” for As3 playbar.
After doing this, start the captivate
Go to skin dialog, you should see name of the swf file, which was published, in the play-bar dropdown box. When this entry is selected, the tool-tip text s/he entered in the array will be shown.

Comments
Hi Sunil,
You mention:
For Localizing play-bar you will need to have Adobe Flash.
Do you mean the software to create a flash video or just the flash player?
I don't have an Adobe Flash creator... :(
Cheers,
Chris
Posted by: Chris @ Atrivision | March 10, 2009 7:56 PM
@Chris,
Adobe Flash is a product from Adobe.
the latest version is Adobe Flash CS4
please follow this link to know more about it.
http://www.adobe.com/products/flash/?promoid=BPDEE
Posted by: Sunil Muthiyan | March 12, 2009 2:30 PM
hi sunil..my exit button on the playbar nevers seems to work. any suggestions
Posted by: harry | April 1, 2009 6:57 AM
@Harry
As far as i know, exit button works.
I would like to know more about the issue. It will be great if you can send a demo file to me, so that I can analyse it and give you some pointers.
you can send me it on my mail ID, muthiyan@adobe.com
Posted by: Sunil Muthiyan | April 1, 2009 11:54 AM
How can you change the order of the icons along the playbar?
Posted by: Rod | April 16, 2009 10:42 PM
@Rod,
No, you can not change the order of the icons along the playbar.
Posted by: Sunil Muthiyan | April 24, 2009 11:16 AM