|

WindowMode


(number) The window mode to use:



CONSTANT


VALUE DESCRIPTION


SW_SHOWNORMAL


1


Normal. (Default)


SW_MAXIMIZE


3


Maximized.


SW_MINIMIZE


6


Minimized.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

File.OpenURL


OverviewExamples

image

File.OpenURL ( string URL,


number WindowMode = SW_SHOWNORMAL )


De s cr ip t ion


Opens a local file or web-based URL in the user's default Web browser.


Note: This action uses the default shell verb for the URL.


image

P arame t er s


URL


(string) The URL for the web page, or the path to the local file. Click the browse button if you would like to select a local file.


image

Note: The "http://" prefix is optional, but it's generally a good idea to include it so the page will be located faster.


|