|
秀丸担当さん今日は、Iranoan です。
//------------------------------------------------------------
setcompatiblemode 0x0200;
gofiletop;
insertfix "AAAAAAAAAAAA\n";
setsearch "[A-Za-z]+", 0x10;
finddown2;
//若しくは searchdown2 "[A-Za-z]+", regular;
//------------------------------------------------------------
は問題無いです。しかし
//------------------------------------------------------------
setcompatiblemode 0x0200;
gofiletop;
insert "AAAAAAAAAAAA\n";
movetolineno 5, 1;
searchdown2 "[A-Za-z]+", regular;
##endx = foundendx;
##endy = foundendy;
while( 1 ){
findup;
if(
##endx != foundendx || ##endy != foundendy ||//範囲が変わった
( foundtopx == 0 && foundtopy == 0 )//ファイル先頭
)break;
}
finddown2;//若しくは searchdown2 "[A-Za-z]+", regular;
message str( foundtopx );
message str( seltopx );
//------------------------------------------------------------
の結果がおかしいです。
//------------------------------------------------------------
setcompatiblemode 0x0100;
//------------------------------------------------------------
とした時の foundtopx は問題ありません。
こちらの環境は、WindowsXP+IE7.0+秀丸 Ver.7.11b02 です。
|
|