Skip to main content
Inspiring
November 1, 2016
Answered

Arrange windows > Tile All Vertically

  • November 1, 2016
  • 1 reply
  • 1839 views

Hi..

There is a way to use the option of

"Window > Arrange > something of this list (e.g. Tile All Vertically)"

in script or in ActionManager?

Thanks..

Elyasaf

This topic has been closed for replies.
Correct answer SuperMerlin

#target photoshop;

app.runMenuItem (stringIDToTypeID( "tileVertically" ));

For others just record an action with the desired function using Insert Menu Item.

You can then get the string from scriptListener

1 reply

SuperMerlin
SuperMerlinCorrect answer
Inspiring
November 1, 2016

#target photoshop;

app.runMenuItem (stringIDToTypeID( "tileVertically" ));

For others just record an action with the desired function using Insert Menu Item.

You can then get the string from scriptListener

Inspiring
November 1, 2016

That's great!

Thank you..

But I don't understand how to find more TypeID..

I have a file in my desktop called "ScriptingListenerJS"

and it's not record this action..

Tom Ruark
Inspiring
November 1, 2016

Start recording an action via the actions panel then use "Insert menu item" from the actions panel flyout menu. That should get the string you are looking for in your log file.