The Script object represents a FileMaker script.
At this point, the Script object exists only so
you can enumrate all scripts in a Database
(which is a rare need):
myDatabase.script.each {|script|
puts script.name
}
If you want to run a script, see the Layout object instead.