GraaF1337 Posted August 30, 2014 Share Posted August 30, 2014 Hello! Im currently using this way to have .bmps in my script: InetGet("********.com", @TempDir & "\Close3.bmp", 1, 0) $Close = GUICtrlCreatePic(@TempDir & "\Close3.bmp", $Width - 19, 3, 8, 8) But it requires the user to download the .bmp instead of it just being compiled into the script. So i was wondering is it possible to compile it into the script it self? Link to comment Share on other sites More sharing options...
jchd Posted August 30, 2014 Share Posted August 30, 2014 See FileInstall() This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted August 30, 2014 Moderators Share Posted August 30, 2014 GraaF1337,A couple of possibilities to get images into a compiled .exe: 1. FileInstall. This places a copy of a file in your .exe which you can load onto the user's machine and then use from within your script. Read the Help file carefully and search for the many forum threads.2. Zedna's Resources UDF (here) or guinness' more advanced ResourcesEx UDF (here). These are more complicated to use, but allow you to use files stored in your .exe without having to copy them onto the user's machine. It requires more effort from the coder to get everything into the .exe, but does have the advantage of not having to load files onto a new machine - everything is self-contained. If you want to use this you MUST read the threads carefully and try out the examples - the UDFs are not difficult to use, but if you do not take the trouble to learn how to use them properly, you will have problems.I would recommend trying FileInstall first - if you can get what you want that way it is far simpler. 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 Link to comment Share on other sites More sharing options...
GraaF1337 Posted August 30, 2014 Author Share Posted August 30, 2014 GraaF1337, A couple of possibilities to get images into a compiled .exe: 1. FileInstall. This places a copy of a file in your .exe which you can load onto the user's machine and then use from within your script. Read the Help file carefully and search for the many forum threads. 2. Zedna's Resources UDF (here) or guinness' more advanced ResourcesEx UDF (here). These are more complicated to use, but allow you to use files stored in your .exe without having to copy them onto the user's machine. It requires more effort from the coder to get everything into the .exe, but does have the advantage of not having to load files onto a new machine - everything is self-contained. If you want to use this you MUST read the threads carefully and try out the examples - the UDFs are not difficult to use, but if you do not take the trouble to learn how to use them properly, you will have problems. I would recommend trying FileInstall first - if you can get what you want that way it is far simpler. M23 Thank you very much ill look into FileInstall and then the UDF's ! Link to comment Share on other sites More sharing options...
UEZ Posted August 30, 2014 Share Posted August 30, 2014 (edited) or 3. embedd the bitmap directly into your script by encoding the data to base64 or binary string ->>BinaryToAu3Kompressor>CreateFilesEmbedded>File to Base64 String Code GeneratorBr,UEZ Edited August 30, 2014 by UEZ Please don't send me any personal message and ask for support! I will not reply! Selection of finest graphical examples at Codepen.io The own fart smells best! ✌Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!¯\_(ツ)_/¯ ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ 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