Ok, that works for one someThing, but if I have more than one parameter it tells me:
“-[AppDelegate transferIt:]: «class ocid» id «data optr000000003015240080600000» doesn’t match the parameters {someThing, someOtherThing} for transferIt_. (error -1721)”
app delegate contains:
on doItWith_(someThing, someOtherThIng)
-- do something with someThing and someOtherThing here, coercing them an AS class if required
end doItWith_
document contains:
current application's NSApp's delegate()'s doItWith_(someThing, someOtherThing)
where someThing and someOtherThing are what I want to pass.