Jump to content

Recommended Posts

Posted

I've been able to add an image to my GUI, but I'd like to be able to get it to appear relative to it's location, since right now it's absolutely defined, i.e. "C:\Documents and Settings\Username\Desktop\MyAutoitScript\image.jpg"

Is there any way to be able to recognize the image location in relation to a directory, so I could just have it check the MyAutoItScript directory for the image and load it where I want it to?

Posted

If you are including the image in the exe, it should get deposited in the same directory that the exe exists when it is run, therefore you don't have to add a path to find it. Is that what you want?

Posted

I've been able to add an image to my GUI, but I'd like to be able to get it to appear relative to it's location, since right now it's absolutely defined, i.e. "C:\Documents and Settings\Username\Desktop\MyAutoitScript\image.jpg"

Is there any way to be able to recognize the image location in relation to a directory, so I could just have it check the MyAutoItScript directory for the image and load it where I want it to?

I have half understood so I give you some examples and maybe you will find what you want :D

;in the case your script is in the picture directory
"image.jpg" or @ScriptDir & "\image.jpg"

;in the case your picture is in another folder
@DesktopDir & "\MyAutoitScript\image.jpg"

Cheers, FireFox.

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...