Jennifer2010
06-04-2012, 04:49 PM
Hi everyone :)
You know the "Insert Image" button inside of the editor?
I have a big "UPLOAD IMAGES" button above the editor - separate, that I would like to call the same function to achieve the same result as clicking on the "Insert Image" button.
Any ideas?
Thank you so much!
Jennifer
--------------- Added 1338917372 at 1338917372 ---------------
I figured this out on my own. Here's the solution:
<span class="cke_button">
<input type="button" style="height: 30px; width: 100px; font-size: 14px; margin-top: 15px;" a id="cke_38" class="cke_off cke_button_vbimage" onclick="CKEDITOR.tools.callFunction(77, this); return false;" onfocus="return CKEDITOR.tools.callFunction(76, event);" onkeydown="return CKEDITOR.tools.callFunction(75, event);" onblur="this.style.cssText = this.style.cssText;" aria-labelledby="cke_38_label" hidefocus="true" tabindex="-1" value="Upload Images">
</a>
</span>
Place that in your newthread template in the right place and right above your thread title you'll see a big "Upload Images" button which calls the same function that the "Insert Image" button does inside of the thread editor.
You know the "Insert Image" button inside of the editor?
I have a big "UPLOAD IMAGES" button above the editor - separate, that I would like to call the same function to achieve the same result as clicking on the "Insert Image" button.
Any ideas?
Thank you so much!
Jennifer
--------------- Added 1338917372 at 1338917372 ---------------
I figured this out on my own. Here's the solution:
<span class="cke_button">
<input type="button" style="height: 30px; width: 100px; font-size: 14px; margin-top: 15px;" a id="cke_38" class="cke_off cke_button_vbimage" onclick="CKEDITOR.tools.callFunction(77, this); return false;" onfocus="return CKEDITOR.tools.callFunction(76, event);" onkeydown="return CKEDITOR.tools.callFunction(75, event);" onblur="this.style.cssText = this.style.cssText;" aria-labelledby="cke_38_label" hidefocus="true" tabindex="-1" value="Upload Images">
</a>
</span>
Place that in your newthread template in the right place and right above your thread title you'll see a big "Upload Images" button which calls the same function that the "Insert Image" button does inside of the thread editor.