Questions tagged [tinymce-3]

TinyMCE is a powerful WYSIWYG editor control for web browsers such as MSIE or Mozilla that enables the user to edit HTML content in a more user friendly way.

TinyMCE is a powerful WYSIWYG editor control for web browsers such as MSIE or Mozilla that enables the user to edit HTML content in a more user friendly way. The editor control is very flexible and is built for integration purposes (usage within systems like intranets, content management systems (CMS), and learning management systems (LMS), for example).

TinyMCE is developed by Moxiecode Systems AB and is currently released under the LGPL License. Read the license agreement for details.

58 questions
2
votes
0 answers

Setting up Cloudinary plugin for TinyMCE

I am trying to follow the steps for setting up the Cloudinary plugin for TinyMCE text editor in Rails documented here: https://github.com/cloudinary/cloudinary_tinymce. This plugin replaces the image button of TinyMCE to allow you to add and…
XineCoulter
  • 121
  • 7
2
votes
0 answers

Unselectable html in tinymce editor3.x?

Above style is working fine in html, but when i used this in TinyMce editor…
2
votes
1 answer

In TinyMCE 4, editor.onBeforeSetContent.add() is deprecated, what to use instead?

I'm getting the following error in the console since I've upgraded from TinyMCE 3 to TinyMCE 4: Deprecated TinyMCE API call: .onBeforeSetContent.add(..) What should I use instead?
Community
  • 4,922
  • 7
  • 25
  • 37
2
votes
3 answers

TinyMCE4 equivalent of toolbar location external?

In TinyMCE 3 you can use theme_advanced_toolbar_location = 'external' in mce settings, making a class=mceExternalToolbar element. However, there doesn't seem to be an exact equivalent for TinyMCE 4. Am I missing something, or is an external toolbar…
NoBugs
  • 9,310
  • 13
  • 80
  • 146
1
vote
1 answer

How can i open a new blank windows with tinymce?

I found this code: ed.windowManager.open({ file: url + '/youtube.htm', width: 320 + parseInt(ed.getLang('example.delta_width', 0)), height: 120 + parseInt(ed.getLang('example.delta_height',…
tnsh2kl8
  • 11
  • 2
1
vote
1 answer

How to set default Font and Font Size in Tinymce3.0?

Not able to change default font and font size. I have tried different methods as following. content_style: "body { font-size: 14pt; font-family: Arial; }" this.getDoc().body.style.fontSize = '14px';
1
vote
1 answer

TinyMCE Paste from word not working properly

I have a problem with Paste From Word functionality. I have an editor and when I click the paste from word button it opens a popup with a textarea . I want to paste my text which contains simple text, an image () and a hyperlink. When I'm pasting…
PanosMR
  • 131
  • 1
  • 14
1
vote
1 answer

tinymce 3.x advlink plugin - set links to open in new window/tab by default

Using the advlink plugin, the default value for "target" is "_self" (i.e. links open in same window/tab). How can I make it so that links open in a new window/tab by default?
pazof
  • 944
  • 1
  • 12
  • 26
1
vote
0 answers

How to add custom shortcuts in tinyMCE 3.5

"Ctrl + A = Select All Ctrl + C = Copy Ctrl + V = Paste Ctrl + Z = Undo Ctrl+Shift+> =Increase Font Size Ctrl+Alt+> = Standard Size Ctrl+Shift+> = Increase Font size Ctrl+Shift+< = Decrease Font Size Ctrl+Shift+B = Bold Ctrl+Shift+I =…
nikhil
  • 33
  • 4
1
vote
1 answer

How to Customize TinyMCE HTML Output?

The theme for my site requires custom classes on HTML elements in order to display the styles properly (for example, the ul's need to have the class list-style). I can't change the style for all ul's because they are different on the site. I would…
theEpsilon
  • 1,800
  • 17
  • 30
1
vote
0 answers

on screen keyboard not visible on mobile with Editors like Tinymce

I have an issue with editors when writing comment from mobile devices that on touch start in iframe that generated from editor keyboard, not show I tried to console touch start event it's worked well in all page except…
Mohammad Fared
  • 588
  • 1
  • 7
  • 19
1
vote
0 answers

how to add custom bullets in tinymce 3.x

i want to add custom bullet points in my tinyMCE editor 3.x. i have done. advlist_bullet_styles: [ { title:'image bullet', styles:{ listStyleImage:"URL('URL of image')" } } ], but it not working it shows by default disc bullet and console have no…
Priti
  • 69
  • 5
1
vote
1 answer

TinyMCE Compatibiliy

I've developed a project during earlier years, which is based on "TinyMCE editor version 3.x". However, what is available at the moment on TinyMCE website is "TinyMCE editor version 4.x" Will my project, which is totally based on "TinyMCE editor…
1
vote
1 answer

TinyMCE 3 - textarea id which fired blur event

When a TinyMCE editor blur occurs, I am trying to find the element id (or name) of the textarea which fired the blur event. I also want the element id (or name) of the element which gains the focus, but that part should be similar. I'm getting…
richyz
  • 197
  • 1
  • 3
  • 12
1
vote
2 answers

How to allow some custom tag in tinymce editor

when i pest a html code inside tinymce editor my < figure> tag remove by this editor. how to allow this tag in tinymce editor.