Created
June 21, 2016 18:18
-
-
Save jbratu/e9d93a913c169e44f27cd1a1b77e4b3b to your computer and use it in GitHub Desktop.
Simple OpenInsight response dialog. See the help file for more information or see https://wiki.srpcs.com/display/Commands/Msg+Function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $Insert MSG_EQUATES | |
| Def = "" | |
| Def<MTEXT$> = "What did you eat for breakfast?" | |
| Def<MTYPE$> = "RC" | |
| Def<MICON$> = "?" | |
| Response = Msg(@window, Def) | |
| if Response = char(27) or Response = "" then | |
| * Message was escaped or not entered | |
| Return | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment