I am developing a plugin for video embedding, I put this code when the plugin dialog OK button is clicked.
embedCode = '<iframe title="YouTube video player" class="youtube-player" type="text/html" width="'+width+'" height="'+height+'" src="http://www.youtube.com/embed/'
+ textField
+'?rel=0" frameborder="0" width="620" height="200" style="width:'+width+'px; height:'+height+'px"></iframe>';
this.getParentEditor().insertHtml(embedCode);
Now when double click on the iframe in the editor open the iframe properties dialog not my plugin dialog.
How I can develop a fake image for my custom plugin.