Wordpress TinyMCE editor turns white on Biographical info - tinymce

I tried out the solution found here: https://wordpress.stackexchange.com/questions/33552/how-to-use-tinymce-for-user-biographical-info-without-messing-with-any-core-fi/33575#33575 and added it to my plugin code.
The problem is, it turns the editor white
How do I make it show up?

So I decided to use this plugin instead:
http://wordpress.org/extend/plugins/visual-biography-editor/
It will make the description textarea get the same editor as the wordpress post/page editor.
Hope this helps anyone who passes by!
John

Related

Adding Line Height Drop Down to Tiny MCE Editor Tool Bar

We are using BlogEngine.Net for managing blog posts which has implemented version “3.9.2” of Tiny MCE Editor.
As per our requirement we want to add new control (dropdown) in tool bar of the editor to provide this line height option so that author of the blog post could set line height to any of the selected paragraphs. We even find a related link for this http://fiddle.tinymce.com/jAbaab but it didn’t work for me.
Can someone please help me on this?
Take a closer look at the way the style plugin works that gets shipped with Tinymce3. You can copy the plugin directory and apply your own changes there.
All you need to to is to get rid of the unwanted funtionality and rename the plugin (directory and in the code).
This TinyMCE plugin can help you.
https://github.com/castler/tinymce-line-height-plugin
Download and place it into your tinymce plugin folder.
It supports TinyMCE 4.

Editing the font and style of the text in the instructions box in MIT Scratch project page

The problem: How do I change the font in the instruction text box in an MIT Scratch project page. For example: make a line of text standout in bold. I believe it maybe done through editing the html code that is behind the box as I found a read only editor button that displays the code for the box. Unlike say a cell in Ipython you cannot simply surround text with tags. It seems such a simple problem but I have not found the solution yet.
Sorry, you can't do it.
The only thing you can do is to search for special font-characters and paste them in the Instruction text-box
For a day or two fairly recently this was allowed from a bug, but that bug was fixed and it's now impossible.
It's possible to change the HTML code, but that changes would only seen by you, and nobody else. There isn't a way to do it.

TinyMCE editor inside a TinyMCE Plugin

I am creating a plugin for TinyMCE, which is basically a form that has a textarea in it. I want the user to be able to input formatted text in that textarea, using the TinyMCE editor. The problem is that I'm not able to 'enrich' the textarea element inside the dialog.htm file in any way. Does there exist a way to do such a thing?
Thanks in advance,
Tomor
I found a quick fix. I managed to put the editor in an iframe, following the suggestion in this post:
http://www.tinymce.com/forum/viewtopic.php?pid=84668#p84668
It seems a bit messy, but it works.

How can I open a TinyMce advimage plugin from outside of the editor?

I want to launch the advimage plugin from outside of the TinyMCE editor (i.e. just a browse button on my page).
Is this possible? If so, how?
Thanks
Ah sorry about that assumed the commercial image manager,
You can use
[Image]
or
[Image]
This requires tinymce to be loaded somewhere though. Its not a full answer but at least wanted to replace my other one with a closer to correct answer.

How to disable drag and drop event into the tinymce editor

I want to disable drag and drop text and image into the tinymce Editor (textarea). I tried to search on the web and still cannot find the working answer. Can anyone please provide me the snippet that i can work around ? Thanks much.
Anyone ? :(
This should be possible using the paste plugin. The paste_block_drop option should do just what you want.