Idle Help
Idle Help
- Subject: Idle Help
- From: Byron Peterson <email@hidden>
- Date: Wed, 6 Dec 2000 10:56:01 -0700
Hello,
How do I pass variables from the 'run' section to the 'idle' section
without using 'global' or 'property' statements.
ie.
on run
set test to "Hello World!"
end run
on idle
display dialog test
return 10
end idle