I'm trying to write a script that will mark a range of dimensions for vector points.
I've tried a nested For each Cmd in Cmds inside a DO UNTIL LOOP, but my
"LOOP LOGIC IS LOUSY".
I would like to enter the range from let's say feature PT150 to feature PT300
but only mark the the corresponding dimensions for the point features in that range.
The program would initially be unmarked, script would ask what the start feature name is
and the end feature name to complete the range and then mark the dimension in that
range only.
I'm sure the Code Guru's could whip the code out in no time without all the infinite loops
I generated.
Establish the range to look for
Parse all commands
If current command is a dimension command then
If sourcefeature or destinationfeature is in between the range then
mark the command
else
Next command
Establish the range to look for
Parse all commands
If current command is a dimension command then
If sourcefeature or destinationfeature is in between the range then
mark the command
else
Next command