Seems to be all the rage in the MaxGUI world...
But, want to use it with wxMax? SetTransparent() is your friend...
:-p
But, want to use it with wxMax? SetTransparent() is your friend...
SuperStrict Framework wx.wxApp Import wx.wxFrame New MyApp.run() Type MyApp Extends wxApp Field frame:wxFrame Method OnInit:Int() frame = wxFrame.CreateFrame(,,"Hello World",,,300, 300) frame.SetTransparent(128) frame.Center() frame.show() Return True End Method End Type
:-p