Jump to content

Recommended Posts

Posted

So I want an executable which has all the files I need in it, without using a self-extracting file. Is this possible? :o

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
Posted (edited)

So I want an executable which has all the files I need in it, without using a self-extracting file. Is this possible? :o

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 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.

Posted

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.

Posted

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)

NEWHeader1.png

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...