Created
September 15, 2018 21:31
-
-
Save kirillgroshkov/bbe2466e8cecafe7d435d6b0d7767358 to your computer and use it in GitHub Desktop.
photoshop scripts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var scale = 100; | |
var idoc = app.activeDocument; | |
var sel = idoc.selection; | |
var pgItem = sel[0].duplicate(); | |
pgItem.resize (scale, scale, AnchorPosition.MIDDLECENTER); | |
#pgItem.resize (scale, scale, true, true, true, true, scale, Transformation.CENTER) | |
#pgItem.move(ilayer, ElementPlacement.PLACEATEND); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment