Ali Lloyd wrote:

> The `dispatch function` form of the dispatch command indeed does not
> appear to be documented.

What does that syntax look like?

This works:

on mouseUp
  dispatch "foo" to me with 1,2
  put the result
end mouseUp

on foo p1, p2
  return p1 + p2
end foo


...but this does not:

on mouseUp
  dispatch "foo" to me with 1,2
  put the result
end mouseUp

function foo p1, p2
  return p1 + p2
end foo


--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 ____________________________________________________________________
 ambassa...@fourthworld.com                http://www.FourthWorld.com

_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to