// Action Bar description file :_Kalensbar
run("Action Bar","/plugins/ActionBar/_Kalensbar.txt");
exit();
run("Action Bar","/plugins/ActionBar/_Kalensbar.txt");
//imageJ array is zero ordered FYI
function ojQualifyApply(rowArray,flag){
for (i=0; i0){
ojQualify(rowArray[i], flag);
}
}
}
function goToOjnumAll(ojnum){
currentimage=ojImageLink();
firstoncurrentimage=ojFirstObject(currentimage);
zoom=getZoom();
totalimages=ojNImages();
for (n=1; n<=totalimages; n=n+1){
if(n != currentimage){
if(ojGetImageValue(n, "ID")!=0){
ojShowImage(n);
firstonimage=ojFirstObject(n);
ojToShow=ojnum+firstonimage-1;
if (ojToShow<=ojLastObject(n)) {
ojShowObject(ojToShow);
yoj=ojYPos(1);
xoj=ojXPos(1);
ojZoom(zoom,xoj,yoj);
}
}
}
// To return the view to the start
}
ojShowImage(currentimage);
ojShowObject(ojnum+firstoncurrentimage-1);
yoj=ojYPos(1);
xoj=ojXPos(1);
ojZoom(zoom,xoj,yoj);
}