I've done it now with this init call. It places all the functions that I want to use in 1 row.
<!-- tinyMCE -->
<script language="javascript" type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
mode : "textareas",
theme : "advanced",
plugins : "advhr,advimage,advlink,emotions,iespell,preview,flash",
theme_advanced_buttons1_add : "forecolor,bullist,numlist,separator,outdent,indent,separator,link,unlink,separator,image,emotions,charmap,flash,table,hr,separator,cleanup,removeformat,code,iespell,separator,preview,help",
theme_advanced_toolbar_location : "top",
theme_advanced_disable : "strikethrough,visualaid,anchor,zoom,table,row_before,row_after,delete_row,separator,col_before,col_after,delete_col,bullist,numlist,outdent,indent,undo,redo,link,unlink,anchor,image,cleanup,help,code,preview,sub,sup,separator,charmap,removeformat,visualaid,hr,formatselect",
content_css : "../style.css",
plugin_insertdate_dateFormat : "%Y-%m-%d",
plugin_insertdate_timeFormat : "%H:%M:%S",
extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],font[face|size|color],hr[class|width|size|noshade]"
});
</script>
<!-- /tinyMCE -->
There will probably be a better way, but this works for now...