Title: How to search by color? Post by: K-Johnson on October 30, 2008, 02:28:01 am Hi,
I entered a hex value hoping to get all the elements using that color but it didn't work. How can I search by color? Title: Re: How to search by color? Post by: Panda X on October 30, 2008, 03:14:14 am Quote from: "psygn" Hi, argb(a, r, g, b)I entered a hex value hoping to get all the elements using that color but it didn't work. How can I search by color? 0-255. Don't forget spaces after commas. Title: Re: How to search by color? Post by: AndreasV on October 30, 2008, 03:35:55 am that actually is argb(a, r, g, b) For example, to search for all red colors do: argb(255, 255, 0, 0)
Title: Re: How to search by color? Post by: K-Johnson on October 30, 2008, 03:41:48 am Thanks
|