cramaboule Posted August 18, 2007 Share Posted August 18, 2007 I am sure, I am not the first one who thought about it, but it is nice. I like it very much ! #include <GUIConstants.au3> GUICreate("mygui",300,200,-1,-1) GUISetState () GUICtrlCreateButton ("OK", 50,50,40,25) While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend For $i = 250 To 0 Step -10 WinSetTrans ( "mygui", "", $i ) Sleep(50) Next Easy and nice ! My Autoit programs: MAC Address - - Delete Temp Files - - Ping Test - - Play Video with VLC full screen dual monitors - - Set IP - - Pics Converter - - AutoUpdater - - CPU Usage - - Ending Script Nicely - - GDI+ GUI crossfades (slide transitions) - - Beamer - - Search and Search in Files - - Silent Ninite Others: Export Icons into Dll - - My website Link to comment Share on other sites More sharing options...
martin Posted August 19, 2007 Share Posted August 19, 2007 I am sure, I am not the first one who thought about it, but it is nice. I like it very much ! #include <GUIConstants.au3> GUICreate("mygui",300,200,-1,-1) GUISetState () GUICtrlCreateButton ("OK", 50,50,40,25) While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend For $i = 250 To 0 Step -10 WinSetTrans ( "mygui", "", $i ) Sleep(50) Next Easy and nice ! That's good. If you use that with a modification of ResNullius' script for closing a window you get this expandcollapse popup#include <GUIConstants.au3> #include <GuiConstants.au3> Global $GuiX, $GuiY, $GuiW, $GuiH $gui = GUICreate("My Gui") $rollup = GUICtrlCreateButton("RollItUp", 50, 200, 100, 20); GUISetState() While 1 $Msg = GUIGetMsg() Switch $Msg Case $GUI_EVENT_CLOSE Exit Case $rollup _RollUpGui($gui, 10) ExitLoop EndSwitch WEnd Func _RollUpGui($hWnd, $step, $delay = "default") Local $GuiClientH, $MinH $GuiClientSize = WinGetClientSize($hWnd) $GuiClientH = $GuiClientSize[1] _GuiGetPos($hWnd) $MinH = $GuiH - $GuiClientH While $GuiW > 200;$GuiPos[3] _GuiGetPos($hWnd) If $GuiH > ($MinH) Then $GuiH -= $step $GuiY += $step / 2 Else $GuiH = $GuiH $GuiY = $GuiY $GuiW -= $step $GuiX += $step / 2 EndIf WinMove($gui, "", $GuiX, $GuiY, $GuiW, $GuiH) If $delay = "default" Then $delay = ($step * 2) + ($step / 2) Sleep($delay) WEnd ;GUIDelete($gui) ;Exit EndFunc ;==>_RollUpGui Func _GuiGetPos($hWnd) $GuiPos = WinGetPos($hWnd) $GuiX = $GuiPos[0] $GuiY = $GuiPos[1] $GuiW = $GuiPos[2] $GuiH = $GuiPos[3] EndFunc ;==>_GuiGetPos For $i = 250 To 0 Step -10 WinSetTrans ( $gui, "", $i ) Sleep(50) Next Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script. Link to comment Share on other sites More sharing options...
_Kurt Posted August 19, 2007 Share Posted August 19, 2007 I love the effect of the RollUp, looks great. Awaiting Diablo III.. Link to comment Share on other sites More sharing options...
Mast3rpyr0 Posted August 19, 2007 Share Posted August 19, 2007 (edited) Thats cool. If you put a number like 50000 in the For loop then it keeps flashing. Edited August 19, 2007 by Mast3rpyr0 My UDF's : _INetUpdateCheck() My Programs : GameLauncher vAlpha, InfoCrypt, WindowDesigner, ScreenCap, DailyRemindersPick3GeneratorBackupUtility! Other : Bored? Click Here! Link to comment Share on other sites More sharing options...
gseller Posted August 19, 2007 Share Posted August 19, 2007 Both are very nice!! Link to comment Share on other sites More sharing options...
James Posted August 19, 2007 Share Posted August 19, 2007 Thats cool. If you put a number like 50000 in the For loop then it keeps flashing.Thats because a window transparency is solid at 250. Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ Link to comment Share on other sites More sharing options...
cramaboule Posted August 19, 2007 Author Share Posted August 19, 2007 That's good.If you use that with a modification of ResNullius' script for closing a window you get this...Cool as well !!! My Autoit programs: MAC Address - - Delete Temp Files - - Ping Test - - Play Video with VLC full screen dual monitors - - Set IP - - Pics Converter - - AutoUpdater - - CPU Usage - - Ending Script Nicely - - GDI+ GUI crossfades (slide transitions) - - Beamer - - Search and Search in Files - - Silent Ninite Others: Export Icons into Dll - - My website Link to comment Share on other sites More sharing options...
ResNullius Posted August 19, 2007 Share Posted August 19, 2007 That's good. If you use that with a modification of ResNullius' script ... @martin, you're really going to force me into making some sort of proper UDF out of this, aren't you In the meantime, here's a modification that incorporates stepping transparency throughout the entire rollup: expandcollapse popup#include <GuiConstants.au3> Global $GuiX, $GuiY, $GuiW, $GuiH $gui = GUICreate("My Gui") $rollup = GUICtrlCreateButton("RollItUp", 50, 200, 100, 20); GUISetState() While 1 $Msg = GUIGetMsg() Switch $Msg Case $GUI_EVENT_CLOSE Exit Case $rollup _RollUpGui($gui, 10) EndSwitch WEnd Func _RollUpGui($hWnd, $step, $delay = "default") Local $GuiClientH, $MinH, $TransStep, $TransCount = 0, $GuiTrans = 255 $GuiClientSize = WinGetClientSize($hWnd) $GuiClientH = $GuiClientSize[1] _GuiGetPos($hWnd) $TransStep = (125 / $step) / 3 $MinH = $GuiH - $GuiClientH While $GuiW > 0;$GuiPos[3] _GuiGetPos($hWnd) $TransCount += 1 If $GuiH > ($MinH) Then $GuiH -= $step $GuiY += $step / 2 Else $GuiH = $GuiH $GuiY = $GuiY $GuiW -= $step $GuiX += $step / 2 EndIf If $TransCount >= $TransStep Then $GuiTrans -= 10 $TransCount = 0 EndIf WinSetTrans($hWnd, "", $GuiTrans) WinMove($hWnd, "", $GuiX, $GuiY, $GuiW, $GuiH) If $delay = "default" Then $delay = ($step * 2) + ($step / 2) Sleep($delay) WEnd GUIDelete($hWnd) Exit EndFunc ;==>_RollUpGui Func _GuiGetPos($hWnd) $GuiPos = WinGetPos($hWnd) $GuiX = $GuiPos[0] $GuiY = $GuiPos[1] $GuiW = $GuiPos[2] $GuiH = $GuiPos[3] EndFunc ;==>_GuiGetPos Note: I changed some "$gui" references in the function to "$hWnd" since thats the way the function is called; problem was also in my original source. Link to comment Share on other sites More sharing options...
martin Posted August 19, 2007 Share Posted August 19, 2007 @martin, you're really going to force me into making some sort of proper UDF out of this, aren't you In the meantime, here's a modification that incorporates stepping transparency throughout the entire rollup: expandcollapse popup#include <GuiConstants.au3> Global $GuiX, $GuiY, $GuiW, $GuiH $gui = GUICreate("My Gui") $rollup = GUICtrlCreateButton("RollItUp", 50, 200, 100, 20); GUISetState() While 1 $Msg = GUIGetMsg() Switch $Msg Case $GUI_EVENT_CLOSE Exit Case $rollup _RollUpGui($gui, 10) EndSwitch WEnd Func _RollUpGui($hWnd, $step, $delay = "default") Local $GuiClientH, $MinH, $TransStep, $TransCount = 0, $GuiTrans = 255 $GuiClientSize = WinGetClientSize($hWnd) $GuiClientH = $GuiClientSize[1] _GuiGetPos($hWnd) $TransStep = (125 / $step) / 3 $MinH = $GuiH - $GuiClientH While $GuiW > 0;$GuiPos[3] _GuiGetPos($hWnd) $TransCount += 1 If $GuiH > ($MinH) Then $GuiH -= $step $GuiY += $step / 2 Else $GuiH = $GuiH $GuiY = $GuiY $GuiW -= $step $GuiX += $step / 2 EndIf If $TransCount >= $TransStep Then $GuiTrans -= 10 $TransCount = 0 EndIf WinSetTrans($hWnd, "", $GuiTrans) WinMove($hWnd, "", $GuiX, $GuiY, $GuiW, $GuiH) If $delay = "default" Then $delay = ($step * 2) + ($step / 2) Sleep($delay) WEnd GUIDelete($hWnd) Exit EndFunc ;==>_RollUpGui Func _GuiGetPos($hWnd) $GuiPos = WinGetPos($hWnd) $GuiX = $GuiPos[0] $GuiY = $GuiPos[1] $GuiW = $GuiPos[2] $GuiH = $GuiPos[3] EndFunc ;==>_GuiGetPos Note: I changed some "$gui" references in the function to "$hWnd" since thats the way the function is called; problem was also in my original source. Doesn't work very well on my old laptop PC- lots of flickering and the size change is not at all smooth. On my newer but not fast desktop PC it's even worse. For me it's best to keep the resizing and transparency separate. Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script. Link to comment Share on other sites More sharing options...
cramaboule Posted August 19, 2007 Author Share Posted August 19, 2007 Doesn't work very well on my old laptop PC- lots of flickering and the size change is not at all smooth. On my newer but not fast desktop PC it's even worse. For me it's best to keep the resizing and transparency separate.Even with the transparency alone I have some flickering as well !!!It is quite impressive what ideas of people can do when put toghether... My Autoit programs: MAC Address - - Delete Temp Files - - Ping Test - - Play Video with VLC full screen dual monitors - - Set IP - - Pics Converter - - AutoUpdater - - CPU Usage - - Ending Script Nicely - - GDI+ GUI crossfades (slide transitions) - - Beamer - - Search and Search in Files - - Silent Ninite Others: Export Icons into Dll - - My website Link to comment Share on other sites More sharing options...
ResNullius Posted August 19, 2007 Share Posted August 19, 2007 Doesn't work very well on my old laptop PC- lots of flickering and the size change is not at all smooth. On my newer but not fast desktop PC it's even worse. For me it's best to keep the resizing and transparency separate.Well, that sounds like a bit of a challenge I'm sure it can be done smoothly, just have to figure it out.However, I am leaving for a 3 or 4 day trip, sans computer or web access, so I'll have to have a go at it when I get back. Link to comment Share on other sites More sharing options...
fowmow Posted August 20, 2007 Share Posted August 20, 2007 Same here (regarding flickering and such). It looks choppy (assuming I'm using choppy correctly) and the fading doesn't even occur until its almost gone.I, admiring after ResNullius' code again, wrote an example of it with fade out. It's not pretty, and I do get *one* initial flicker, which I don't even undersand......but if anyone would like to see it, let me know. It's hard coded (I know, horrible), and probably sloppy to boot. Link to comment Share on other sites More sharing options...
fowmow Posted August 20, 2007 Share Posted August 20, 2007 For me it's best to keep the resizing and transparency separate.I don't follow. How would one do that, except for not having a transparency effect whilst resizing? Link to comment Share on other sites More sharing options...
BrettF Posted August 20, 2007 Share Posted August 20, 2007 @martin, you're really going to force me into making some sort of proper UDF out of this, aren't you In the meantime, here's a modification that incorporates stepping transparency throughout the entire rollup: expandcollapse popup#include <GuiConstants.au3> Global $GuiX, $GuiY, $GuiW, $GuiH $gui = GUICreate("My Gui") $rollup = GUICtrlCreateButton("RollItUp", 50, 200, 100, 20); GUISetState() While 1 $Msg = GUIGetMsg() Switch $Msg Case $GUI_EVENT_CLOSE Exit Case $rollup _RollUpGui($gui, 10) EndSwitch WEnd Func _RollUpGui($hWnd, $step, $delay = "default") Local $GuiClientH, $MinH, $TransStep, $TransCount = 0, $GuiTrans = 255 $GuiClientSize = WinGetClientSize($hWnd) $GuiClientH = $GuiClientSize[1] _GuiGetPos($hWnd) $TransStep = (125 / $step) / 3 $MinH = $GuiH - $GuiClientH While $GuiW > 0;$GuiPos[3] _GuiGetPos($hWnd) $TransCount += 1 If $GuiH > ($MinH) Then $GuiH -= $step $GuiY += $step / 2 Else $GuiH = $GuiH $GuiY = $GuiY $GuiW -= $step $GuiX += $step / 2 EndIf If $TransCount >= $TransStep Then $GuiTrans -= 10 $TransCount = 0 EndIf WinSetTrans($hWnd, "", $GuiTrans) WinMove($hWnd, "", $GuiX, $GuiY, $GuiW, $GuiH) If $delay = "default" Then $delay = ($step * 2) + ($step / 2) Sleep($delay) WEnd GUIDelete($hWnd) Exit EndFunc ;==>_RollUpGui Func _GuiGetPos($hWnd) $GuiPos = WinGetPos($hWnd) $GuiX = $GuiPos[0] $GuiY = $GuiPos[1] $GuiW = $GuiPos[2] $GuiH = $GuiPos[3] EndFunc ;==>_GuiGetPos Note: I changed some "$gui" references in the function to "$hWnd" since thats the way the function is called; problem was also in my original source.Thats cool... It didn't flicker on my pc. Thats just cause nothing else was running yet. I guess... Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version! Link to comment Share on other sites More sharing options...
martin Posted August 20, 2007 Share Posted August 20, 2007 I don't follow. How would one do that, except for not having a transparency effect whilst resizing?Precisely, see post #2. Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script. Link to comment Share on other sites More sharing options...
fowmow Posted August 20, 2007 Share Posted August 20, 2007 Oooh. The fade-out "title bar" script. Gotcha! Link to comment Share on other sites More sharing options...
Rizzet Posted August 20, 2007 Share Posted August 20, 2007 (edited) i diffrent way to do the same as ResNullius did.. i hope this isnt flickering expandcollapse popup#include <GuiConstants.au3> Global $GuiX, $GuiY, $GuiW, $GuiH $gui = GUICreate("My Gui") $rollup = GUICtrlCreateButton("RollItUp", 50, 200, 100, 20); GUISetState() While 1 $Msg = GUIGetMsg() Switch $Msg Case $GUI_EVENT_CLOSE Exit Case $rollup _RollUpGui($gui, 10) ExitLoop EndSwitch WEnd Func _RollUpGui($hWnd, $step, $delay = "default") Local $GuiClientH, $MinH Local $trans = 250 $GuiClientSize = WinGetClientSize($hWnd) $GuiClientH = $GuiClientSize[1] _GuiGetPos($hWnd) $MinH = $GuiH - $GuiClientH While $GuiW > 50;$GuiPos[3] _GuiGetPos($hWnd) If $GuiH > ($MinH) Then $GuiH -= $step $GuiY += $step / 2 Else $GuiH = $GuiH $GuiY = $GuiY $GuiW -= $step $GuiX += $step / 2 EndIf WinMove($gui, "", $GuiX, $GuiY, $GuiW, $GuiH) If $delay = "default" Then $delay = ($step * 2) + ($step / 2) Sleep($delay) ;Trans section WinSetTrans ( $gui, "", $trans) if $trans > $step then $trans -= $step/2 else WinSetTrans ( $gui, "", 0) endif WEnd ;GUIDelete($gui) ;Exit EndFunc ;==>_RollUpGui Func _GuiGetPos($hWnd) $GuiPos = WinGetPos($hWnd) $GuiX = $GuiPos[0] $GuiY = $GuiPos[1] $GuiW = $GuiPos[2] $GuiH = $GuiPos[3] EndFunc ;==>_GuiGetPos edit: oops posted wrong code.. Edited August 20, 2007 by Rizzet Link to comment Share on other sites More sharing options...
ResNullius Posted August 24, 2007 Share Posted August 24, 2007 Doesn't work very well on my old laptop PC- lots of flickering and the size change is not at all smooth. On my newer but not fast desktop PC it's even worse. For me it's best to keep the resizing and transparency separate.OK, I'm back from my little trip and have been tinkering with this a bit. I've cleaned up the code, changed some of the logic, and made the roll-up callable with or without 2 different transparency effects. Run the demo to see. I know there is probably a much simpler way of dealing with the whole logic of interspersing the transparency with the rollup, but I'm so far down this road that I can't see anything else right now. I've tested with different GUI styles and sizes but, as always, feedback appreciated on results, flicker, etc on different systems. Thanks @martin, Should now work OK with $WS_SIZEBOX and other styles @cramaboule, Sorry for hijacking your thread, but it's really martin's fault for combining the two ideas in the first place DEMO: expandcollapse popup#include <GuiConstants.au3> #include "_RollUpGui.au3" For $i = 0 To 2 Switch $i Case 0 $GuiTitle = "No Transparency" Case 1 $GuiTitle = "Transparency on Width Only" Case 2 $GuiTitle = "Transparency on Height & Width Both" EndSwitch $gui = GUICreate($GuiTitle, 400, 450, -1, -1);,$WS_Sizebox) $rollup = GUICtrlCreateButton("Roll It Up", 50, 200, 100, 20); GUISetState() While 1 $Msg = GUIGetMsg() Switch $Msg Case $GUI_EVENT_CLOSE Exit Case $rollup _RollUpGui ($gui, 5, Default, $i) ; use a value between 4 & 9 for best result ExitLoop EndSwitch WEnd GUIDelete($gui) Sleep(750) Next MsgBox(4096, "", "Demo finished", 1)oÝ÷ Ù´hU)è¿m«¢+Ø¥¹±Õµ½¹)±½°ÀÌØíÁÕ¥`°ÀÌØíÁÕ¥d°ÀÌØíÁÕ¥°ÀÌØíÁÕ¥ ()Õ¹}I½±±UÁÕ¤ ÀÌØí¡]¹°ÀÌØíÍÑÀôаÀÌØí±äôձаÀÌØíQɹÍ5Ñ¡½ôÀ¤ìÀô¹½¹°ÄôÑɹÌн¸]¥Ñ ½¹±ä°ÈôÑɹ̽¸]¥Ñ ¹!¥¡Ð(%1½°ÀÌØíÕ¥ ±¥¹Ñ °ÀÌØí5¥¹ °ÀÌØí5¥¹°ÀÌØíÕ¥=±°ÀÌØíQɹÍMÑÁÌ°ÀÌØíQÉ¹Í ½Õ¹ÐôÀ°ÀÌØíQɹÍ5àôÈÔÀ°ÀÌØíQɹÍ%¹Éµ¹ÐôÄÀ°ÀÌØíÕ¥QɹÌ($ÀÌØíÕ¥QɹÌôÀÌØíQɹÍ5à($ÀÌØíÕ¥ ±¥¹ÑM¥éô]¥¹Ñ ±¥¹ÑM¥é ÀÌØí¡]¹¤($ÀÌØíÕ¥ ±¥¹Ñ ôÀÌØíÕ¥ ±¥¹ÑM¥élÅt($ÀÌØíÕ¥ ±¥¹ÑôÀÌØíÕ¥ ±¥¹ÑM¥élÁt(%}Õ¥ÑA½Ì ÀÌØí¡]¹¤($ÀÌØíQɹÍMÑÁÌô ÀÌØíÕ¥ ±¥¹Ñ ¼ÀÌØíÍÑÀ¤¼ ÀÌØíQɹÍ5à¼ÀÌØíQɹÍ5Ñ¡½¤¼ÀÌØíQɹÍ%¹Éµ¹Ð¤($ÀÌØí5¥¹ ôÀÌØíÁÕ¥ ´ÀÌØíÕ¥ ±¥¹Ñ (%%ÀÌØí±äôÕ±ÐQ¡¸ÀÌØí±äô ÀÌØíÍÑÀ¨Ä¸Ô¤($ÀÌØíÉÍÐôÀ(%%ÀÌØí5¥¹ ±ÐìÈØQ¡¸ÀÌØí5¥¹ ôÈØ($ÀÌØíµå ½Õ¹ÐôÀÌØíQÉ¹Í ½Õ¹Ð(%]¡¥±ÀÌØíÁÕ¥ ÐìÀÌØí5¥¹ ì($$ÀÌØíÁÕ¥d¬ô ÀÌØíÍÑÀ¼È¤ì¼È¤($$ÀÌØíÁÕ¥ ´ôÀÌØíÍÑÀì¨È($%]¥¹5½Ù ÀÌØí¡]¹°ÅÕ½ÐìÅÕ½Ðì°ÀÌØíÁÕ¥`°ÀÌØíÁÕ¥d°ÀÌØíÁÕ¥°ÀÌØíÁÕ¥ ¤($%%ÀÌØíQɹÍ5Ñ¡½ÐìÄQ¡¸($$$ÀÌØíQÉ¹Í ½Õ¹Ð¬ôÄ($$%%ÀÌØíQÉ¹Í ½Õ¹ÐÐìôÀÌØíQɹÍMÑÁÌQ¡¸($$$$ÀÌØíÕ¥Qɹ̴ôÀÌØíQɹÍ%¹Éµ¹Ð($$$%%ÀÌØíÕ¥Qɹ̱ÐìôÀÌØíQɹÍ5à¼ÀÌØíQɹÍ5Ñ¡½Q¡¸($$$$$ÀÌØíÕ¥QɹÌôÀÌØíQɹÍ5à¼ÀÌØíQɹÍ5Ñ¡½($$$$$ÀÌØíÉÍЬôÄ($$$$% ½¹Ñ¥¹Õ1½½À($$$%¹%($$$%]¥¹MÑQÉ¹Ì ÀÌØí¡]¹°ÅÕ½ÐìÅÕ½Ðì°ÀÌØíÕ¥Qɹ̤($$$$ÀÌØíQÉ¹Í ½Õ¹ÐôÀ($$%¹%($$$ÀÌØíµå ½Õ¹Ð¬ôÄ($%¹%($%M±À ÀÌØí±ä¤(%]¹($($ÀÌØíQɹÍMÑÁÌô ÀÌØíÕ¥ ±¥¹Ñ¼ÀÌØíÍÑÀ¤¼ ÀÌØíQɹÍ5à¼ÀÌØíQɹÍ5Ñ¡½¤¼ÀÌØíQɹÍ%¹Éµ¹Ð¤($ÀÌØí±äôÀÌØí±ä¨Ä¸Ô($ÀÌØíQÉ¹Í ½Õ¹ÐôÀ(%]¡¥±ÀÌØíÁÕ¥ÐìÀÌØí5¥¹ì($$ÀÌØíÁÕ¥`¬ô ÀÌØíÍÑÀ¼È¤ì¼È¤($$ÀÌØíÁÕ¥´ôÀÌØíÍÑÀì¨È($%]¥¹5½Ù ÀÌØí¡]¹°ÅÕ½ÐìÅÕ½Ðì°ÀÌØíÁÕ¥`°ÀÌØíÁÕ¥d°ÀÌØíÁÕ¥°ÀÌØíÁÕ¥ ¤($%%ÀÌØíQɹÍ5Ñ¡½ÐìôÄQ¡¸($$$ÀÌØíQÉ¹Í ½Õ¹Ð¬ôÄ($$%%ÀÌØíQÉ¹Í ½Õ¹ÐÐìôÀÌØíQɹÍMÑÁÌQ¡¸($$$$ÀÌØíÕ¥Qɹ̴ôÀÌØíQɹÍ%¹Éµ¹Ð($$$%%ÀÌØíÕ¥Qɹ̱ÐìôÀQ¡¸($$$$$ÀÌØíÕ¥QɹÌôÀ($$$$% ½¹Ñ¥¹Õ1½½À($$$%¹%($$$%]¥¹MÑQÉ¹Ì ÀÌØí¡]¹°ÅÕ½ÐìÅÕ½Ðì°ÀÌØíÕ¥Qɹ̤($$$$ÀÌØíQÉ¹Í ½Õ¹ÐôÀ($$%¹%($$$ÀÌØíµå ½Õ¹Ð¬ôÄ($%¹%($%}Õ¥ÑA½Ì ÀÌØí¡]¹¤($%%ÀÌØíÕ¥=±ôÀÌØíÁÕ¥Q¡¸á¥Ñ1½½À($$ÀÌØíÕ¥=±ôÀÌØíÁÕ¥($%M±À ÀÌØí±ä¤(%]¹(%IÑÕɸ)¹Õ¹ìôôÐí}I½±±UÁÕ¤(()Õ¹}Õ¥ÑA½Ì ÀÌØí¡]¹¤($ÀÌØíÁÕ¥A½Ìô]¥¹ÑA½Ì ÀÌØí¡]¹¤($ÀÌØíÁÕ¥`ôÀÌØíÁÕ¥A½ÍlÁt($ÀÌØíÁÕ¥dôÀÌØíÁÕ¥A½ÍlÅt($ÀÌØíÁÕ¥ôÀÌØíÁÕ¥A½ÍlÉt($ÀÌØíÁÕ¥ ôÀÌØíÁÕ¥A½ÍlÍt)¹Õ¹ìôôÐí}Õ¥ÑA½Ì Link to comment Share on other sites More sharing options...
gseller Posted August 25, 2007 Share Posted August 25, 2007 Hello.. Windows XP SP2 Works Great! No flickering,,, Although when it rolls up and disapears it opens right back up till manually closed. Is this intended? Link to comment Share on other sites More sharing options...
ResNullius Posted August 25, 2007 Share Posted August 25, 2007 Hello.. Windows XP SP2 Works Great! No flickering,,, Although when it rolls up and disapears it opens right back up till manually closed. Is this intended? If you're talking about the demo it iterates through three instances as indicated by the Gui title(s):1) "No Transparency"2) "Transparency on Width Only"3) "Transparency on Height & Width Both"So just click the "Roll it up" button when the Gui reappears to see the next iteration.If that's not what you mean, can you explain or provide an example? Thanks. Link to comment Share on other sites More sharing options...
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