I am doing a custom page . And I want to do a hyperlink button . If button clicked Open browser to Url
How am I doing it ?
How am I doing it ?
-- These actions are triggered by the controls on the screen. if (e_MsgID == MSGID_CLICKED) then -- a button was clicked if (e_CtrlID == CTRL_BUTTON_01) then File.OpenURL("http://www.domain.com", SW_SHOWNORMAL); end end
Comment