Re: wxEuphoria - color_selector()
- Posted by Jesse Adkins <Tassadar29 at lycos.com> Sep 25, 2006
- 624 views
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.