TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: ELOQUINTET on March 14, 2005, 03:11:26 PM

Title: dcl question
Post by: ELOQUINTET on March 14, 2005, 03:11:26 PM
i need help with the dcl file for cab's text insert routine. i am trying to set the default to create a 3 point leader. i modified this portion of the dcl but it still comes up with the no leader option as default. what have i missed?

Code: [Select]
                  "  : column { //  main right ***********************"
                   ""
                   "    : row { // row 1 ========================"
                   "      : boxed_radio_column { label = \"<  Use Leader with Text  >\";"
                   "        : radio_button { //define radio button"
                   "          label = \"No Leader - Text any angle\";"
                   "          key = \"rb1\"; "
                   "        } "
                   "        : radio_button { "
                   "          label = \"2 Pt Leader - Horizontal\";"
                   "          key = \"rb2\"; "
                   "        } "
                   "        : radio_button {"
                   "          label = \"3 Pt Leader - Horizontal\";"
                   "          key = \"rb3\";"
                   "          value = \"1\"; //make it default"
                   "        } "
                   "      }  // boxed_radio_column ========================"