July 19, 200718 yr Hi, Is there a way to script a pop-up from a "Remove Attachment" button, alerting the user that they are about to remove it? This request might sound silly, but I have "user" concern that there will be instances where this button is unintentionally hit, followed by intense moment of freaking out... I would just like a pop-up to warn, "Are you sure you want to remove this attachment?" (= Thanks so much. Seattleflo
July 19, 200718 yr Just use a custom dialog in your remove attachment script to display your message. Allow the users to continue or cancel.
July 19, 200718 yr Uses these steps in your script: Show Custom Dialog [] If [ Get( LastMessageChoice ) = 1 ] Else If [ Get( LastMessageChoice ) = 2 ] Else If [ Get( LastMessageChoice ) = 3 ] End If The astute reader (or as Raymond Chen calls them, "nitpickers") will notice that the last Else If expression is redundant: since there are only three buttons, it could be replaced by an unconditional Else step and still function correctly.
Create an account or sign in to comment