PDA

View Full Version : smash


VIND
02-03-2004, 08:34 PM
hi,


i need to smash more than one part or sub part to TOP PART .


How do i achieve it:confused:

John Scheffel
02-04-2004, 08:38 AM
I'm not sure what you are asking for. You can make the top part current and keep repeating the smash operation untill everything is in the top part. Do you want a way to do it in one step or program it in a macro?

Try this macro to see if it does what you want. I wrote this very quickly and only tested it once, but it seems to smash everything into the top part.

DEFINE Smash_all_into_top
EDIT_PART TOP
LOOP
INQ_PART CURRENT
EXIT_IF ((INQ 6) = 0)
SMASH_SUBPART ALL
END_LOOP
END_DEFINE