Can you show how your props.rb file looks? From what I can
understand, I would have to guess you aren't giving the props id's,
and scene.find("showdate") looks for the prop with the id of
showdate. To give a prop an id of showdate, you need to pass it in as
an option.
Example props.rb:
showdate :id => "showdate"
showdate :id => "showdate2"
The first part sets the name of the prop and what player defines its
behavior.
scene.find("showdate") will return the first prop.
scene.find("showdate2") will return the second prop.
scene.find_by_name("showdate") will return an array containing both
props.
Eric