|

ProxyData


(table) A table containing the user's proxy information. You can pass nil (the default) to use the default proxy settings that are currently configured through Internet Explorer (recommended), or pass a table of specific proxy settings. (You may need to gather this information from the user.)


The table is indexed by the following keys:



KEY


TYPE DESCRIPTION


PUserName


string


The proxy user name.



PPassword


string


The proxy password.


PServerAddress


string


The proxy server address.


Re t u r n s


(boolean) True if the URL could be connected to, or false if it could not or an error occurs. You can use

Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

Im a g e


image

Image.GetFileInfo

OverviewExamples

table Image.GetFileInfo ( string Filename )


De s cr ip t ion


Returns the width, height and bit depth of an image file.


P arame t er s


Filename


(string) The full path to the image file.


Re t u r n s


(table) A table containing the object's pixel dimensions and bit depth, indexed by values "Width", "Height" and "BitDepth." If an error occurs (for example, the file doesn't exist), nil will be returned. You can use Application.GetLastError to determine whether this action failed, and why.


|