Valeriy Posted June 22, 2009 Posted June 22, 2009 I need to call SplashImageOn without a frame (border). How can this be done?
BugFix Posted June 22, 2009 Posted June 22, 2009 (edited) Like Help says, you can use with Opt=1 for thin border, but not without.Or you create your own SplashImage.Edit: Here an example for an own SplashImage#include <WindowsConstants.au3> #include <WinAPI.au3> ; example $picPath = @Systemdir & "\oobe\images\mslogo.jpg" ; 255x40 $gui = GUICreate("", 255, 40, -1, -1, $WS_POPUP, $WS_EX_TOPMOST) $ctrl = GUICtrlCreatePic($picPath, 0, 0, 255, 40) GUISetState(@SW_SHOW) $pos = WinGetPos($gui) _GuiHole($gui, 0, 0, 255, 40) Sleep(3000) GUIDelete($gui) Func _GuiHole($h_win, $i_x, $i_y, $i_sizew, $i_sizeh) Local $combined_rgn $combined_rgn = _WinAPI_CreateRectRgn(0, 0, 0, 0) _AddCtrlRegion($combined_rgn, $ctrl) _WinAPI_SetWindowRgn($h_win, $combined_rgn) EndFunc ;==>_GuiHole Func _AddCtrlRegion($full_rgn, $ctrl_id) Local $ctrl_pos, $ctrl_rgn $ctrl_pos = ControlGetPos($gui, "", $ctrl_id) $ctrl_rgn = _WinAPI_CreateRectRgn($ctrl_pos[0], $ctrl_pos[1], $ctrl_pos[0] + $ctrl_pos[2], $ctrl_pos[1] + $ctrl_pos[3]) _WinAPI_CombineRgn($full_rgn, $full_rgn, $ctrl_rgn, $RGN_OR) _WinAPI_DeleteObject($ctrl_rgn) EndFunc ;==>_AddCtrlRegion Edited June 22, 2009 by BugFix Best Regards BugFix
nguyenbason Posted June 22, 2009 Posted June 22, 2009 Two topics with same question: http://www.autoitscript.com/forum/index.php?showtopic=63535 UnderWorldVN- Just play the way you like it
Valeriy Posted June 22, 2009 Author Posted June 22, 2009 I run this script and i have errors - C:\Documents and Settings\Валерий\Рабочий стол\sdgsa.au3(28,64) : WARNING: $RGN_OR: possibly used before declaration. _WinAPI_CombineRgn($full_rgn, $full_rgn, $ctrl_rgn, $RGN_OR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Documents and Settings\Валерий\Рабочий стол\sdgsa.au3(28,64) : ERROR: $RGN_OR: undeclared global variable. _WinAPI_CombineRgn($full_rgn, $full_rgn, $ctrl_rgn, $RGN_OR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Documents and Settings\Валерий\Рабочий стол\sdgsa.au3(19,53) : ERROR: _WinAPI_CreateRectRgn(): undefined function. $combined_rgn = _WinAPI_CreateRectRgn(0, 0, 0, 0) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Documents and Settings\Валерий\Рабочий стол\sdgsa.au3(21,47) : ERROR: _WinAPI_SetWindowRgn(): undefined function. _WinAPI_SetWindowRgn($h_win, $combined_rgn) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Documents and Settings\Валерий\Рабочий стол\sdgsa.au3(28,64) : ERROR: _WinAPI_CombineRgn(): undefined function. _WinAPI_CombineRgn($full_rgn, $full_rgn, $ctrl_rgn, $RGN_OR) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ C:\Documents and Settings\Валерий\Рабочий стол\sdgsa.au3 - 4 error(s), 1 warning(s)
Valeriy Posted June 22, 2009 Author Posted June 22, 2009 I install latest beta of autoit. Problem solved)
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