Page 1 of 1

if page is orientation

Posted: Wed Mar 20, 2024 2:30 pm
by Urraco
Hi,
In Action List, can i make this conditions?
IF
page is landscape orientation
add text position to x,y..
ELSE
add text position to x,y..

Re: if page is orientation

Posted: Wed Mar 20, 2024 6:25 pm
by loicaigon
Hey,

While there are no IF/ELSE conditions as such, it's actually easy to get this kind of sorting if you consider Selections as being the conditioner of your operations.

In other words:

- Select by page orientation (portrait)
- Do something
- Select by page orientation (landscape)
- Do something

Image
Only if a selection is not empty, the following operations apply.
That's simply another way to say IF/ELSE ;)

Re: if page is orientation

Posted: Thu Mar 21, 2024 2:59 pm
by Urraco
yep, i can do that.
thanks
loicaigon wrote: Wed Mar 20, 2024 6:25 pm Hey,

While there are no IF/ELSE conditions as such, it's actually easy to get this kind of sorting if you consider Selections as being the conditioner of your operations.

In other words:

- Select by page orientation (portrait)
- Do something
- Select by page orientation (landscape)
- Do something

Image
Only if a selection is not empty, the following operations apply.
That's simply another way to say IF/ELSE ;)