OK geniuses! I have to use python 2.4 and 2.5 here and my programs ideally work with both versions. This area of code was working in 2.4 and 2.5 versions until replacing my computer. Python did not get ported over so I reloaded with new downloads from the web. (both 2.4 and 2.5 and applicable wx python for each version). Now in order for this code to work in version 2.5 I must change the spelling of Color to Colour...Is there some kind of fix for 2.5 that I can add? (Code also works as is with 2.6 python).
Thanks in advance for your inputs....
ricky
bBlk = wx.Color( 0, 0, 0)
bWht = wx.Color(255,255,255)
bGrn = wx.Color( 0,255, 0)
bYel = wx.Color(255,255, 0)
bRed = wx.Color(255, 0, 0)
bGry = wx.Color(128,128,128)
dRed = wx.Color( 96, 0, 0)
dGrn = wx.Color( 0, 96, 0)