Shows a message which can be hidden, hide message checkbox state by passing reference to variable
#include "Dialogue.au3" _Message( $sMessage , ByRef $HideCheck [, $sTitle = _DialogueTitle() [, $sHideText = "Hide this message?" [, $sOkButtonText = "Ok" [, $sFileIcon = "" [, $iIconPosition = 0 [, $iIconWidth = 48 [, $iIconHeight = 48]]]]]]] ) |
$sMessage | Message of dialogue |
$HideCheck | Boolean variable passed by reference for user to be able to hide message |
$sTitle | Title of dialogue, if empty title set by _DialogueTitle() is used |
$sHideText | Text of hide checkbox |
$sOkButtonText | Text on Ok button |
$sFileIcon | Icon to show, must be .ico file |
$iIconPosition | 0 = left, 1 = right |
$iIconWidth | Icon width |
$iIconHeight | Icon height |
boolean value | True = Retry, False = Cancel |
_DialogueTitle, _Sure, _Ok, _Try, _HideMessage, _MessageBox
$HideIt = False
_Message( "This is important information, isn't it?", "Information" )
; If $HideIt is now true user don't want to see the message any
longer
See also library example