Found a slight error. On line 111, you check sExt != mov when it should be ".mov" (notice the dot). This prevents mov files from being properly detected, and thus embedded.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
fckEmbedMovies version 0.1
Logged In: YES
user_id=1541130
I have to put some code in the fckconfig.js?? How do i
config this script??
Thanks
Logged In: YES
user_id=1928179
Originator: NO
hola:
Para instalarlo agregar esto a fckconfig.js:
FCKConfig.Plugins.Add( 'fckEmbedMovies') ;
en el menu:
['EmbedMovies´]
modificar fckplugin.js:
// Register the related commands.
FCKCommands.RegisterCommand(
'EmbedMovies',
new FCKDialogCommand(
'EmbedMovies',
FCKLang["EmbedMoviesDlgTitle"],
FCKPlugins.Items['fckEmbedMovies'].Path + 'fck_embedmovies.html',
450,
370
)
);
alert ("llegue");
// Create the "EmbedMovies" toolbar button.
// FCKToolbarButton( commandName, label, tooltip, style, sourceView, contextSensitive )
var oEmbedMoviesItem = new FCKToolbarButton( 'EmbedMovies', FCKLang["EmbedMoviesBtn"], FCKLang["EmbedMoviesTooltip"], null, false, true );
oEmbedMoviesItem.IconPath = FCKConfig.PluginsPath + 'fckEmbedMovies/embedmovies.gif';
// 'EmbedMovies' is the name that is used in the toolbar config.
FCKToolbarItems.RegisterItem( 'EmbedMovies', oEmbedMoviesItem );
Hello:
hola:
for instal add this in fckconfig.js:
FCKConfig.Plugins.Add( 'fckEmbedMovies') ;
in the menu:
['EmbedMovies´]
modify fckplugin.js:
// Register the related commands.
FCKCommands.RegisterCommand(
'EmbedMovies',
new FCKDialogCommand(
'EmbedMovies',
FCKLang["EmbedMoviesDlgTitle"],
FCKPlugins.Items['fckEmbedMovies'].Path + 'fck_embedmovies.html',
450,
370
)
);
// Create the "EmbedMovies" toolbar button.
// FCKToolbarButton( commandName, label, tooltip, style, sourceView, contextSensitive )
var oEmbedMoviesItem = new FCKToolbarButton( 'EmbedMovies', FCKLang["EmbedMoviesBtn"], FCKLang["EmbedMoviesTooltip"], null, false, true );
oEmbedMoviesItem.IconPath = FCKConfig.PluginsPath + 'fckEmbedMovies/embedmovies.gif';
// 'EmbedMovies' is the name that is used in the toolbar config.
FCKToolbarItems.RegisterItem( 'EmbedMovies', oEmbedMoviesItem );
Thank's & bye !!!
Logged In: YES
user_id=1371356
Originator: NO
Do the movies play or even show within the Fckeditor itself or only on the resulting page?
hi, mrlobo2,
I found your EmbedMovies plugin for FCKeditor at:
https://sourceforge.net/tracker/?func=detail&aid=1510783&group_id=75348&atid=737639
But I can't install it onto my FCKeditor v2.6.4.
Maybe that plugin is too old (file date 2006) to be compatible with latest FCKeditor?
Will you continue to improve this plugin?
Could you please give me some help to install it?
Thank you very much!
baijianpeng
http://www.joomlagate.com
Hello,
i have edited the plugin to fully work with fckeditor 2.5 and 2.6
you can download it at :
http://rapidshare.com/files/257911190/plugin.zip
to install follow these steps:
1-
edit the file:
FCKeditorfolder/fckconfig.js
add the following at the end of the file and save:
FCKConfig.Plugins.Add( 'EmbedMovies','en') ;
=================================
2-
upload the folder /EmbedMovies
to /FCKeditorfolder/editor/plugins/
=================================
U R done
Enjoy!
Found a slight error. On line 111, you check sExt != mov when it should be ".mov" (notice the dot). This prevents mov files from being properly detected, and thus embedded.