Kaveh Bazargan wrote:
I need to send a message from Terminal to a stack, when a process is finished, so that the stack can start another job. For instance I want the hilite of a button to be set to true. Can I do this with AppleScript, and if so where can I find documentation?
Looking at Rev's AppleScript dictionary with Apple's AppleScript editor you'll find "do script" and "evaluate" are provided, which can provide the key to almost any behavior you want.
The "do script" command can be used to trigger custom handlers in your standalone, or just about anything else that could be done internally with the "do" command.
"evaluate" operates like a Transcript function: it evaluates a Transcript expression and returns the result.
Experiment with those and I think you may be pleased with what you can do.
-- Richard Gaskin Fourth World Media Corporation ___________________________________________________ Rev tools and more: http://www.fourthworld.com/rev _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
