Page 1 of 1

Command Line Execution

Posted: Mon Jan 13, 2014 11:12 pm
by SBMastering
Does anyone have any experience doing command-line execution with Flowstone?

I have an executable to which I want to feed numerical parameters from Flowstone. I'd like to have some variables in Flowstone, maybe A and B and then use the values they hold as the parameters.

So lets say A = 5 and B = 10.

I'm guessing I'd need to convert the variables to a string, then add pieces of a string so I could have a final string like: "test.exe -param1 5 = param2 10".

Then, feed the final concatenated string to the command line somehow. Anyone have any experience with this?