home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2006 September / PCpro_2006_09.ISO / ubcd / tutorials / convert / custom.scn next >
Encoding:
Text File  |  2005-06-20  |  2.1 KB  |  42 lines

  1. #
  2. # User-defined Tools
  3. #
  4. custom_menu:
  5. set textColor = color[white on black]
  6. clear
  7. set textColor = color[yellow on blue]
  8. print "                            ULTIMATE BOOT CD VER 3.1                            "
  9. print "                         http://www.ultimatebootcd.com/                         "
  10. print "                                                                                "
  11. set textColor = color[white on red]
  12. print "                              [PowerQuest Tools]                                "
  13. set textColor = color[white on cyan]
  14. print "                                                                                "
  15. set textColor = color[brightgrey on cyan]
  16. print " [F1] PowerQuest Partition Magic                                                "
  17. print "                                                                                "
  18. set textColor = color[brightgrey on cyan]
  19. print " [F2] PowerQuest Drive Image                                                    "
  20. print "                                                                                "
  21. print "                                                                                "
  22. print "                                                                                "
  23. print "                                                                                "
  24. print "                                                                                "
  25. print "                                                                                "
  26. print "                                                                                "
  27. print "                                                                                "
  28. set textColor = color[white on blue]
  29. print "             Please select an item (ESC to return to previous menu)             "
  30. set textColor = color[white on black]
  31.  
  32. #
  33. # Actions
  34. #
  35. getkey 500 script boothdd0.scn
  36. clear
  37. if ($lastKey == key[f1]); then diskemu \images\PQPM.IMA
  38. if ($lastKey == key[f2]); then diskemu \images\PQDI.IMA
  39. if ($lastKey == key[esc]); then script main.scn
  40. goto custom_menu
  41.  
  42.