Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. class ctrlMenuStrip;
  2. class display3DEN
  3. {
  4. class Controls
  5. {
  6. class MenuStrip : ctrlMenuStrip
  7. {
  8. class Items
  9. {
  10. items[] += {"PREFIX_Folder"};
  11. class PREFIX_Folder {
  12. text = "Text to display";
  13. items[] = {"PREFIX_SECTION"};
  14. };
  15. class PREFIX_SECTION
  16. {
  17. text = "Text to display";
  18. action = "edit3DENMissionAttributes 'PREFIX_SECTION';"; // Section: "Cfg3DEN" >> "Mission" >> "PREFIX_Settings"
  19. picture = "\path\to\my\icon"; // Optional
  20. };
  21. };
  22. };
  23. };
  24. };
  25.  
  26. class Cfg3DEN
  27. {
  28. class Mission
  29. {
  30. class PREFIX_SECTION
  31. {
  32. displayName = "Text to display";
  33. class AttributeCategories
  34. {
  35. class CATEGORY
  36. {
  37. displayName = "Text to display";
  38. collapsed = 0;
  39. class Attributes
  40. {
  41. class PREFIX_CATEGORY_var1
  42. {
  43. property = "PREFIX_CATEGORY_var1";
  44. displayName = "Text to display";
  45. tooltip = "Text to display";
  46. control = "Checkbox";
  47. expression = "true";
  48. defaultValue = "true";
  49. condition = "true";
  50. };
  51. };
  52. };
  53. };
  54. };
  55. };
  56. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement