Quark: Insert Page Number

In Quark, I’m trying to add a text box that contains the Page Number to multiple documents.

Is there AppleScript code to create the command+3, <#> symbol for Quark’s page number?

Hello,

Maybe to late. bu, you can try this :

tell application "QuarkXPress Passport"
	activate
	tell application "System Events"
		tell process "QuarkXPress Passport"
			key code 85 using {command down, option down}
		end tell
	end tell
end tell

or,

tell application "QuarkXPress Passport"
	activate
	tell application "System Events"
		tell process "QuarkXPress Passport"
			click menu item "Current Box Page #" of menu 1 of menu item "Special" of menu 1 of menu item "Insert Character" of menu 1 of menu bar item "Utilities" of menu bar 1
		end tell
	end tell
end tell

:wink:

Gloubiboulga,

Thanks! I’ll give it a try.