1

Topic: custom button with selectbox and Full featured example

Hai everyone,

I have two questions
On the Full featured example I see when selecting an image a select box for the pictures.
Can I find this anywhere as an plugin ?

Second I want like on the advanced example some custom actions beneath the texarea but then in a dropdownbox so I can select some tags.

Did anyone made this already ? or give me a glue how to make this ?

Thanks for all the help and this great product. I have donated some money for the mac smile

2

Re: custom button with selectbox and Full featured example

Find it smile

<select id="<?php echo $FieldName; ?>" name="<?php echo $FieldName; ?>" onchange="tinyMCE.execCommand('mceInsertContent',false,this.options[this.selectedIndex].value);" class="mceSelectList">
<option value="0">-- tags --</option>
<option value="<b>Hello world!!</b>">[Insert some HTML]</option>
<option value="<b>Hello world!!2</b>">[Insert some HTML]2</option>
<option value="<b>Hello world!!3</b>">[Insert some HTML]3</option>
<option value="<b>Hello world!!4</b>">[Insert some HTML]4</option>
<option value="<b>Hello world!!5</b>">[Insert some HTML]5</option>
<option value="<b>Hello world!!6</b>">[Insert some HTML]6</option>
<option value="<b>Hello world!!7</b>">[Insert some HTML]7</option>
</select>

replace <?php echo $FieldName; ?> for your own id and name

This one works