pretty straight forward. I need to select the top most layer in my layer panels.
Thanks for the help.
How to select topmost layer?
-
Mike Hale
How to select topmost layer?
The top most layer will always have an index of zero
Code: Select allapp.activeDocument.activeLayer = app.activeDocument.layers[0];
Code: Select allapp.activeDocument.activeLayer = app.activeDocument.layers[0];
-
GDrider77
How to select topmost layer?
Thanks a bunch. I knew it was simple, but couldn't remember where i saw how to do it.
R.
R.