Tasmania Posted October 11, 2007 Posted October 11, 2007 Ok, so I pop up a message box that has multiple lines of text, but I want them all center aligned inside of the message box. I tried out SplashText, but there is no "Ok" button, and as far as I can see (through the help file) I can't add one, and there is no way to add the "Exclamation-point icon" like in a message box, which is desireable. My code is this: MsgBox(48, "Please review", "Please review the following information and ensure it's accuracy." & @CRLF & @CRLF & "You can also update this information any time through the menu under Edit - Update Cost Information.") Obviously, that looks kinda... crappy. There has to be a way to do this, I just can't find any information on it. I searched for "Centering text message box" and found a whole bunch of un-related posts. Thanks
herewasplato Posted October 11, 2007 Posted October 11, 2007 maybe:http://www.autoitscript.com/forum/index.ph...st&p=210240 [size="1"][font="Arial"].[u].[/u][/font][/size]
PsaltyDS Posted October 11, 2007 Posted October 11, 2007 You will have to code your own GUI. Not hard though, about six lines of code. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
aslani Posted October 11, 2007 Posted October 11, 2007 Smoke wrote this to change the text on the buttons and maybe you can use this as a guideline to align your text; Local $ChangeText[4] = ['', 'Enable', 'Disable', 'Quit'] $iMsg = _MsgBoxEx(3, 'nothing', 'something', 0, $ChangeText) MsgBox(64, 'Info', 'The Return Was: ' & $iMsg) Func _MsgBoxEx($iFlag, $sTitle, $sText, $iTime = 0, $sCIDChange = '') Local $_MsgBox_ = '"' & "ConsoleWrite(MsgBox(" & $iFlag & ', ""' & $sTitle & '"", ""' & $sText & '"", ' & $iTime & '"))' Local $iPID = Run(@AutoItExe & ' /AutoIt3ExecuteLine ' & $_MsgBox_, '', @SW_SHOW, 6) Do Sleep(10) Until WinExists($sTitle) If IsArray($sCIDChange) Then For $iCC = 1 To UBound($sCIDChange) - 1 ControlSetText($sTitle, '', 'Button' & $iCC, $sCIDChange[$iCC]) Next Else ControlSetText($sTitle, '', 'Button1', $sCIDChange) EndIf While ProcessExists($iPID) Local $iStdOut = StdoutRead($iPID) If Number($iStdOut) Then Return $iStdOut Sleep(10) WEnd If IsArray($sCIDChange) Then Return SetError(1, 0, 2) Return SetError(1, 0, 1) EndFunc [font="Georgia"]Chances are, I'm wrong.[/font]HotKey trouble?Stringregexp GuideAutoIT Current Version
Tasmania Posted October 11, 2007 Author Posted October 11, 2007 Smoke wrote this to change the text on the buttons and maybe you can use this as a guideline to align your text; Local $ChangeText[4] = ['', 'Enable', 'Disable', 'Quit'] $iMsg = _MsgBoxEx(3, 'nothing', 'something', 0, $ChangeText) MsgBox(64, 'Info', 'The Return Was: ' & $iMsg) Func _MsgBoxEx($iFlag, $sTitle, $sText, $iTime = 0, $sCIDChange = '') Local $_MsgBox_ = '"' & "ConsoleWrite(MsgBox(" & $iFlag & ', ""' & $sTitle & '"", ""' & $sText & '"", ' & $iTime & '"))' Local $iPID = Run(@AutoItExe & ' /AutoIt3ExecuteLine ' & $_MsgBox_, '', @SW_SHOW, 6) Do Sleep(10) Until WinExists($sTitle) If IsArray($sCIDChange) Then For $iCC = 1 To UBound($sCIDChange) - 1 ControlSetText($sTitle, '', 'Button' & $iCC, $sCIDChange[$iCC]) Next Else ControlSetText($sTitle, '', 'Button1', $sCIDChange) EndIf While ProcessExists($iPID) Local $iStdOut = StdoutRead($iPID) If Number($iStdOut) Then Return $iStdOut Sleep(10) WEnd If IsArray($sCIDChange) Then Return SetError(1, 0, 2) Return SetError(1, 0, 1) EndFuncHehe, 6 lines of code vs 20... hmmm... Thanks guys
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now