Hi @DomMB001 ,
Do you want to jump a pop up with two buttons after you click "Trash" icon?
If so, I've made a similar test for your reference:
1)insert a button named Trash
insert a Rectangle1 named window
insert two buttons named "Cancel" and "Delete"
put Rectangle in the position that you want the pop up window shows
put "Cancel" and "Delete" button inside the Rectangle
2) set Trash's OnSelect:
Set(var,true)
set Rectangle1's Visible:
If(var,true,false)
set cancel button's Visible:
If(var,true,false)
set cancel button's OnSelect:
Set(var,false)
set delete button's OnSelect:
Remove(collectMultiScan,ScannedBoxes.Selected);UpdateContext({varShowPopupDelete:false});Set(var,false)
set delete button's Visible:
If(var,true,false)
set the screen's OnVisible:
Set(var,false)
//Then, at the beginning, the pop up window is invisible, after you click the trash button, the window shows. If you click the cancel button, the window disappear. If you click the delete button, firstly act the action that you want then the window will disappear.

Best regards,