Nigel Wilkinson <nigel / waspz.co.uk> wrote: > I've been playing with this app and think it shows great promise. > According to the documentation I believe FXDialogBox has been implemented > but I can't workout how to use it. Any pointers would be greatly > appreciated. How about? require 'fox' include Fox class RedDialog < FXDialogBox def initialize(owner) super(owner, "Editor", DECOR_ALL, 0, 0, 640, 480, 0, 0, 0, 0, 0, 0) # initialize buttons.. etc end def create super show end end -- Simon Strandgaard