lets say I have the following:
$varA = "Hello";
$varB = "Goodbye";
One()
Func One()
Send ($varA);
Two()
Send ($varA);
EndFunc
Func Two()
$varA = $varB;
EndFunc
I want this to output "Hello", then "Goodbye. But in Func Two() it dosn't seem to take the variable back to Func One. Any help would be greatly appreciated.