T O P I C R E V I E W |
toonbon |
Posted - 04/01/2009 : 03:43:59 AM Origin Ver. 8 Operating System: XP
I see where the Object Editor tools let you align multiple objects against a right or left border and set their height or width the same, but I don't see a way to distribute objects evenly. Suppose, for example, that I have four lines of text that I want to space vertically with the same distance between them. Is there a way to do this?
Thanks |
1 L A T E S T R E P L I E S (Newest First) |
greg |
Posted - 04/02/2009 : 5:13:24 PM No GUI for this yet. You need to access the position properties of the objects from script. Here is an example where I evenly space (vertically), three text objects : Text, Text1 and Text2.
text1.y = text.y - 100; text2.y = text.y - 200;
or
text1.y = text.y - 100; text2.y = text1.y - 100;
|
|
|