Quark 6 + MacOS 9 Scriptes, coerce problem, on / off style

Hi,

another Quark question. I know that I have to use the “coerce” command
to get the Quark data without problems (Using MacOS 9 Classic with MacOS X)

But I have not found a solution to get the on and off styles as a list

With MacOS X and Quark 6 I can do the following:

set myTextStyles to style of text style range 1
get on styles of myTextStyles
get off styles of myTextStyles

Has anybody an idea how I can do this with MacOS 9 und Quark 6

Thank in advance

Best Regards
Thomas

Thomas,

I think you meant to type Quark 5 or 4.

This should work…

		set myTextStyles to properties of text style range 1
		set myTextStyles to coerce (style of myTextStyles) to record
		get on styles of myTextStyles
		get off styles of myTextStyles

Ray