Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. display dialog "A virus has been detected! Ignore?" buttons {"Yes", "No"} default button 2
  2. if the button returned of the result is "Yes" then
  3.     display dialog "Your computer has malfunctioned. Restart?" buttons {"OK", "Cancel"} default button 1
  4.     if the button returned of the result is "OK" then
  5.         restart
  6.     else
  7.         display dialog "Your computer has malfunctioned. Restart?" buttons {"OK", "Cancel"} default button 1
  8.         if the button returned of the result is "OK" then
  9.             restart
  10.         else
  11.             restart
  12.            
  13.         end if
  14.     end if
  15. else
  16.     display dialog "To delete the virus, you must restart the computer. Restart?" buttons {"OK", "Cancel"} default button 2
  17.     if the button returned of the result is "OK" then
  18.         restart
  19.     else
  20.         display dialog "Your computer has malfunctioned. Restart?" buttons {"OK", "Cancel"} default button 1
  21.         if the button returned of the result is "OK" then
  22.             restart
  23.         else
  24.             restart
  25.            
  26.         end if
  27.     end if
  28. end if
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement