• Hey , How i can , change the ” Send to Editor ” action of Uploading images to ” Send to Excerpt ” ?

    In uploading-js.php , i find the code , which send then image code to content ,

    var win = window.opener ? window.opener : window.dialogArguments;
                            if ( !win )
                                    win = top;
                            tinyMCE = win.tinyMCE;
    
     if ( typeof tinyMCE != 'undefined' && tinyMCE.getInstanceById('content') ) {
                                    tinyMCE.selectedInstance.getWin().focus();
                                    tinyMCE.execCommand('mceInsertContent', false, h);
                            } else
                                    win.edInsertContent(win.edCanvas, h);
                            if ( !this.ID )
                                    this.cancelView();
                            return false;

    tinyMCE.getInstanceById(‘content’) ” i can’t direct it to Excerpt Textarea at this file edit-form-advanced.php .

    How i can make ” Send to Excerpt “???

  • The topic ‘Sending The Uploading image to excerpt Textarea!!’ is closed to new replies.