nyke0 Posted August 26, 2014 Posted August 26, 2014 Is it possible to change the height in width of a gif image? I don't wanna resize the image, only how I let it show in my gui. $Image = GUICtrlCreatePic(@ScriptDir & '\example.gif', 0, 0, 100, 100) GUICtrlSetImage($Image, @ScriptDir & '\example_new.gif'); -> to 90, 90
jguinch Posted August 26, 2014 Posted August 26, 2014 (edited) GUICtrlSetPos() ? $Image = GUICtrlCreatePic(@ScriptDir & '\example.gif', 0, 0, 100, 100) GUICtrlSetImage($Image, @ScriptDir & '\example_new.gif') GUICtrlSetPos($Image, Default, Default, 90, 90) Edited August 26, 2014 by jguinch Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF
Zedna Posted August 26, 2014 Posted August 26, 2014 You can try ControlMove() but I'm not sure about the result ... Resources UDF ResourcesEx UDF AutoIt Forum Search
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