This should not be hard at all.
You either have a list of items you want aligned, or a group, or other methods (like within some frame ..rect, selected objects, etc )


For a quick example lets say I have 400 graphics on a page and I want to align all the green ones

case "center"
put the loc of selection into locxy
repeat with x = 1 to number of graphics of stack "SampleStack"
if the backgroundColor of graphic x of stack "SampleStack" is green then
set the loc of graphic x of stack "SampleStack" to locky -- center aligned
end if
end repeat


I'm fairly sure you can use left, right, top, bottom, as well.
Items of a rect will also provide a point to shove other objects up agains.



Hope that helps (and works).


Mr Bill

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to