|
absincさん,
データ全体の仕様が不明な点がありますが,とりあえず以下のマクロで試して
ください。
//-------------------------------------//
setcompatiblemode 0x00020200;
$ax = input("Xの加算数");
if( result == 0 ) endmacro;
$ay = input("Yの加算数");
if( result == 0 ) endmacro;
#ax = val($ax);
#ay = val($ay);
disabledraw;
gofiletop;
while( 1 ) {
searchdown "(?<=X)\\d+", regular;
if( !result ) break;
$x = gettext( seltopx, seltopy, selendx, selendy, 1 );;
#x = val($x) + #ax;
insert str(#x);
searchdown "(?<=Y)\\d+", regular;
$y = gettext( seltopx, seltopy, selendx, selendy, 1 );;
#y = val($y) + #ay;
insert str(#y);
}
message "終わり";
endmacro;
//-------------------------------------//
山紫水明
SANSHISUIMEI
|
|