I am trying to do have a global string in Installshield so I can access it in multiple places. This is my first run at scripting in it. Here is what I have:
STRING DIR;
....
DIR="c:\\tempdir";
function Completed_Action()
begin
// Here is where I try to access the DIR string.
It keeps giving me errors though. Is there any way to have a global string and set it's value before any functions? I should also add that this is in a sub rul script that is called after the main Setup.rul.
Thanks in advance.