This line ....WriteLn>C:\33.txt,result,%WWC_RESULT%
Write to the file.
As soon as I try this with an if statement it failed for either true or false.
What the hell ?
I tried
If>%WWC_RESULT% = true
If>WWC_RESULT = true
If>%WWC_RESULT% is true
If>WWC_RESULT is true
If>%WWC_RESULT% = false
If>WWC_RESULT = false
If>%WWC_RESULT% is false
If>WWC_RESULT is false
If>%WWC_RESULT% = true then
If>WWC_RESULT = true then
If>%WWC_RESULT% is true then
If>WWC_RESULT is true then
If>%WWC_RESULT% = false then
If>WWC_RESULT = false then
If>%WWC_RESULT% is false then
If>WWC_RESULT is false then
None of them worked
I tried this :
WriteLn>C:\33.txt,result,x
Instead of this:
WriteLn>C:\33.txt,result,%x%
No good, I can't get it to work
Code: Select all
Let>x=if wwcResult was true
Let>y=if wwcResult was false
WaitWindowChanged>10
WriteLn>C:\33.txt,result,%WWC_RESULT%
If>%WWC_RESULT% = true then
WriteLn>C:\33.txt,result,%x%
Endif
If>%WWC_RESULT% = false then
WriteLn>C:\33.txt,result,%y%
Endif