How can i hide General tab on media plugin, tinymce - tinymce

I'm trying to use only embedded code to show videos and disable video upload option from tinymce media plugin. So i need to hide "General" tab on the media dialog.
I saw a similar question is asked in tinymce also but unanswered. Is there someone who has done this?

Related

Tinymce - How to let the user know the shortcuts

How can we let the user know the list of shortcuts in Tinymce editor. I am doing a 508 compliant website so it should be keyboard accessible as well as the shortcuts should be play as announcement when getting focus for the blind people. Egs: If I want to use the keyboard shortcuts, the user should know that rt? One solution is to list out all shortcuts in the web page itself. Is there other option build in tinymce?
If you load the help plugin you will see a Help menu which provides access to a dialog that contains a list of the keyboard shortcuts:

Clickable link in active editor

If I add a link to the active editor either by using the menu/context menu or by simply typing a URL (e.g., http://www.google.com), the link is added but it is not immediately clickable. The only way a user can use the link to navigate to a page is by ctrl-clicking and choosing to open in a new tab. If the editor is in read-only mode then it works as intended but not when the editor is active.
Is there a way to make links clickable in an active editor?
thnx,
Christoph
TinyMCE will not (by default) make the link clickable. You can right click on the link and a context menu appears. In that menu is an option to open the link. To modify a link one needs to click on it (select it) in TinyMCE. If that act (clicking) opened the link you would not be able to easily select the link to act upon it in the editor.

Is there a way to search/filter properties in Styles pane of Google Devtools?

On the Elements tab 'Find' functionality (cmd+F/ctrl+F) doesn't search through styles pane. Is there a way to type CSS property with HTML element selected and find it quickly in the Styles panel?
Bottom right corner, light gray text says "Find in styles". Click there and enter your search.
Unfortunately, such functionality does not exist in current Chrome Dev Tools.
But its present in Opera Dragonfly and its very handy, so, probably Chrome will copy it, eventually (but no such feature request exists in bug tracker now).
On the latest Chrome on Mac, I'm getting the filter at the top of the styles pane. I can't believe that I never noticed it given that I've needed it so many times!
Try using CTRL+Shif+F on the Elements tab

ckeditor 4, versioning

I would like to know if it is possible give the possibility to load a previous version of the current content through a button in the toolbar.
The different versions of content are stored in a database.
The ideal behavior would be that clicking on the button in the toolbar, a popup dialog opens with a list of previous versions of the content. On click, the selected content is loaded into the editor.
I'm using php and mysql.
You have to implement a custom plugin that by ajax get the versions:
Creating a CKEditor Plugin with a Custom Dialog Window
CKEDITOR Plugin SDK

How can I know when an icon is clicked using tinymce editor?

How can I know when an icon is clicked using tinymce editor? Actually I am trying to solve the issue of multiple windows opening when we click multiple times to the jbimage plugin icon.
I want to make sure that when there is already an uploaded image window then the second popup should not appear.
Looks like you will have to adjust the plugin code and decide this case using a variable you set to true when the popup opens and reset it when the popup is being closed.