Skip to content
Snippets Groups Projects
TinyMCE_Control.html 36 KiB
Newer Older
  • Learn to ignore specific revisions
  • 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd">
    <!--NewPage-->
    <HTML>
    <HEAD>
    <TITLE>
    TinyMCE_Control
    </TITLE>
    <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
    </HEAD>
    <SCRIPT>
    function asd()
    {
    parent.document.title="TinyMCE_Control";
    }
    </SCRIPT>
    <BODY BGCOLOR="white" onload="asd();">
    
    <!-- ========== START OF NAVBAR ========== -->
    <A NAME="navbar_bottom"><!-- --></A>
    <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
    <TR>
    <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
    <A NAME="navbar_bottom_firstrow"><!-- --></A>
    <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
      <TR ALIGN="center" VALIGN="top">
      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">  <A HREF="overview-summary-TinyMCE_Control.class.js.html"><FONT CLASS="NavBarFont1"><B>File</B></FONT></A>&nbsp;</TD>
      <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev">&nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
      <!--TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"-->    <!--A HREF="deprecated-list.html"--><!--FONT CLASS="NavBarFont1">Deprecated</FONT--><!--/A--><!--&nbsp;</TD-->
      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="index-all.html"--><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
      <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
      </TR>
    </TABLE>
    </TD>
    <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
    <B></B>
    </EM>
    </TD
    </TR>
    
    <TR>
    <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
    &nbsp;<A HREF="TinyMCE_Cleanup.html"><B>PREV CLASS</B></A><!-- 
       NEXT CLASS 
    -->
    &nbsp;<A HREF="TinyMCE_Engine.html"><B>NEXT CLASS</B></A></FONT></TD>
    <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
      <A HREF="index.html" TARGET="_top"><B>FRAMES</B></A>  &nbsp;
    &nbsp;<A HREF="TinyMCE_Control.html" TARGET="_top"><B>NO FRAMES</B></A>  &nbsp;
    &nbsp;
    <SCRIPT>
      <!--
      if(window==top) {
        document.writeln('<A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>');
      }
      //-->
    </SCRIPT>
    <NOSCRIPT>
    <A HREF="allclasses-noframe.html" TARGET=""><B>All Classes</B></A>
    </NOSCRIPT>
    </FONT></TD>
    </TR>
    <TR>
    <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
      SUMMARY:&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
    <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
    DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
    </TR>
    </TABLE>
    <!-- =========== END OF NAVBAR =========== -->
    <HR>
    
    <!-- ======== START OF CLASS DATA ======== -->
    <H2>Class TinyMCE_Control</H2>
    <PRE>Object
       |
       +--<b>TinyMCE_Control</b>
    </PRE>
    
    
    <HR>
    <DL>
       <!-- Class definition -->
       <DT>class 
       <B>TinyMCE_Control</B>
       
    
    </DL>
       
       <P>
       <I>Defined in <a href='overview-summary-TinyMCE_Control.class.js.html'>TinyMCE_Control.class.js</a></I><BR/><BR/>
       </P>
       
       <HR>
    
    <!-- ======== NESTED CLASS SUMMARY ======== -->
    
    <!-- ======== END NESTED CLASS SUMMARY ======== -->
    
    
    <!-- =========== FIELD SUMMARY =========== -->
    
       <A NAME="field_summary"><!-- --></A>
          <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
             <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
                <TD COLSPAN=2><FONT SIZE="+2">
                   <B>Field Summary</B></FONT></TD>
             </TR>
    
       <!-- This is one instance field summary -->
       
       <TR BGCOLOR="white" CLASS="TableRowColor">
       <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
       <CODE>&nbsp;Object</CODE></FONT></TD>
       <TD><CODE><B><A HREF="#cleanup">cleanup</A></B></CODE>
       <BR>
       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
       </TR>
       
       <TR BGCOLOR="white" CLASS="TableRowColor">
       <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
       <CODE>&nbsp;Object</CODE></FONT></TD>
       <TD><CODE><B><A HREF="#hasMouseMoved">hasMouseMoved</A></B></CODE>
       <BR>
       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
       </TR>
       
       <TR BGCOLOR="white" CLASS="TableRowColor">
       <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
       <CODE>&nbsp;Object</CODE></FONT></TD>
       <TD><CODE><B><A HREF="#isTinyMCE_Control">isTinyMCE_Control</A></B></CODE>
       <BR>
       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
       </TR>
       
       <TR BGCOLOR="white" CLASS="TableRowColor">
       <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
       <CODE>&nbsp;Object</CODE></FONT></TD>
       <TD><CODE><B><A HREF="#plugins">plugins</A></B></CODE>
       <BR>
       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
       </TR>
       
       <TR BGCOLOR="white" CLASS="TableRowColor">
       <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
       <CODE>&nbsp;Object</CODE></FONT></TD>
       <TD><CODE><B><A HREF="#selection">selection</A></B></CODE>
       <BR>
       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
       </TR>
       
       <TR BGCOLOR="white" CLASS="TableRowColor">
       <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
       <CODE>&nbsp;Object</CODE></FONT></TD>
       <TD><CODE><B><A HREF="#settings">settings</A></B></CODE>
       <BR>
       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
       </TR>
       
       <TR BGCOLOR="white" CLASS="TableRowColor">
       <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
       <CODE>&nbsp;Object</CODE></FONT></TD>
       <TD><CODE><B><A HREF="#shortcuts">shortcuts</A></B></CODE>
       <BR>
       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
       </TR>
       
       <TR BGCOLOR="white" CLASS="TableRowColor">
       <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
       <CODE>&nbsp;Object</CODE></FONT></TD>
       <TD><CODE><B><A HREF="#undoRedo">undoRedo</A></B></CODE>
       <BR>
       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
       </TR>
       
       <TR BGCOLOR="white" CLASS="TableRowColor">
       <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
       <CODE>&nbsp;Object</CODE></FONT></TD>
       <TD><CODE><B><A HREF="#undoRedoLevel">undoRedoLevel</A></B></CODE>
       <BR>
       &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD>
       </TR>
       
    
       </TABLE>
       &nbsp;
       
    
       
    
    <!-- =========== END FIELD SUMMARY =========== -->
    
    
    <!-- ======== CONSTRUCTOR SUMMARY ======== -->
    
    <A NAME="constructor_summary"><!-- --></A>
    <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
    <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
    <TD COLSPAN=2><FONT SIZE="+2">
    <B>Constructor Summary</B></FONT></TD>
    </TR>
    <TR BGCOLOR="white" CLASS="TableRowColor">
       <TD>
          <CODE>
    	 <B>
    	    <A HREF="TinyMCE_Control.html#TinyMCE_Control()">TinyMCE_Control</A> 
    	 </B>
    	 (&lt;Array&gt; settings)
          </CODE>
          <BR>
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          This is the TinyMCE editor control instance class.
          </TD>
    </TR>
    </TABLE>
    
    <!-- ======== END CONSTRUCTOR SUMMARY ======== -->
    
    &nbsp;
    
    <!-- ========== METHOD SUMMARY =========== -->
    
    <A NAME="method_summary"><!-- --></A>
    <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
    <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
    <TD COLSPAN=2><FONT SIZE="+2">
    <B>Method Summary</B></FONT></TD>
    </TR>
    
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;void</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#addPlugin">addPlugin</A></B>(&lt;string&gt; n, p)
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Adds a plugin to the editor instance.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;boolean</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#addShortcut">addShortcut</A></B>(&lt;string&gt; m, &lt;Object&gt; k, &lt;string&gt; d, &lt;string&gt; cmd, &lt;boolean&gt; ui, &lt;Object&gt; va)
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Adds a keyboard shortcut to a specific command.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;void</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#autoResetDesignMode">autoResetDesignMode</A></B>()
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Auto resets the design mode of the document if it gets lost.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;Object</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#execCommand">execCommand</A></B>(&lt;string&gt; command, &lt;boolean&gt; user_interface, &lt;mixed&gt; value)
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Executes a command on the current instance.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;HTMLElement</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#getBody">getBody</A></B>()
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Returns the body element of a editor instance.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;DOMDocument</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#getDoc">getDoc</A></B>()
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Returns the DOM document of a editor instance.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;HTMLElement</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#getFocusElement">getFocusElement</A></B>()
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Returns the currently selected element.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;DOMRange</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#getRng">getRng</A></B>()
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Returns the browsers selections first range instance.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;DOMSelection</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#getSel">getSel</A></B>()
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Returns the browsers selection instance.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;Window</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#getWin">getWin</A></B>()
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Returns the window of a editor instance.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;boolean</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#handleShortcut">handleShortcut</A></B>(&lt;DOMEvent&gt; e)
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Executes shortcuts based on the event information.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;boolean</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#hasPlugin">hasPlugin</A></B>(&lt;string&gt; n)
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Returns true/false if the instance has the current plugin available.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;boolean</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#isDirty">isDirty</A></B>()
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Returns true/false if the editor instance is dirty or not.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;boolean</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#isHidden">isHidden</A></B>()
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Returns if the instance is hidden or not.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;boolean</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#queryCommandState">queryCommandState</A></B>(&lt;string&gt; c)
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Returns a command specific state, for example if bold is enabled or not.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;mixed</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#queryCommandValue">queryCommandValue</A></B>(&lt;string&gt; c)
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Returns a command specific value, for example the current font size.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;void</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#repaint">repaint</A></B>()
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Repaints the editarea in Gecko browsers.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;void</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#setBaseHREF">setBaseHREF</A></B>(&lt;string&gt; u)
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Sets the base href url of the current document instance.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;void</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#switchSettings">switchSettings</A></B>()
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Switches the global TinyMCE settings to the current instance settings.
          </TD>
       </TR>
    
       <TR BGCOLOR="white" CLASS="TableRowColor">
          <TD ALIGN="right" VALIGN="top" WIDTH="1%">
    	 <FONT SIZE="-1">
    	    <CODE>&nbsp;void</CODE>
    	 </FONT>
          </TD>
          <TD>
    	 <CODE>
    	    <B>
    	       <A HREF="#triggerSave">triggerSave</A></B>(&lt;boolean&gt; skip_cleanup, &lt;boolean&gt; skip_callback)
    	 </CODE>
    	 <BR>
    	 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    	 Moves the contents from the TinyMCE editor control instance to the hidden textarea
     that got replaced with TinyMCE.
          </TD>
       </TR>
    
    
    </TABLE>
    
    
    
    <P>
    <!-- ========== END METHOD SUMMARY =========== -->
    
    
    <!-- ============ FIELD DETAIL START =========== -->
    
       <A NAME="field_detail"><!-- --></A>
       <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
          <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
             <TD COLSPAN=1><FONT SIZE="+2"><B>Field Detail</B></FONT></TD>
          </TR>
       </TABLE>
    
       
       <A NAME="cleanup"><!-- --></A>
       <H3>cleanup</H3>
       <PRE>Object&nbsp;<B>cleanup</B></PRE>
       <UL>
       
       
       </UL>
       <HR>
       
       <A NAME="hasMouseMoved"><!-- --></A>
       <H3>hasMouseMoved</H3>
       <PRE>Object&nbsp;<B>hasMouseMoved</B></PRE>
       <UL>
       
       
       </UL>
       <HR>
       
       <A NAME="isTinyMCE_Control"><!-- --></A>
       <H3>isTinyMCE_Control</H3>
       <PRE>Object&nbsp;<B>isTinyMCE_Control</B></PRE>
       <UL>
       
       
       </UL>
       <HR>
       
       <A NAME="plugins"><!-- --></A>
       <H3>plugins</H3>
       <PRE>Object&nbsp;<B>plugins</B></PRE>
       <UL>
       
       
       </UL>
       <HR>
       
       <A NAME="selection"><!-- --></A>
       <H3>selection</H3>
       <PRE>Object&nbsp;<B>selection</B></PRE>
       <UL>
       
       
       </UL>
       <HR>
       
       <A NAME="settings"><!-- --></A>
       <H3>settings</H3>
       <PRE>Object&nbsp;<B>settings</B></PRE>
       <UL>
       
       
       </UL>
       <HR>
       
       <A NAME="shortcuts"><!-- --></A>
       <H3>shortcuts</H3>
       <PRE>Object&nbsp;<B>shortcuts</B></PRE>
       <UL>
       
       
       </UL>
       <HR>
       
       <A NAME="undoRedo"><!-- --></A>
       <H3>undoRedo</H3>
       <PRE>Object&nbsp;<B>undoRedo</B></PRE>
       <UL>
       
       
       </UL>
       <HR>
       
       <A NAME="undoRedoLevel"><!-- --></A>
       <H3>undoRedoLevel</H3>
       <PRE>Object&nbsp;<B>undoRedoLevel</B></PRE>
       <UL>
       
       
       </UL>
       <HR>
       
    
    
    <!-- ============ FIELD DETAIL END =========== -->
    
        <!-- ========= CONSTRUCTOR DETAIL START ======== -->
    
    <A NAME="constructor_detail"><!-- --></A>
    <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
       <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
          <TD COLSPAN=1>
          <FONT SIZE="+2"><B>Constructor Detail</B></FONT>
          </TD>
       </TR>
    </TABLE>
    
    <A NAME="TinyMCE_Control()"><!-- --></A><H3>
    TinyMCE_Control</H3>
    <PRE><B>TinyMCE_Control</B>(&lt;Array&gt; settings)</PRE>
    
    
    <UL>
       This is the TinyMCE editor control instance class. A instance of this class will is made for each
     converted text area.
    </UL>
    
    
    
       <UL>
       <B>Parameters:</B>
       
         <UL><CODE>settings</CODE> -  Name/Value array of instance specific configuration settings.
         </UL>
       
       
       </UL>
    
    
    <!-- Constructor return value(s) -->
    
    <!-- End constructor return value(s) -->
    
    <!-- ADDITIONAL ATTRIBUTES -->
    
    <HR/>
    <!-- END ADDITIONAL ATTRIBUTES  -->
    
    <!-- ========= CONSTRUCTOR DETAIL END ======== -->
    
    
    <!-- ============ METHOD DETAIL START ========== -->
    
    <A NAME="method_detail"><!-- --></A>
    <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
       <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
          <TD COLSPAN=1><FONT SIZE="+2">
             <B>Method Detail</B></FONT>
          </TD>
       </TR>
    </TABLE>
    
    <!-- One single method detail entry -->
    
       <A NAME="addPlugin"><!-- --></A>
       <H3>addPlugin</H3>
       <PRE>void <B>addPlugin</B>(&lt;string&gt; n, p)</PRE>
       
          <UL>Adds a plugin to the editor instance. This will also add it globaly.</UL>
       
    
       <!-- METHOD PARAMETERS START -->
       
       <UL>
       <B>Parameters:</B>
       
         <UL><CODE>n</CODE> -  Plugin name to check for.  
          </UL> 
       
         <UL><CODE>n</CODE> -  TinyMCE plugin instance. 	   
          </UL> 
       
       </UL>
       
       <!-- METHOD PARAMETERS END -->
    
       
    
       <!-- ADDITIONAL ATTRIBUTES START -->
       
       <!-- ADDITIONAL ATTRIBUTES  END -->
    <HR>
    
       <A NAME="addShortcut"><!-- --></A>
       <H3>addShortcut</H3>
       <PRE>boolean <B>addShortcut</B>(&lt;string&gt; m, &lt;Object&gt; k, &lt;string&gt; d, &lt;string&gt; cmd, &lt;boolean&gt; ui, &lt;Object&gt; va)</PRE>
       
          <UL>Adds a keyboard shortcut to a specific command. These shortcuts can for example be added
     at the initInstance callback of a plugin. The shortcut description can be a language variable name
     or a string describing the function. If you don't specify a command, the shortcut will simply be a blocker
     shortcut. This enables you to remove built in shortcuts or remove theme specific shortcuts from a plugin.<br />
     Example shortcut inst.addShortcut('ctrl,alt', 'k', 'mceSomeCommand', false, 'somevalue');
     Example blocker inst.addShortcut('ctrl,alt', 'k');</UL>
       
    
       <!-- METHOD PARAMETERS START -->
       
       <UL>
       <B>Parameters:</B>
       
         <UL><CODE>m</CODE> -  List of shortcut modifiers keys, for example "ctrl,alt".  
          </UL> 
       
         <UL><CODE>k</CODE> -  Shortcut key char for example "s" or a keycode value "13".  
          </UL> 
       
         <UL><CODE>d</CODE> -  Optional Shortcut description, this will be presented in the about dialog.  
          </UL> 
       
         <UL><CODE>cmd</CODE> -  Optional Command name to execute, for example mceLink or Bold.  
          </UL> 
       
         <UL><CODE>ui</CODE> -  Optional True/false state if a UI (dialog) should be presented or not.  
          </UL> 
       
         <UL><CODE>va</CODE> -  Optional command value, this can be anything.  
          </UL> 
       
       </UL>
       
       <!-- METHOD PARAMETERS END -->
    
       
       <UL>
       <B>Returns:</B>
            <UL>
            true/false if the shortcut was added or not   
            </UL>
       </UL>
       
    
       <!-- ADDITIONAL ATTRIBUTES START -->
       
       <!-- ADDITIONAL ATTRIBUTES  END -->
    <HR>
    
       <A NAME="autoResetDesignMode"><!-- --></A>
       <H3>autoResetDesignMode</H3>
       <PRE>void <B>autoResetDesignMode</B>()</PRE>
       
          <UL>Auto resets the design mode of the document if it gets lost.
     This is a Gecko specific function since it's a workaround for a bug where Gecko browsers
     loose the designMode state if the editor is hidden and shown in a tab or div.</UL>
       
    
       <!-- METHOD PARAMETERS START -->
       
       <!-- METHOD PARAMETERS END -->
    
       
    
       <!-- ADDITIONAL ATTRIBUTES START -->
       
       <!-- ADDITIONAL ATTRIBUTES  END -->
    <HR>
    
       <A NAME="execCommand"><!-- --></A>
       <H3>execCommand</H3>
       <PRE>Object <B>execCommand</B>(&lt;string&gt; command, &lt;boolean&gt; user_interface, &lt;mixed&gt; value)</PRE>
       
          <UL>Executes a command on the current instance. These commands can be TinyMCE internal commands prefixed with "mce" or
     they can be build in browser commands such as "Bold". A compleate list of browser commands is available on MSDN or Mozilla.org.
     This function will dispatch the execCommand function on each plugin, theme or the execcommand_callback option if none of these
     return true it will handle the command as a internal browser command.</UL>
       
    
       <!-- METHOD PARAMETERS START -->
       
       <UL>
       <B>Parameters:</B>
       
         <UL><CODE>command</CODE> -  Command name to execute, for example mceLink or Bold.  
          </UL> 
       
         <UL><CODE>user_interface</CODE> -  True/false state if a UI (dialog) should be presented or not.  
          </UL> 
       
         <UL><CODE>value</CODE> -  Optional command value, this can be anything.
          </UL> 
       
       </UL>
       
       <!-- METHOD PARAMETERS END -->
    
       
    
       <!-- ADDITIONAL ATTRIBUTES START -->
       
       <!-- ADDITIONAL ATTRIBUTES  END -->
    <HR>
    
       <A NAME="getBody"><!-- --></A>
       <H3>getBody</H3>
       <PRE>HTMLElement <B>getBody</B>()</PRE>
       
          <UL>Returns the body element of a editor instance.</UL>
       
    
       <!-- METHOD PARAMETERS START -->
       
       <!-- METHOD PARAMETERS END -->
    
       
       <UL>
       <B>Returns:</B>
            <UL>
            Body element of a editor instance.   
            </UL>
       </UL>
       
    
       <!-- ADDITIONAL ATTRIBUTES START -->
       
       <!-- ADDITIONAL ATTRIBUTES  END -->
    <HR>
    
       <A NAME="getDoc"><!-- --></A>
       <H3>getDoc</H3>
       <PRE>DOMDocument <B>getDoc</B>()</PRE>
       
          <UL>Returns the DOM document of a editor instance.</UL>
       
    
       <!-- METHOD PARAMETERS START -->
       
       <!-- METHOD PARAMETERS END -->
    
       
       <UL>
       <B>Returns:</B>
            <UL>
            DOM document of a editor instance.   
            </UL>
       </UL>
       
    
       <!-- ADDITIONAL ATTRIBUTES START -->
       
       <!-- ADDITIONAL ATTRIBUTES  END -->
    <HR>
    
       <A NAME="getFocusElement"><!-- --></A>
       <H3>getFocusElement</H3>
       <PRE>HTMLElement <B>getFocusElement</B>()</PRE>
       
          <UL>Returns the currently selected element. This is was added for compatiblity and is deprecated.
     Please use inst.selection.getFocusElement instead.</UL>
       
    
       <!-- METHOD PARAMETERS START -->
       
       <!-- METHOD PARAMETERS END -->
    
       
       <UL>
       <B>Returns:</B>
            <UL>
            Currently selected element.   
            </UL>
       </UL>
       
    
       <!-- ADDITIONAL ATTRIBUTES START -->
       
       <UL>   
       <B>Deprecated</B> <I></I><BR/><BR/>
       </UL>
       
       <!-- ADDITIONAL ATTRIBUTES  END -->
    <HR>
    
       <A NAME="getRng"><!-- --></A>
       <H3>getRng</H3>
       <PRE>DOMRange <B>getRng</B>()</PRE>
       
          <UL>Returns the browsers selections first range instance. This is was added for compatiblity and is deprecated.
     Please use inst.selection.getRng instead.</UL>
       
    
       <!-- METHOD PARAMETERS START -->
       
       <!-- METHOD PARAMETERS END -->
    
       
       <UL>
       <B>Returns:</B>
            <UL>
            Browsers selections first range instance.   
            </UL>
       </UL>
       
    
       <!-- ADDITIONAL ATTRIBUTES START -->
       
       <UL>   
       <B>Deprecated</B> <I></I><BR/><BR/>
       </UL>
       
       <!-- ADDITIONAL ATTRIBUTES  END -->
    <HR>
    
       <A NAME="getSel"><!-- --></A>
       <H3>getSel</H3>
       <PRE>DOMSelection <B>getSel</B>()</PRE>
       
          <UL>Returns the browsers selection instance. This is was added for compatiblity and is deprecated.
     Please use inst.selection.getSel instead.</UL>
       
    
       <!-- METHOD PARAMETERS START -->
       
       <!-- METHOD PARAMETERS END -->
    
       
       <UL>
       <B>Returns:</B>
            <UL>
            Browser selection instance.   
            </UL>
       </UL>