Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/02/2021 in all areas

  1. nice acet function (setq yesno (acet-ui-message "Insert new command(s) [Yes/<No>]? " "" 4) ) 6 is yes 7 is no
    2 points
  2. https://www.bleepingcomputer.com/news/security/autodesk-reveals-it-was-targeted-by-russian-solarwinds-hackers/
    1 point
  3. I moved your thread to the AutoLISP, Visual LISP & DCL Forum. Please post in the correct forum.
    1 point
  4. For someone else who wants to do the same: Base types 0 = Acet:OK 1 = Acet:OKCANCEL 2 = Acet:ABORTRETRYIGNORE 3 = Acet:YESNOCANCEL 4 = Acet:YESNO 5 = Acet:RETRYCANCEL Icons 16 = Acet:ICONSTOP 32 = Acet:ICONQUESTION 48 = Acet:ICONWARNING 64 = Acet:ICONINFORMATION Default buttons 0 = Acet:DEFBUTTON1 256 = Acet:DEFBUTTON2 512 = Acet:DEFBUTTON3 768 = Acet:DEFBUTTON4 Return Values Returns one of the following values: 1 = Acet:IDOK 2 = Acet:IDCANCEL 3 = Acet:IDABORT 4 = Acet:IDRETRY 5 = Acet:IDIGNORE 6 = Acet:IDYES 7 = Acet:IDNO 8 = Acet:IDCLOSE 9 = Acet:IDHELP
    1 point
  5. Add heading: (setq yesno (acet-ui-message "Insert new command(s) [Yes/<No>]? " "MESSAGE" 4)) Last number 1: Last number 2: Last number 3: Last number 4: Last number 5: Last number 6:
    1 point
  6. Congratulations on finding that article. However it is dated 2015, and my research lead me to believe that from version 2018 and onwards, it was possible. So perhaps you should update!!
    1 point
  7. I have added strcase, so you can also answer in lower case. If you don't do if for both cases, the program only terminates when "N" is present. (initget (strcase "Y N")) (setq request (getkword "Want to do something more? [Yes/No] ")) (if (wcmatch request "N") (vl-exit-with-error (alert "the lisp is finished")) ) (alert "i will do some more commands..")
    1 point
  8. You have hard clip limits set LL & UR I would use those with a Plot Window Center. This should work every time. inside your printer/plotter ie the actual printer not pc often the firmware limits can be set and an option can be to change margins, the firmware will override the plot output.
    1 point
×
×
  • Create New...