Hi
I am wanting to achieve something like
( defun c:Template ()
(setq vpall (ssget "x" '((0 . "VIEWPORT"))))
(command "vplayer" "c" "1" "*E-Water,*E-Water Lateral,*E-Stormwater,*E-Sewer" "s" vpall "" "" )
)
but for all the viewports on each tab.
I can get it to cycle through each tab with a while statement but i was wondering if the vplayer command can work from a single search instead.
If i need to do the while option I know I can achieve the same with
(command "vplayer" "c" "1" "*E-Water,*E-Water Lateral,*E-Stormwater,*E-Sewer" "a" "" )
Richie