From: Li Chen Date: 2008-10-26T06:40:28+09:00 Subject: question about method call Hi all, I copy a working script from the website. I wonder if method "create" defined in this class is ever called? Thanks, Li #########script############## require 'fox16' include Fox class HelloWindow < FXMainWindow def initialize(app) super(app, "Hello, World!", :width => 200, :height => 100) end def create super show(PLACEMENT_SCREEN) end end app = FXApp.new HelloWindow.new(app) app.create app.run -- Posted via http://www.ruby-forum.com/.