Other Platforms
From G2Image
The support forum for G2Image on other platforms is here.
[edit] Other Platform setup
- If you are not using WordPress, Drupal, or Joomla!, see the TinyMCE documentation at http://tinymce.moxiecode.com/tinymce/docs/index.html for details on adding plugins and buttons.
- Basically, you'll need to find the file that is initializing TinyMCE for your installation. It should have a tinyMCE.init function like the one below (but probably much more complicated). You'll need to add g2image to the plugins and buttons areas:
- tinyMCE.init({
- theme : "advanced",
- mode : "textareas",
- plugins : "g2image",
- theme_advanced_buttons3_add : "g2image"
- });
- tinyMCE.init({
- There is also information on including Gallery2 Image Chooser in your application without using TinyMCE on the Developers Notes page.

