Hi erslht,
Yes, I can reproduce this issue on firefox 7.1.
For now please use the code below to achieve the view tab when editor load.
I have reported this issue to the development team, once issue is resloved, I will keep your posted.
<?php require_once "cuteeditor_files/include_CuteEditor.php" ?>
<html>
<body>
<form id="form1" method="POST">
<?php
$editor=new CuteEditor();
$editor->Text="Type here";
$editor->ID="Editor1";
$editor->Draw();
?>
</form>
</body>
</html>
<script>
function CuteEditor_OnInitialized(editor)
{
editor.ExecCommand("TabView");
}
</script>
Regards,
Ken