Returns the URL of the most recently clicked link control (event mode).
Takes no parameters.
Returns the value of global variable clickedLinkURL.
BGI GUI
Parameters & Returns
Parameters
This function takes no parameters.
Returns
String
Quick Summary
Returns the URL of the most recently clicked link control (event mode).
Takes no parameters.
Returns the value of global variable clickedLinkURL.
Technical Exegesis...
Returns the URL of the most recently clicked link control (event mode). Returns the value of global variable clickedLinkURL. This value is set when a link control (created with isEvent=1) is clicked, triggering a BGI_EVENT_COMMAND_CLICK event with BGI_EVENT_ID_LINK.
This function retrieves the URL from the last link click event. The clickedLinkURL global is updated only when link controls in event mode (isEvent=1) are clicked. Links in direct mode (isEvent=0) open URLs directly without setting this global.
Returns the URL of the most recently clicked link control (event mode). Returns the value of global variable clickedLinkURL. This value is set when a link control (created with isEvent=1) is clicked, triggering a BGI_EVENT_COMMAND_CLICK event with BGI_EVENT_ID_LINK.
This function retrieves the URL from the last link click event. The clickedLinkURL global is updated only when link controls in event mode (isEvent=1) are clicked. Links in direct mode (isEvent=0) open URLs directly without setting this global. Use in event processing: when bgiGetEventMessage() returns BGI_EVENT_COMMAND_CLICK and bgiGetEventID() returns BGI_EVENT_ID_LINK, call bgiGetLinkURL() to determine which URL was clicked. Common pattern: create multiple links with unique URLs, handle clicks via event system, use bgiGetLinkURL() to route logic based on clicked URL.