TOC PREV NEXT INDEX

UIlaunchBrowser

Synopsis

module UIlaunchBrowser

module UIlaunchBrowser
  {
       int+Iparam trigger; // Usually connected to UIbutton.do
       string+Iparam filename; // name of file or a URL
       UIcore+IPort * parent; // any window
       // Use the standard helppath to search for files that are
       // relative pathnames. Even if set, filenames that look
       // like URL's or absolute pathnames will be used as is.
       int+IPort use_helppath = 0;
       omethod+notify_inst+req update(
            .trigger+read+req+notify,
            .filename+read+req,
            .parent+read,
            .use_helppath+read ) = "UIlaunchBrowserUpdate";
  };

Description

UIlaunchBrowser allows a button to be added to an application, which can be used to launch AVS/Express' online help.

Subobjects

Example

Not Available

File

v/UI.v

See Also Related Modules


TOC PREV NEXT INDEX