Tkinter scrollbar widget's "background" and "relief" options seem not work.
The below is the codes I tried and the python/tk information: =================== ActivePython 2.6.4.8 (ActiveState Software Inc.) based on Python 2.6.4 (r264:75706, Nov 3 2009, 13:23:17) [MSC v.1500 32 bit (Intel)] on win32 >>> from Tkinter import * >>> r=Tk() >>> s=Scrollbar(r,bg="#000") >>> s.grid() >>> s['activebackground'] = "#000" >>> s['relief'] = "sunken" >>> >>> TkVersion 8.5 >>> import sys >>> sys.version '2.6.4 (r264:75706, Nov 3 2009, 13:23:17) [MSC v.1500 32 bit (Intel)]' >>> -- http://mail.python.org/mailman/listinfo/python-list