[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

(DTPtechNote:431) Re: QX3.3での「回り込みなし」は?



IDを使えないのは辛い(笑)
適当な答え(^^;;;;; 

tell application "QuarkXPress 3.3Jr7"
	activate
	tell document 1
		tell current box
			set my_name to (current date) as string
			set properties to {color:"シアン", shade:"5", name:my_name}
			duplicate current box
			set properties to {color:"シアン", shade:"20", runaround:none runaround, name:""}
		end tell
		tell text box my_name
			set my_bounds to bounds
			set bounds to {0, 0, 100, 100} --適当な値
			set bounds to my_bounds
			set name to ""
		end tell
	end tell
end tell