Re: wxEuphoria - color_selector()
- Posted by Jerry Story <jstory at ocii.com> Sep 25, 2006
- 633 views
Jesse Adkins wrote: > > Jerry Story wrote: > > > > Bernie Ryan wrote: > > > You will probably have to save the three color values in an ini file. > > > > > > Then when your program starts do a > > > skin = create(wxColour,{red,green,blue}) > > > > The question boils down to: > > how to get the 3 colors from color_selector()? > > Instead of trying to get the value from the color selector, why not try > grabbing the values of the colors since they're easier to work with? > > Something like printf might work for what you're trying to do. > > printf ( FILE, "%d,%d,%d", {Red,Green,Blue}) > > Hope that helps. How do I get red,green,blue? I know how to do everything else.