Message box displays "R2 == 1" instead of what I want: "R2 == B"
StrCpy $R2 "A"
IntOp $R2 $R2 + 1
MessageBox MB_OK "R2 == $R2"
Is there a way to accomplish what I want in NSIS? Convert an ASCII 'A' to an int and vice versa?
Thanks!
(in C/C++ it's so easy but for the life of me I encountered a mental block trying to do this in NSIS)