home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / msgbox.au3 < prev    next >
Text File  |  2004-02-28  |  404b  |  13 lines

  1. ;
  2. ; AutoIt Version: 3.0
  3. ; Language:       English
  4. ; Platform:       Win9x/NT
  5. ; Author:         Jonathan Bennett (jon@hiddensoft.com)
  6. ;
  7. ; Script Function:
  8. ;   Demo of using multiple lines in a message box
  9. ;
  10.  
  11. ; Use the @CRLF macro to do a newline in a MsgBox - it is similar to the \n in v2.64
  12. MsgBox(0, "AutoIt Example", "This is line 1" & @CRLF & "This is line 2" & @CRLF & "This is line 3")
  13.