After Submit - can I have the browser go to another web-page

After the user Submits, and gets the response, can I have the browser go to another web-page (external web-page)

Hi Ben
Sure can - you can use the $$BF_Actions global and commands from within FileMaker itself.
From the script you handle the submit you can do something like this
Set Variable $$BF_Actions
BF_SetAction_path ( “” ; JSONSetElement ( “{}” ;
[ “sameWindow” ; true ; JSONBoolean ];
[ “url” ; “http://myExternalWebPage.com” ; JSONString ]
) )