Version 3, last updated by judah at Sep 12 21:18 2009 UTC
Navigating to a remote URL
You can navigate to a remote URL by entering the URL in the hyperlink property.
<controls:TextLink text="Google" hyperlink="http://www.google.com"/>
If you specify the hyperlinkTarget you can specify a window by name or use a browser target keyword.
The following will open in a new blank browser window,
<controls:TextLink text="Google" hyperlink="http://www.google.com" hyperlinkTarget="_blank"/>
The following will open in a window named or to be named "window1"
<controls:TextLink text="Google" hyperlink="http://www.google.com" hyperlinkTarget="window1"/>
This will open in the current window,
<controls:TextLink text="Google" hyperlink="http://www.google.com" hyperlinkTarget="_self"/>
This will open in the top most frame,
<controls:TextLink text="Google" hyperlink="http://www.google.com" hyperlinkTarget="_top"/>