Still trying to extend my "best practice" usage of the message path...

I tend to put most of my scripts at the group level, rather than the object level. On some of these groups I select "background behavior" in the property inspector. I had understood that this would put the group in the message path between the card and the stack... but it doesn't seem to behave like that.

If my group has a method... er, handler called "groupAction" and the group is "background behavior TRUE" then I had thought that *any* object on the card could do like -

on mouseUp
        groupAction
end mouseUp

But this generally results in "background not found" errors, until an explicit path is put in, and the method call is converted to a send. Like -

on mouseUp
        send "groupAction" to group "bkgTest"
end mouseUp

Why would that be? What am I missing?

--
Troy
RPSystems, Ltd.
http://www.rpsystems.net

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to