天气与日历 切换到窄版

 找回密码
 立即注册
中国膜结构网
十大进口膜材评选 十大国产膜材评选 十大膜结构设计评选 十大膜结构公司评选
查看: 140|回复: 0

改变对象颜色

[复制链接]
  • TA的每日心情
    开心
    8 小时前
  • 签到天数: 86 天

    [LV.6]常住居民II

    1640

    主题

    207

    回帖

    214748万

    积分

    管理员

    积分
    2147483647
    发表于 2024-2-18 19:12:07 | 显示全部楼层 |阅读模式
    ;------------------------------------
    ;-功    能:改变对象颜色            -                -         -
    ;-快 捷 键:1~257                   -
    1. ;------------------------------------
    2. ;-功    能:改变对象颜色            -
    3. ;-作    者:LXF                     -
    4. ;-修订时间:2024-02-18              -
    5. ;-快 捷 键:1~257                   -
    6. ;------------------------------------
    7. (DEFUN $dfg:lxf_numcolor$ (/ I X)
    8. (setq I 1)
    9. (REPEAT 257
    10. (cond ((= i 256)
    11.        (progn (setq X
    12.                      (STRCAT "(defun c:"
    13.                              (ITOA I)
    14.                              "()(setvar "cmdecho" 0)(princ " "
    15.                              (STRCAT
    16.                                " 颜色改为< "
    17.                                "随层"
    18.                                " >号色 ")(if (setq ss (ssget))"
    19.                                "(vl-cmdf "change" ss "" "properties" "c" ""
    20.                                "bylayer"
    21.                                "" "")))"
    22.                               )
    23.                              "(princ)"
    24.                      )
    25.               )
    26.               (if X
    27.                 (PROGN (EVAL (READ X)))
    28.               )
    29.        )
    30.       )
    31.       ((= i 257)
    32.        (progn (setq X
    33.                      (STRCAT "(defun c:"
    34.                              (ITOA I)
    35.                              "()(setvar "cmdecho" 0)(princ " "
    36.                              (STRCAT
    37.                                " 颜色改为< "
    38.                                "随层"
    39.                                " >号色 ")(if (setq ss (ssget))"
    40.                                "(vl-cmdf "change" ss "" "properties" "c" ""
    41.                                "Byblock"
    42.                                "" "")))"
    43.                               )
    44.                              "(princ)"
    45.                      )
    46.               )
    47.               (if X
    48.                 (PROGN (EVAL (READ X)))
    49.               )
    50.        )
    51.       )
    52.       (t
    53.        (progn (setq X
    54.                      (STRCAT
    55.                        "(defun c:"
    56.                        (ITOA I)
    57.                        "()(setvar "cmdecho" 0)(princ " "
    58.                        (STRCAT " 颜色改为< "
    59.                                (ITOA I)
    60.                                " >号色 ")(if (setq ss (ssget))"
    61.                                "(vl-cmdf "change" ss "" "properties" "c" ""
    62.                                (ITOA I)
    63.                                "" "")))"
    64.                        )
    65.                        "(princ)"
    66.                      )
    67.               )
    68.               (if X
    69.                 (PROGN (EVAL (READ X)))
    70.               )
    71.        )
    72.       )
    73. )
    74.     (setq I (1+ I))
    75.   )
    76. )
    77. (defun c:jzys();加载颜色 更改颜色快捷命令为1~257
    78.   ($dfg:lxf_numcolor$))

    79. ;;;;---------------------------------------------------------
    80. ;定义函数 ($lxf:chang-color$ "bylayer")      
    81. ;程序开始
    82. (defun $lxf:chang-color$ (color_number / ss)
    83.   (setvar "cmdecho" 0)
    84.   (setq ss (ssget))
    85.   (while ss
    86.     (if ss (progn(vl-cmdf "_.CHANGE" ss "" "PROPERTIES" "C" color_number "")
    87.     (princ (strcat "\n *颜色改为<" color_number "> _BY 糯米88*"))
    88.     (setq ss (ssget))))(princ)
    89.   )
    90.   (princ)
    91. )
    92. (defun c:1()($lxf:chang-color$ "1"))
    93. (defun c:2()($lxf:chang-color$ "2"))
    94. (defun c:3()($lxf:chang-color$ "3"))
    95. (defun c:4()($lxf:chang-color$ "4"))
    96. (defun c:5()($lxf:chang-color$ "5"))
    97. (defun c:6()($lxf:chang-color$ "6"))
    98. (defun c:7()($lxf:chang-color$ "7"))
    99. (defun c:8()($lxf:chang-color$ "8"))
    100. (defun c:9()($lxf:chang-color$ "9"))
    101. (defun c:10()($lxf:chang-color$ "10"))
    102. (defun c:11()($lxf:chang-color$ "11"))
    103. (defun c:12()($lxf:chang-color$ "12"))
    104. (defun c:13()($lxf:chang-color$ "13"))
    105. (defun c:14()($lxf:chang-color$ "14"))
    106. (defun c:15()($lxf:chang-color$ "15"))
    107. (defun c:16()($lxf:chang-color$ "16"))
    108. (defun c:17()($lxf:chang-color$ "17"))
    109. (defun c:18()($lxf:chang-color$ "18"))
    110. (defun c:19()($lxf:chang-color$ "19"))
    111. (defun c:20()($lxf:chang-color$ "20"))
    112. (defun c:21()($lxf:chang-color$ "21"))
    113. (defun c:22()($lxf:chang-color$ "22"))
    114. (defun c:23()($lxf:chang-color$ "23"))
    115. (defun c:24()($lxf:chang-color$ "24"))
    116. (defun c:25()($lxf:chang-color$ "25"))
    117. (defun c:26()($lxf:chang-color$ "26"))
    118. (defun c:27()($lxf:chang-color$ "27"))
    119. (defun c:28()($lxf:chang-color$ "28"))
    120. (defun c:29()($lxf:chang-color$ "29"))
    121. (defun c:30()($lxf:chang-color$ "30"))
    122. (defun c:31()($lxf:chang-color$ "31"))
    123. (defun c:32()($lxf:chang-color$ "32"))
    124. (defun c:33()($lxf:chang-color$ "33"))
    125. (defun c:34()($lxf:chang-color$ "34"))
    126. (defun c:35()($lxf:chang-color$ "35"))
    127. (defun c:36()($lxf:chang-color$ "36"))
    128. (defun c:37()($lxf:chang-color$ "37"))
    129. (defun c:38()($lxf:chang-color$ "38"))
    130. (defun c:39()($lxf:chang-color$ "39"))
    131. (defun c:40()($lxf:chang-color$ "40"))
    132. (defun c:41()($lxf:chang-color$ "41"))
    133. (defun c:42()($lxf:chang-color$ "42"))
    134. (defun c:43()($lxf:chang-color$ "43"))
    135. (defun c:44()($lxf:chang-color$ "44"))
    136. (defun c:45()($lxf:chang-color$ "45"))
    137. (defun c:46()($lxf:chang-color$ "46"))
    138. (defun c:47()($lxf:chang-color$ "47"))
    139. (defun c:48()($lxf:chang-color$ "48"))
    140. (defun c:49()($lxf:chang-color$ "49"))
    141. (defun c:50()($lxf:chang-color$ "50"))
    142. (defun c:51()($lxf:chang-color$ "51"))
    143. (defun c:52()($lxf:chang-color$ "52"))
    144. (defun c:53()($lxf:chang-color$ "53"))
    145. (defun c:54()($lxf:chang-color$ "54"))
    146. (defun c:55()($lxf:chang-color$ "55"))
    147. (defun c:56()($lxf:chang-color$ "56"))
    148. (defun c:57()($lxf:chang-color$ "57"))
    149. (defun c:58()($lxf:chang-color$ "58"))
    150. (defun c:59()($lxf:chang-color$ "59"))
    151. (defun c:60()($lxf:chang-color$ "60"))
    152. (defun c:61()($lxf:chang-color$ "61"))
    153. (defun c:62()($lxf:chang-color$ "62"))
    154. (defun c:63()($lxf:chang-color$ "63"))
    155. (defun c:64()($lxf:chang-color$ "64"))
    156. (defun c:65()($lxf:chang-color$ "65"))
    157. (defun c:66()($lxf:chang-color$ "66"))
    158. (defun c:67()($lxf:chang-color$ "67"))
    159. (defun c:68()($lxf:chang-color$ "68"))
    160. (defun c:69()($lxf:chang-color$ "69"))
    161. (defun c:70()($lxf:chang-color$ "70"))
    162. (defun c:71()($lxf:chang-color$ "71"))
    163. (defun c:72()($lxf:chang-color$ "72"))
    164. (defun c:73()($lxf:chang-color$ "73"))
    165. (defun c:74()($lxf:chang-color$ "74"))
    166. (defun c:75()($lxf:chang-color$ "75"))
    167. (defun c:76()($lxf:chang-color$ "76"))
    168. (defun c:77()($lxf:chang-color$ "77"))
    169. (defun c:78()($lxf:chang-color$ "78"))
    170. (defun c:79()($lxf:chang-color$ "79"))
    171. (defun c:80()($lxf:chang-color$ "80"))
    172. (defun c:81()($lxf:chang-color$ "81"))
    173. (defun c:82()($lxf:chang-color$ "82"))
    174. (defun c:83()($lxf:chang-color$ "83"))
    175. (defun c:84()($lxf:chang-color$ "84"))
    176. (defun c:85()($lxf:chang-color$ "85"))
    177. (defun c:86()($lxf:chang-color$ "86"))
    178. (defun c:87()($lxf:chang-color$ "87"))
    179. (defun c:88()($lxf:chang-color$ "88"))
    180. (defun c:89()($lxf:chang-color$ "89"))
    181. (defun c:90()($lxf:chang-color$ "90"))
    182. (defun c:91()($lxf:chang-color$ "91"))
    183. (defun c:92()($lxf:chang-color$ "92"))
    184. (defun c:93()($lxf:chang-color$ "93"))
    185. (defun c:94()($lxf:chang-color$ "94"))
    186. (defun c:95()($lxf:chang-color$ "95"))
    187. (defun c:96()($lxf:chang-color$ "96"))
    188. (defun c:97()($lxf:chang-color$ "97"))
    189. (defun c:98()($lxf:chang-color$ "98"))
    190. (defun c:99()($lxf:chang-color$ "99"))
    191. (defun c:100()($lxf:chang-color$ "100"))
    192. (defun c:101()($lxf:chang-color$ "101"))
    193. (defun c:102()($lxf:chang-color$ "102"))
    194. (defun c:103()($lxf:chang-color$ "103"))
    195. (defun c:104()($lxf:chang-color$ "104"))
    196. (defun c:105()($lxf:chang-color$ "105"))
    197. (defun c:106()($lxf:chang-color$ "106"))
    198. (defun c:107()($lxf:chang-color$ "107"))
    199. (defun c:108()($lxf:chang-color$ "108"))
    200. (defun c:109()($lxf:chang-color$ "109"))
    201. (defun c:110()($lxf:chang-color$ "110"))
    202. (defun c:111()($lxf:chang-color$ "111"))
    203. (defun c:112()($lxf:chang-color$ "112"))
    204. (defun c:113()($lxf:chang-color$ "113"))
    205. (defun c:114()($lxf:chang-color$ "114"))
    206. (defun c:115()($lxf:chang-color$ "115"))
    207. (defun c:116()($lxf:chang-color$ "116"))
    208. (defun c:117()($lxf:chang-color$ "117"))
    209. (defun c:118()($lxf:chang-color$ "118"))
    210. (defun c:119()($lxf:chang-color$ "119"))
    211. (defun c:120()($lxf:chang-color$ "120"))
    212. (defun c:121()($lxf:chang-color$ "121"))
    213. (defun c:122()($lxf:chang-color$ "122"))
    214. (defun c:123()($lxf:chang-color$ "123"))
    215. (defun c:124()($lxf:chang-color$ "124"))
    216. (defun c:125()($lxf:chang-color$ "125"))
    217. (defun c:126()($lxf:chang-color$ "126"))
    218. (defun c:127()($lxf:chang-color$ "127"))
    219. (defun c:128()($lxf:chang-color$ "128"))
    220. (defun c:129()($lxf:chang-color$ "129"))
    221. (defun c:130()($lxf:chang-color$ "130"))
    222. (defun c:131()($lxf:chang-color$ "131"))
    223. (defun c:132()($lxf:chang-color$ "132"))
    224. (defun c:133()($lxf:chang-color$ "133"))
    225. (defun c:134()($lxf:chang-color$ "134"))
    226. (defun c:135()($lxf:chang-color$ "135"))
    227. (defun c:136()($lxf:chang-color$ "136"))
    228. (defun c:137()($lxf:chang-color$ "137"))
    229. (defun c:138()($lxf:chang-color$ "138"))
    230. (defun c:139()($lxf:chang-color$ "139"))
    231. (defun c:140()($lxf:chang-color$ "140"))
    232. (defun c:141()($lxf:chang-color$ "141"))
    233. (defun c:142()($lxf:chang-color$ "142"))
    234. (defun c:143()($lxf:chang-color$ "143"))
    235. (defun c:144()($lxf:chang-color$ "144"))
    236. (defun c:145()($lxf:chang-color$ "145"))
    237. (defun c:146()($lxf:chang-color$ "146"))
    238. (defun c:147()($lxf:chang-color$ "147"))
    239. (defun c:148()($lxf:chang-color$ "148"))
    240. (defun c:149()($lxf:chang-color$ "149"))
    241. (defun c:150()($lxf:chang-color$ "150"))
    242. (defun c:151()($lxf:chang-color$ "151"))
    243. (defun c:152()($lxf:chang-color$ "152"))
    244. (defun c:153()($lxf:chang-color$ "153"))
    245. (defun c:154()($lxf:chang-color$ "154"))
    246. (defun c:155()($lxf:chang-color$ "155"))
    247. (defun c:156()($lxf:chang-color$ "156"))
    248. (defun c:157()($lxf:chang-color$ "157"))
    249. (defun c:158()($lxf:chang-color$ "158"))
    250. (defun c:159()($lxf:chang-color$ "159"))
    251. (defun c:160()($lxf:chang-color$ "160"))
    252. (defun c:161()($lxf:chang-color$ "161"))
    253. (defun c:162()($lxf:chang-color$ "162"))
    254. (defun c:163()($lxf:chang-color$ "163"))
    255. (defun c:164()($lxf:chang-color$ "164"))
    256. (defun c:165()($lxf:chang-color$ "165"))
    257. (defun c:166()($lxf:chang-color$ "166"))
    258. (defun c:167()($lxf:chang-color$ "167"))
    259. (defun c:168()($lxf:chang-color$ "168"))
    260. (defun c:169()($lxf:chang-color$ "169"))
    261. (defun c:170()($lxf:chang-color$ "170"))
    262. (defun c:171()($lxf:chang-color$ "171"))
    263. (defun c:172()($lxf:chang-color$ "172"))
    264. (defun c:173()($lxf:chang-color$ "173"))
    265. (defun c:174()($lxf:chang-color$ "174"))
    266. (defun c:175()($lxf:chang-color$ "175"))
    267. (defun c:176()($lxf:chang-color$ "176"))
    268. (defun c:177()($lxf:chang-color$ "177"))
    269. (defun c:178()($lxf:chang-color$ "178"))
    270. (defun c:179()($lxf:chang-color$ "179"))
    271. (defun c:180()($lxf:chang-color$ "180"))
    272. (defun c:181()($lxf:chang-color$ "181"))
    273. (defun c:182()($lxf:chang-color$ "182"))
    274. (defun c:183()($lxf:chang-color$ "183"))
    275. (defun c:184()($lxf:chang-color$ "184"))
    276. (defun c:185()($lxf:chang-color$ "185"))
    277. (defun c:186()($lxf:chang-color$ "186"))
    278. (defun c:187()($lxf:chang-color$ "187"))
    279. (defun c:188()($lxf:chang-color$ "188"))
    280. (defun c:189()($lxf:chang-color$ "189"))
    281. (defun c:190()($lxf:chang-color$ "190"))
    282. (defun c:191()($lxf:chang-color$ "191"))
    283. (defun c:192()($lxf:chang-color$ "192"))
    284. (defun c:193()($lxf:chang-color$ "193"))
    285. (defun c:194()($lxf:chang-color$ "194"))
    286. (defun c:195()($lxf:chang-color$ "195"))
    287. (defun c:196()($lxf:chang-color$ "196"))
    288. (defun c:197()($lxf:chang-color$ "197"))
    289. (defun c:198()($lxf:chang-color$ "198"))
    290. (defun c:199()($lxf:chang-color$ "199"))
    291. (defun c:200()($lxf:chang-color$ "200"))
    292. (defun c:201()($lxf:chang-color$ "201"))
    293. (defun c:202()($lxf:chang-color$ "202"))
    294. (defun c:203()($lxf:chang-color$ "203"))
    295. (defun c:204()($lxf:chang-color$ "204"))
    296. (defun c:205()($lxf:chang-color$ "205"))
    297. (defun c:206()($lxf:chang-color$ "206"))
    298. (defun c:207()($lxf:chang-color$ "207"))
    299. (defun c:208()($lxf:chang-color$ "208"))
    300. (defun c:209()($lxf:chang-color$ "209"))
    301. (defun c:210()($lxf:chang-color$ "210"))
    302. (defun c:211()($lxf:chang-color$ "211"))
    303. (defun c:212()($lxf:chang-color$ "212"))
    304. (defun c:213()($lxf:chang-color$ "213"))
    305. (defun c:214()($lxf:chang-color$ "214"))
    306. (defun c:215()($lxf:chang-color$ "215"))
    307. (defun c:216()($lxf:chang-color$ "216"))
    308. (defun c:217()($lxf:chang-color$ "217"))
    309. (defun c:218()($lxf:chang-color$ "218"))
    310. (defun c:219()($lxf:chang-color$ "219"))
    311. (defun c:220()($lxf:chang-color$ "220"))
    312. (defun c:221()($lxf:chang-color$ "221"))
    313. (defun c:222()($lxf:chang-color$ "222"))
    314. (defun c:223()($lxf:chang-color$ "223"))
    315. (defun c:224()($lxf:chang-color$ "224"))
    316. (defun c:225()($lxf:chang-color$ "225"))
    317. (defun c:226()($lxf:chang-color$ "226"))
    318. (defun c:227()($lxf:chang-color$ "227"))
    319. (defun c:228()($lxf:chang-color$ "228"))
    320. (defun c:229()($lxf:chang-color$ "229"))
    321. (defun c:230()($lxf:chang-color$ "230"))
    322. (defun c:231()($lxf:chang-color$ "231"))
    323. (defun c:232()($lxf:chang-color$ "232"))
    324. (defun c:233()($lxf:chang-color$ "233"))
    325. (defun c:234()($lxf:chang-color$ "234"))
    326. (defun c:235()($lxf:chang-color$ "235"))
    327. (defun c:236()($lxf:chang-color$ "236"))
    328. (defun c:237()($lxf:chang-color$ "237"))
    329. (defun c:238()($lxf:chang-color$ "238"))
    330. (defun c:239()($lxf:chang-color$ "239"))
    331. (defun c:240()($lxf:chang-color$ "240"))
    332. (defun c:241()($lxf:chang-color$ "241"))
    333. (defun c:242()($lxf:chang-color$ "242"))
    334. (defun c:243()($lxf:chang-color$ "243"))
    335. (defun c:244()($lxf:chang-color$ "244"))
    336. (defun c:245()($lxf:chang-color$ "245"))
    337. (defun c:246()($lxf:chang-color$ "246"))
    338. (defun c:247()($lxf:chang-color$ "247"))
    339. (defun c:248()($lxf:chang-color$ "248"))
    340. (defun c:249()($lxf:chang-color$ "249"))
    341. (defun c:250()($lxf:chang-color$ "250"))
    342. (defun c:251()($lxf:chang-color$ "251"))
    343. (defun c:252()($lxf:chang-color$ "252"))
    344. (defun c:253()($lxf:chang-color$ "253"))
    345. (defun c:254()($lxf:chang-color$ "254"))
    346. (defun c:255()($lxf:chang-color$ "255"))
    347. (defun c:256()($lxf:chang-color$ "bylayer"))
    348. (defun c:257()($lxf:chang-color$ "Byblock"))
    349. (princ)
    复制代码



     

     

     

     

    改变对象颜色
    中国膜结构网打造全中国最好的膜结构综合平台 ,统一协调膜结构设计,膜结构施工,膜材采购,膜材定制,膜结构预算全方位服务。 中国空间膜结构协会合作单位。
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|Archiver|手机版|中国膜结构网_中国空间膜结构协会

    GMT+8, 2024-6-1 19:53 , Processed in 0.059400 second(s), 22 queries .

    Powered by Discuz! X3.5

    © 2001-2024 Discuz! Team.

    快速回复 返回顶部 返回列表