Quark--recto & verso pages--How?

: How do I ask Quark if the last page of the previous
: chapter is verso or recto and how (If it is recto) do I insert
: a blank verso page to begin the next chapter on a recto?
: Thanks, Don

You got me.

However, if you wanted to, say, determine if the current page was a right or left page, you could use something like the following…

tell application "QuarkXPress? 4.11"
    tell document 1
        set pageNo to page number of current page as real
        if pageNo mod 2 is 1 then -- it's an odd page
            beep
        else -- it's an even page
            beep 2
        end if
    end tell
end tell

:slight_smile:

– tet