Open URL upon app closing

oldteacher

Active member
Scripting is not my strong point by any means. Is it possible to call a URL (open website) when user closes the app? If possible, anyone have a working example?
 
I had a brain fart. Really pretty simple when you get the parameters correct:


Code:
procedure OnPubBeingClosed;
begin
  OpenFile("https://moreonlineprofit.com", "", "");
end;
 
Back
Top