//@AutoInstall // This tool simulates a cross hair cursor that // is as large as the image. // Change the color by double clicking on the // rectangle tool icon. This tool requires ImageJ // 1.53c or later, which adds support for 24x24 // tool icons. macro "Big Cursor Tool -C037N44L0bnbLb0bn" { button = 16; w = getWidth(); h = getHeight(); px = newArray(6); py = newArray(6); do { getCursorLoc(x, y, z, flags); px[0]=0; py[0]=y; px[1]=w; py[1]=y; px[2]=x; py[2]=y; px[3]=x; py[3]=0; px[4]=x; py[4]=h; px[5]=x; py[5]=y; makeSelection("polgon", px, py); showStatus(x+","+y); wait(20); } while (flags&button!=0); }