Variable-bridges through scripts
Variable-bridges through scripts
- Subject: Variable-bridges through scripts
- From: JJ <email@hidden>
- Date: Wed, 04 Apr 2001 15:12:50 +0200
Let9s say I have a 30 lines applet that, finally, give me an alias:
"HD:DF:my_alias:" as alias
I want do this:
<Lines 31->end of FIRST_APPLET>
set The_Property to ("HD:DF:my_alias:" as alias)
tell Second_Applet to activate
tell me to quit
<END FIRST_APPLET>
Now, the second applet
<SECOND_APPLET>
property My_Property : The_Property -- from first_applet
<SCRIPT>
<END SECOND_APPLET>
And the question: is this possible? How can I transfer a variable from a
script to another and then quit the first one?
JJ