Example #1
0
        private static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            CommandEditDialog dialog = new CommandEditDialog(new ControlLabel());

            dialog.ShowDialog();

            Processor commandProcessor = new Processor(BlastIr, new string[] { "Default", "Port 1" });

            string[] categories = new string[]
            {
                Processor.CategoryControl,
                Processor.CategoryVariable,
                Processor.CategoryStack,
                Processor.CategoryGeneral,
                Processor.CategoryMediaPortal,
                Processor.CategoryIRCommands,
                Processor.CategoryMacros,
                Processor.CategorySpecial
            };

            try
            {
                EditMacro edit1 = new EditMacro(
                    commandProcessor,
                    @"C:\Documents and Settings\All Users.WINDOWS\Application Data\IR Server Suite\MP Blast Zone Plugin\Macro\",
                    categories);

                edit1.ShowDialog();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }

            try
            {
                EditMacro edit2 = new EditMacro(
                    commandProcessor,
                    @"C:\Documents and Settings\All Users.WINDOWS\Application Data\IR Server Suite\MP Blast Zone Plugin\Macro\",
                    categories,
                    @"C:\Documents and Settings\All Users.WINDOWS\Application Data\IR Server Suite\MP Blast Zone Plugin\Macro\Toggle Example.Macro");

                edit2.ShowDialog();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
        }
Example #2
0
    private static void Main()
    {
      Application.EnableVisualStyles();
      Application.SetCompatibleTextRenderingDefault(false);

      CommandEditDialog dialog = new CommandEditDialog(new ControlLabel());
      dialog.ShowDialog();

      Processor commandProcessor = new Processor(BlastIr, new string[] {"Default", "Port 1"});

      string[] categories = new string[]
                              {
                                Processor.CategoryControl,
                                Processor.CategoryVariable,
                                Processor.CategoryStack,
                                Processor.CategoryGeneral,
                                Processor.CategoryMediaPortal,
                                Processor.CategoryIRCommands,
                                Processor.CategoryMacros,
                                Processor.CategorySpecial
                              };

      try
      {
        EditMacro edit1 = new EditMacro(
          commandProcessor,
          @"C:\Documents and Settings\All Users.WINDOWS\Application Data\IR Server Suite\MP Blast Zone Plugin\Macro\",
          categories);

        edit1.ShowDialog();
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.ToString());
      }

      try
      {
        EditMacro edit2 = new EditMacro(
          commandProcessor,
          @"C:\Documents and Settings\All Users.WINDOWS\Application Data\IR Server Suite\MP Blast Zone Plugin\Macro\",
          categories,
          @"C:\Documents and Settings\All Users.WINDOWS\Application Data\IR Server Suite\MP Blast Zone Plugin\Macro\Toggle Example.Macro");

        edit2.ShowDialog();
      }
      catch (Exception ex)
      {
        MessageBox.Show(ex.ToString());
      }
    }