Okay Shade, how do you carry variables over to next step? When I create a variable in Step1 like string password = ..... and try to use it in Step2, I keep getting an error that says: "The name 'password' does not exist in the current context" in Debug for Step2. Here is a simple one to show you what I am getting.
namespace CCtest
{
internal class Step1
{
public static int Execute(Instance instance)
{
// Executing macros
string login = instance.RiseMacros("File.GetString", new[] { "\\Resources\\Beboemail.txt", "0", "true" });
return 0;
And then in Step2 I have this;
namespace CCtest
{
internal class Step2
{
public static int Execute(Instance instance)
{
// Executing macros
instance.RiseMacros("File.AppendString", new[] { "\\Results\\CCtest.txt", login, "true" });
return 0;
And I get the error: "The name 'login' does not exist in the current context"
What am I doing wrong here because a lot of templates will take the result of one Step and need them in another?