I am trying to work out if there is a way to be able to mirror multiple DWG files all at once without having to open each DWG and use the mirror command.
I have tried using macro's but I can't seem to get this to work.
Does anyone has any suggestions to assist?
Cheers
Rhys
Solved! Go to Solution.
I am trying to work out if there is a way to be able to mirror multiple DWG files all at once without having to open each DWG and use the mirror command.
I have tried using macro's but I can't seem to get this to work.
Does anyone has any suggestions to assist?
Cheers
Rhys
Solved! Go to Solution.
Solved by maratovich. Go to Solution.
No problem. Use this - AutoRunLisp
Specify commands:
"
_.mirror
_all
0,0
0,1
_yes
"
No problem. Use this - AutoRunLisp
Specify commands:
"
_.mirror
_all
0,0
0,1
_yes
"
Thanks for this - before I purchase a licence can this be used on AutoCAD LT as well? @maratovich
Thanks for this - before I purchase a licence can this be used on AutoCAD LT as well? @maratovich
No, it won't work in AutoCAD LT.
Neither Lisp, nor VBA, nor programs work in AutoCAD LT. This is an easy AutoCAD, just simple drawing.
No, it won't work in AutoCAD LT.
Neither Lisp, nor VBA, nor programs work in AutoCAD LT. This is an easy AutoCAD, just simple drawing.
Hi @maratovich this works like a treat, one thing I have noticed however there are some DXF's that come up with points must be distinct; error: Function cancelled, do you know why this may be?
I have attached the DXF and also included an image to reference:
Cheers
Rhys
Hi @maratovich this works like a treat, one thing I have noticed however there are some DXF's that come up with points must be distinct; error: Function cancelled, do you know why this may be?
I have attached the DXF and also included an image to reference:
Cheers
Rhys
"the points must be different" ....
What's on the command line?
You need to increase the coordinates of the points
was 0,1 to make 0,1000 or more.
These are standard commands.
You can enter them with your hands one by one and check where the error is.
The first team is a mirror
the second is to select all objects
third - inter
fourth - coordinate 0,0
fifth -corridinate 0.1
the sixth is to remove the old mirror.
Coordinates 0,0 and 0,1 are X,Y
"
_.mirror
_all
0,0
0,1000
_yes
"
"the points must be different" ....
What's on the command line?
You need to increase the coordinates of the points
was 0,1 to make 0,1000 or more.
These are standard commands.
You can enter them with your hands one by one and check where the error is.
The first team is a mirror
the second is to select all objects
third - inter
fourth - coordinate 0,0
fifth -corridinate 0.1
the sixth is to remove the old mirror.
Coordinates 0,0 and 0,1 are X,Y
"
_.mirror
_all
0,0
0,1000
_yes
"
Can't find what you're looking for? Ask the community or share your knowledge.