LimeSeed Posted October 28, 2008 Share Posted October 28, 2008 any way to double buffer images created with guictrlcreategraphic? global $warming = true Link to comment Share on other sites More sharing options...
martin Posted October 29, 2008 Share Posted October 29, 2008 any way to double buffer images created with guictrlcreategraphic?Yes. Maybe the easiest way is to have the window style $WS_EX_COMPOSITED ( = 0x2000000) which will double-buffer everything. 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...
LimeSeed Posted October 29, 2008 Author Share Posted October 29, 2008 Yes. Maybe the easiest way is to have the window style $WS_EX_COMPOSITED ( = 0x2000000) which will double-buffer everything.wow so its just Guicreate("BEST GUI EVER!!", 300, 300, $WS_EX_COMPOSITED ( = 0x2000000)) thats it?!??! awesome! global $warming = true Link to comment Share on other sites More sharing options...
LimeSeed Posted October 29, 2008 Author Share Posted October 29, 2008 wow so its just Guicreate("BEST GUI EVER!!", 300, 300, $WS_EX_COMPOSITED ( = 0x2000000)) thats it?!??! awesome!so i put this into my scriptGlobal Const $WS_EX_COMPOSITED = 0x2000000$hGUI = GUICreate("Pong", 200, 270, $WS_EX_COMPOSITED)but now it doesnt even show the gui! global $warming = true Link to comment Share on other sites More sharing options...
wraithdu Posted October 29, 2008 Share Posted October 29, 2008 $hGUI = GUICreate("Pong", 200, 270, -1, -1, -1, $WS_EX_COMPOSITED) 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