Calling URL From Menu Item

Good Day,

I know how to put a URL in a Grid Field and have it display but would like to be able to call a URL from a menu option. The URL will have to be amended before executing so that the Querystring Parameters can be added. The called URL should still display in the Scriptcase application.

Any help would be greatly appreciated.

Campbell Fuller

I think you use the event ONEXECUTE for that. so you can change parametes for your url.

Yes, use OnExecute event in Menu as suggested by alvagar

onExecute
// You can get the menu item which is the ID in Menu Setting
if ({sc_menu_item} == “item_10”) {
$URL = Your URL with parameter;
// redirect to the URL
}

Looks like you missed the crucial part of the question.
This line does not explain anything :frowning: