|
>のとき、message で "int func()"と表示させたいのですが
>いいアイデアございませんでしょうか?
みなさん、難しく考えすぎ。(^^;
// prevfunc 上の強調行に移動
// nextfunc 下の強調行に移動
disabledraw;
##cx = x; ##cy = y;
prevfunc;
##cc = colorcode & 0x1f;
if( ##cc != 6 && ##cc != 9 ){
moveto ##cx, ##cy; beep; endmacro;
}
while( code < 0x21 ) right;
// while( code==0x09 || code==0x20 ) right;
// if( code==0x0d ){
// moveto ##cx, ##cy; beep; endmacro;
// }
beginsel; golineend2;
$$func = gettext( seltopx, seltopy, selendx, selendy );
moveto ##cx, ##cy; enabledraw;
message $$func;
endmacro;
ではでは。
|
|