func_system_notify.rst 577 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .. _func_system_notify:
  2. ======
  3. Notify
  4. ======
  5. Notify -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. Notify( text$,serious=False )
  10. Notify user
  11. #Notify activates a simple user interface element informing the user of an event.
  12. The optional @serious flag can be used to indicate a 'critical' event.
  13. Note that a user interface may not be available when in graphics mode on some platforms.
  14. Parameters
  15. ==========
  16. Return Values
  17. =============
  18. Nothing.
  19. Examples
  20. ========
  21. .. code-block:: blitzmax
  22. ' notify.bmx
  23. Notify "Hello World"
  24. See Also
  25. ========