Scribble Posted February 18, 2006 Posted February 18, 2006 So I want an executable which has all the files I need in it, without using a self-extracting file. Is this possible? Off course I want to call functions in those -extra- files from within the autoit script. Could you explain how I could do this? Are jpg/bmp or avi's also possible to include as non-visaible resource files? Thanx!
Moderators SmOke_N Posted February 18, 2006 Moderators Posted February 18, 2006 (edited) So I want an executable which has all the files I need in it, without using a self-extracting file. Is this possible? Off course I want to call functions in those -extra- files from within the autoit script. Could you explain how I could do this?Are jpg/bmp or avi's also possible to include as non-visaible resource files?Thanx!Look at FileInstall() in the help file.Edit: Fixed Spelling Edited February 18, 2006 by SmOke_N Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Scribble Posted February 18, 2006 Author Posted February 18, 2006 Thanx man! Missed this function completely... The only disadvantage this method has, is that it still extracts the files I'm gonna use from the compiled autoit exe.
Valuater Posted February 18, 2006 Posted February 18, 2006 Thanx man! Missed this function completely... The only disadvantage this method has, is that it still extracts the files I'm gonna use from the compiled autoit exe. place them in a folder that most users don't ever see ; install pics $My_pic = @TempDir & "\XPClean.jpg" FileInstall("C:\Program Files\AutoIt3\Examples\XPClean.jpg", $My_pic) 8)
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