Look closely on panics code. It states %1 your code according to you reads $1.
Fubini
Look closely on panics code. It states %1 your code according to you reads $1.
Fubini
Ah of course, another typo by me. Soon I'll get better at this and won't have to look like a fool.
yes, details matter. in this case value of n will be converted to string and inserted into string location specified by %1.
the %1,%2 etc are placeholders for embedding variable values into a string. MsgNotify does make it easy to program messages with practically no effort but there are also limitations. One is that it only accepts one parameter. To get fancy or more complex output format (perhaps with several variables) one has to do some coding himself.