Gioking Posted September 6, 2007 Posted September 6, 2007 Hi everybody, I'm new of AutoIT so sorry for my repetitive ask. Anyway I known how to generate a XSkin gui but I don't understand how position my new window at specific coordinates x,y. Please help me Thank you in advance. Gioking
Valuater Posted September 6, 2007 Posted September 6, 2007 Like This... #include <XSkin.au3> ; folder of skin $Skin_Folder = @ScriptDir & "\Skins\Black-Yellow" $XSkinGui = XSkinGUICreate( "My GUI", 400, 450, $Skin_Folder) GUISetState() WinMove( $XSkinGui, "", 100, 100) ; **************** with this While 1 Sleep(10) WEnd ... TESTED OK 8)
Gioking Posted September 6, 2007 Author Posted September 6, 2007 Like This... #include <XSkin.au3> ; folder of skin $Skin_Folder = @ScriptDir & "\Skins\Black-Yellow" $XSkinGui = XSkinGUICreate( "My GUI", 400, 450, $Skin_Folder) GUISetState() WinMove( $XSkinGui, "", 100, 100) ; **************** with this While 1 Sleep(10) WEnd ... TESTED OK 8) Thank you very much it work Ok ! Gioking
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