Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/inc/lib/fckeditor/editor/plugins/Flash
Ivan Tcholakov 2372a21846 [svn r17806] FS#2867 - FCKEditor: Forcing Flash objects to work in introduction sections. 17 years ago
..
lang [svn r17147] FS#2867 - Empty index.html files everywhere within the directory structure of FCKEditor. 17 years ago
README.txt [svn r15985] FCKeditor languages and plugins added see FS#2528 18 years ago
button.flash.gif [svn r17255] FS#2867 - FCKEditor: Cosmetics, fixing some toolbar icons. 17 years ago
fck_flash.html [svn r17671] FS#2867 - FCKEditor, debugging for IE7: Fixing some javascript error. Flash dialog: making the flash previw to work. 17 years ago
fck_flash.js [svn r17806] FS#2867 - FCKEditor: Forcing Flash objects to work in introduction sections. 17 years ago
fckplugin.js [svn r17577] FS#2867 - FCKEditor: Resizing the dialogs. 17 years ago
index.html [svn r17147] FS#2867 - Empty index.html files everywhere within the directory structure of FCKEditor. 17 years ago

README.txt

This plugin was improved by Andrey Grebnev


I've taken Hernux's Flash patch [see 1] and turned it into a plugin for FCKeditor-2.0FC to make installing it easier.

Installation Instructions
1. Unzip the Flash plugin zip and paste it into "editor/plugins/"
2. In fckconfig.js make the following additions;
3. add the following line after where "FCKConfig.PluginsPath" is defined
FCKConfig.Plugins.Add("Flash", "en,ru");
4. Add 'Flash' to your toolsbarset in fckconfig.js. E.G.,

FCKConfig.ToolbarSets["Default"] = [
['Flash', 'Bold', 'Italic']
] ;

5. Add the Flash file browser config like so,

// Flash Browsing
FCKConfig.FlashBrowser = true ;
FCKConfig.FlashBrowserURL = FCKConfig.BasePath + "filemanager/browser/default/browser.html?Type=Flash&Connector=connectors/jsp/connector" ;
FCKConfig.FlashBrowserWindowWidth = screen.width * 0.7 ; //70% ;
FCKConfig.FlashBrowserWindowHeight = screen.height * 0.7 ; //70% ;

The FlashBrowserURL line will be slightly different depending on how you've configured your connector. Generally it's the same as your ImageBrowserURL except that the 'type=Image' should be 'type=Flash'

Please let me know if you experience any issues.


References
1 - Hernux Flash Patch [http://sourceforge.net/tracker/index.php?func=detail&aid=1051555&group_id=75348&atid=543655]
2 - Installing the FindReplace Plugin [https://sourceforge.net/forum/message.php?msg_id=2943394]