1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- .. _func_system_notify:
- ======
- Notify
- ======
- Notify -
- Description
- ===========
- .. code-block:: blitzmax
- Notify( text$,serious=False )
- Notify user
- #Notify activates a simple user interface element informing the user of an event.
- The optional @serious flag can be used to indicate a 'critical' event.
- Note that a user interface may not be available when in graphics mode on some platforms.
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- .. code-block:: blitzmax
- ' notify.bmx
-
- Notify "Hello World"
- See Also
- ========
|