Advertisement
Guest User

Untitled

a guest
May 29th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. menu * {
  2. Quick Tips {
  3. tips
  4. }
  5. }
  6. alias tips {
  7. if ($dialog(tips)) dialog -x tips
  8. dialog -m tips tips
  9. }
  10. dialog tips {
  11. option dbu
  12. title "Quick Tips - by Ashley"
  13. size 189 285 150 50
  14. text "", 1, 5 5 76 40, multi
  15. button "Next Tip", 2, 93 11 46 11
  16. button "Close Dialog", 3, 93 28 46 11, ok
  17. }
  18. on *:dialog:tips:*:*:{
  19. if ($devent == init) did -ra tips 1 $read(tips.txt)
  20. elseif ($devent == sclick && $did == 2) { did -ra tips 1 $read(tips.txt) }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement