Author Topic: Multiple insertion  (Read 2225 times)

0 Members and 1 Guest are viewing this topic.

Andrea

  • Water Moccasin
  • Posts: 2372
Multiple insertion
« on: May 17, 2005, 08:46:06 AM »
Hi,

I'm looking to a routine inserting Multiple blocks in one shot !
by multiple selection..

any idea ?

thanks, :wink:
Keep smile...

whdjr

  • Guest
Multiple insertion
« Reply #1 on: May 17, 2005, 08:55:53 AM »
Does is have attributes with the block?

I can't find the one I for repetitious block insertion but look into a while loop and testing for "ErrNo" sysvar, values 7 and 52.

jonesy

  • SuperMod
  • Seagull
  • Posts: 15568
Multiple insertion
« Reply #2 on: May 17, 2005, 09:14:09 AM »
Am I on the wrong track here, but isn't that what MINSERT command does?
Thanks for explaining the word "many" to me, it means a lot.

whdjr

  • Guest
Multiple insertion
« Reply #3 on: May 17, 2005, 09:25:28 AM »
Minsert is a whole other beast.  It uses functionality comparable to the array command.  I think what Andrea wants is a routine that will insert a selected block at a picked point and then allow him to pick another point to insert the same block, repeating this until he is done.

jonesy

  • SuperMod
  • Seagull
  • Posts: 15568
Multiple insertion
« Reply #4 on: May 17, 2005, 09:33:39 AM »
Aah, sorry, its ages since I used that command. So long infact that I'd forgot how to use it!

Guess I should check before I open my mouth :oops:
Thanks for explaining the word "many" to me, it means a lot.

Andrea

  • Water Moccasin
  • Posts: 2372
Multiple insertion
« Reply #5 on: May 17, 2005, 11:46:18 AM »
in fact...

I need to insert all selected drawing in a the same insertion point.

 :roll:
Keep smile...

M-dub

  • Guest
Multiple insertion
« Reply #6 on: May 17, 2005, 11:53:44 AM »
You could do that with a script...pretty easy if you know the insertion point.

M-dub

  • Guest
Multiple insertion
« Reply #7 on: May 17, 2005, 11:59:55 AM »
Code: [Select]
OPEN
C:/FOLDER/DRAWING1.DWG
-INSERT
C:/BLOCKS/BLOCKNAME.dwg
xCoordinate,yCoordinate



CLOSE
OPEN
C:/FOLDER/DRAWING2.DWG

~ETC~