﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
872	Way to show toobar button text	glerma@…		"I have a requirement to include text on certain toolbar
buttons. In this case, we are talking about the
'Image' button.


I attempted to display the optional icon context menu
text by doing the following.

1. Edited : _source\internals\fcktoolbaritems.js

Changed line:

{{{
case 'Image' : oItem = new FCKToolbarButton(
'Image' , FCKLang.InsertImageLbl, FCKLang.InsertImage
) ; break ;
}}}


to:

{{{
case 'Image' : oItem = new FCKToolbarButton(
'Image' , FCKLang.InsertImageLbl,
FCKLang.InsertImage, null, FCK_TOOLBARITEM_ICONTEXT,
true, true ) ; break ;
}}}



2. Edited editor\lang\en.js

Edited the following lines to accommidate my text

{{{
requirements.
InsertImage : ""Insert/Edit Image"",
}}}


3. Re-ran packager.

4. Posted new code.

This did not work.


To get this icon to display the text properly, I did
the following:
1. Edited : _source\internals\fcktoolbaritems.js

Commented line:

{{{
//case 'Image' : oItem = new FCKToolbarButton(
'Image' , FCKLang.InsertImageLbl, FCKLang.InsertImage
) ; break ;

}}}

2. Edited editor\lang\en.js

Added

{{{
Image : ""Insert Image"",

}}}


3. Re-ran packager.

4. Posted new code.

This works.


Please investigate and correct as a default setting if
possible.

Thanks and regards,
George Lerma
----
Moved from SF:[[BR]]
http://sourceforge.net/tracker/index.php?func=detail&aid=1456446&group_id=75348&atid=543656"	New Feature	closed	Normal		UI : Toolbar		worksforme	SF	
