Hello all,
Forgive me for what seems like a silly question, I’m new to this and can’t figure this out. I would like to launch a website when I click a button in the scripting block. Is this possible?
let purpose = await input.buttonsAsync(
'Are you Creating a Record?',
[
{label: 'Create', value: 'creating'}
],
);
if (purpose === 'creating') {
//LAUNCH URL HERE
}