You can create "z" and “x” shortcuts for "previous slice” and "next slice” by adding the following two macro to the Startup Macros file (Plugins>Macros>Startup Macros).
-wayne
macro "Previous Slice [z]" {
Stack.getPosition(channel, slice, frame);
Stack.setSlice(slice-1);
}
macro "Next Slice [x]" {
Stack.getPosition(channel, slice, frame);
Stack.setSlice(slice+1);
}
> I have tried to teach myself a solution with the userguide
> (
https://imagej.nih.gov/ij/docs/guide/146-31.html#sub:Shortcuts), but I
> couldn't locate the correct command. I also tried experimenting with macros
> (
https://imagej.nih.gov/ij/docs/guide/146-35.html), but when I performed the
> "Next hyperstack frame" command, it was recorded into the macro window as
> "run("Next Slice [>]");" (i.e. > instead of alt+>").
>
> Do you have any suggestions for how to create a simpler shortcut? Or maybe
> reverse the > and alt+> shortcuts? Thank you
--
ImageJ mailing list:
http://imagej.nih.gov/ij/list.html