andy_lee Posted May 10, 2015 Posted May 10, 2015 (edited) Dear all. I want add ICONS to the menu. How to modify this code ? Thanks for any help! BTW .My Icons in a DLL file. (defun create_klscl (/ f i) (if (not (menugroup "KLSCL")) (progn (setq f (open "KLSCL.mnu" "W")) (write-line "***MENUGROUP=KLSCL" f) (write-line "" f) (write-line "***POP1" f) (write-line "" f) (write-line "[Text tools]" f) (write-line " [--]" f) (write-line " [Text Align TA]^C^CTA" f) (write-line " [--]" f) (write-line " [Text Merge TM]^C^CTM" f) (write-line " [->Modify ]" f) 。 (write-line " [Add Prefix ADDP]^C^CADDP" f) (write-line " [<-Add Suffix ADDS]^C^CADDS" f) (close f) (command "menuload" "KLSCL.mnu") (if (menugroup "KLSCL") ........ ........ ........ Edited May 10, 2015 by andy_lee add image Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.