I don't know if it is a bug or a security restriction in Chrome - but the copy and the cut buttons are disabled in my version of Chrome (v14) - I am using CKEditor 3.6.2
Anybody know which of the two is the case?
Anybody know which of the two is the case?

Re: Copy and Cut toolbar actions disabled in Chorme
Development
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: Copy and Cut toolbar actions disabled in Chorme
Re: Copy and Cut toolbar actions disabled in Chorme
Re: Copy and Cut toolbar actions disabled in Chorme
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: Copy and Cut toolbar actions disabled in Chorme
https://dev.ckeditor.com/ticket/8463
Re: Copy and Cut toolbar actions disabled in Chorme
This is the stateFromNamedCommand function that I now have in plugin.js:
function stateFromNamedCommand(command, editor) { // IE Bug: queryCommandEnabled('paste') fires also 'beforepaste(copy/cut)', // guard to distinguish from the ordinary sources( either // keyboard paste or execCommand ) (#4874). CKEDITOR.env.ie && (depressBeforeEvent = 1); var retval = CKEDITOR.TRISTATE_OFF; try { retval = editor.document.$.queryCommandEnabled(command) || CKEDITOR.env.webkit && editor.getSelection().getRanges()[0].startOffset != editor.getSelection().getRanges()[0].endOffset ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED; } catch (er) { } depressBeforeEvent = 0; return retval; }Re: Copy and Cut toolbar actions disabled in Chorme
Re: Copy and Cut toolbar actions disabled in Chorme
Re: Copy and Cut toolbar actions disabled in Chorme
Attachments:
Re: Copy and Cut toolbar actions disabled in Chorme
So we have same version of Chrome.
Screenshot of my editor attached. Buttons look a bit different, are you using a PC or a Mac?
Attachments:
Re: Copy and Cut toolbar actions disabled in Chorme
Yes - the buttons enable/disable.(here disabled)
Attachments:
Re: Copy and Cut toolbar actions disabled in Chorme
Windows Xp sp3