Jon 1,009 Posted May 16, 2020 AutoIt v3.3.15.3 Beta View File 3.3.15.3 (16th May, 2020) (Beta) AutoIt: - Added #3681: Lang Variable prefix "o". - Fixed #2915: Map memory leak. - Fixed: Map errors with index < 0. UDFs: - Changed #3620: Removed "stable" from _ArraySort function header. - Added #3670: DriveGetDrive() @error doc clarification. - Added #3574: GuiCtrlCreateInput() Doc $ES_AUTOHSCROLL precision. - Fixed: Problem with _WinAPI_GetFontResourceInfo & _WinAPI_GetFontMemoryResourceInfo - Fixed #3728: Added optional parameter to force single column 2D array to 1D. - Fixed #3678: Amended Help file to show that function with no text blanks a line, not removes it. - Fixed #3757: Added note to GUICtrlListView_SetColor* pages about need to use BGR format. - Fixed #3697: _WinAPI_GetOverlappedResult() failure. Submitter Jon Submitted 05/16/2020 Category Beta 1 3 FreeBeing, Musashi, Zedna and 1 other reacted to this Deployment Blog: https://www.autoitconsulting.com/site/blog/ SCCM SDK Programming: https://www.autoitconsulting.com/site/sccm-sdk/ Share this post Link to post Share on other sites
wyf 1 Posted May 16, 2020 3.3.15.3 Still not included _GUICtrlHeader_GetFilterText () 1 Exit reacted to this Share this post Link to post Share on other sites
HurleyShanabarger 7 Posted May 17, 2020 Not directly related to the beta, but the update file (https://www.autoitscript.com/autoit3/files/beta/update.dat) indicates that the normal version of the download is 3.3.14.4, but the downloaded file installs 3.3.14.5. Share this post Link to post Share on other sites
Se7enstars 14 Posted May 22, 2020 Dear Devs, please do that AutoIt support built-in *.png formats As: GuiCtrlCreatePic("Image.png", 0, 0, 100, 100); This most problem for autoiters. Thanks All my tutorials >> Watch and Subscribe Share this post Link to post Share on other sites
Musashi 317 Posted May 22, 2020 1 hour ago, Se7enstars said: This most problem for autoiters. Thanks Is there any basis for this assumption? What @Jon (and others) are currently implementing is, in my opinion, far more important for the whole (AutoIt-)community. Of course, native support of the PNG format would be a nice feature, but not of essential relevance. Besides, there are already several solutions using GDIPlus, e.g. : add-png-image-in-a-gui-window https://autoit.de/thread/45353-guictrlsetimageex/ (german) and some of @UEZ (as usual when it comes to GDIPlus ) "In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move." Share this post Link to post Share on other sites
Melba23 3,411 Posted May 22, 2020 Se7enstars, Look in my ExtMsgBox UDF to see how to display .png files - based on code from UEZ the GDI guru. You will see that it is not difficult. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites
Zedna 277 Posted May 24, 2020 As about PNG support in GUICtrlCreatePic(), there is ResourceEx UDF for this, so you can do it simply by 4 lines of code: 1) embed PNG to resources - #AutoIt3Wrapper_Res_File_Add=png_1.png, RT_RCDATA, PNG_1, 0 2) include UDF - #include 'ResourcesEx.au3' 3) create empty Pic control - $iPic_1 = GUICtrlCreatePic('', 0, 0, 100, 100) 4) set PNG image from resources to Pic control - _Resource_SetToCtrlID($iPic_1, 'PNG_1') 2 Se7enstars and Skysnake reacted to this Resources UDF ResourcesEx UDF AutoIt Forum Search Share this post Link to post Share on other sites
Melba23 3,411 Posted June 13, 2020 Jon, Can you take a look at this thread please - an interesting anomaly in Map syntax: M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Share this post Link to post Share on other sites