Recommended Posts

Posted

Ma ktoś pomysł jak zaznaczyć wszystkie hatche które nie mają narzucowego koloru 1 lub 105 ?

próbowałem jakoś tak jak niżej ale nie działa:

 

(ssget "_x" (list 
				(-4 . "<OR")
					(-4 . "<AND")
						(cons 0 "HATCH")  (cons -4 "<NOT") (cons 62 105) (cons -4 "NOT>")
					(-4 . "AND>")	
					(-4 . "<AND")
						(cons 0 "HATCH")  (cons -4 "<NOT") (cons 62 1) (cons -4 "NOT>")
					(-4 . "AND>")
				(-4 . "OR>")
			)
)

 

pozdrawiam

Posted

może tak:

(ssget "_x" (list 
	(cons -4  "<AND")
		(cons 0 "HATCH")
		(cons -4  "<AND") 
			(cons -4 "<NOT")
				(cons 62 1)
			(cons -4 "NOT>")
			(cons -4 "<NOT")
				(cons 62 105)
			(cons -4 "NOT>")
		(cons -4 "AND>")
	)
)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now