I want to set regular explession directly into search window, but
searchParams doesnt work properly.

When the cursor is in "Code window" and run this extension,
window checks
"Regular oxpression" ON,
"Find" field is empty and
"Search Source" is TEXT

Do You know where is the mistake?
On DRWM MX it works fine
Thanx
PEPP

<html>
<head>
<script language="JavaScript">
function canAcceptCommand(){
return true;
}
function myFce(){
var searchParams = {
searchString: 'regular.*',
searchSource: true,
useRegularExpressions: true
};
dreamweaver.setUpFind(searchParams);
dreamweaver.canFindNext();
dreamweaver.showFindDialog();

}
</script>
<title>title</title>
</HEAD>
<BODY onLoad="myFce()"></BODY>
</HTML>