Jaundice Posted September 11, 2009 Posted September 11, 2009 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?
ctyankeeinok Posted September 11, 2009 Posted September 11, 2009 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?
FireFox Posted September 11, 2009 Posted September 11, 2009 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 ;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.
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