Ribbon and Command line in 2009


คนที่ใช้ AutoCAD 2009 ขึ้นไปใหม่ๆ คงจะรู้สึกว่าแถบริบบอนด้านบน มันรกหูรกตา ถ้าเป็นเช่นนั้นก็มาใช้คำสั่งปิดมันซะดีกว่า เคยบอกน้องๆที่เคยทำงานด้วยกัน เรื่อง Ribbon กันไปแล้วว่าจะปิดก็ใช้คำสั่ง

Ribbonclose ส่วนจะเปิดมันขึ้นมาใหม่ก็ ใช้คำสั่ง Ribbon เท่านั้นเอง


ในส่วนของ เมนู Pull down จะเปิดมันขึ้นมาก็ใช้คำสั่ง Menuber ให้ค่าเป็น 1 จะปิดก็ให้ค่าเป็น 0 ซะ

ในส่วนของ Command line ที่มักจะมีน้องๆถามกันบ่อยๆว่ามันหายไป จะดึงมันออกมายังไง บอกไปทางโทรศัพท์แต่คงไม่ได้จดไว้ ก็เลยถามกันบ่อย คือ ใช้ Ctrl+9 จะสลับโหมด เปิดและปิดครับ

BEGINNER

BEGINNER

AutoCAD will now create a new drawing file named drawing1.dwg.


AutoCAD will default to 'model space'. For now it is sufficient to say that model space is the blank space where all the drawing is carried out. Paperspace (now called Layout space since AutoCAD 2000) isn't really required until we are ready to plot (print) the drawing.


Toolbars

There are many toolbars available in AutoCAD. Go to View > Toolbars from the drop down menu to see them all. For now make sure that the following toolbars are checked:

Draw - Contains AutoCADs most common drawing tools

Modify - Contains all of the common editing commands such as erase, copy etc.

Object Properties - Contains 'layer' information as well as object colours and line style options. (Covered Later).

Standard Toolbar - Contains open & save options as well as zoom & pan options.

Object Snap - AutoCAD's intelligent drawing aid - joins lines at specific points. (Covered later).

Change Layer - AutoLISP

Change Layer - AutoLISP ที่ใช้เปลี่ยนเลเยอร์แบบง่ายๆ โดยการกำหนดเลเยอร์ของวัตถุที่ต้องการเปลี่ยนให้เป็น แล้วเลือกวัตถุที่ต้องการให้เปลี่ยนตามครับผม


(defun c:chlayer (/ a1 a2 n index b1 b2 d1 d2 b3)

(graphscr)

(prompt "\nselect entities to be changed: ")

(setq a1 (ssget))

(prompt "\npoint to entity on target layer: ")

(setq a2 (entsel))

(setq n (sslength a1))

(setq index 0)

(setq b2 (entget (car a2)))

(setq d2 (assoc 8 b2))

(repeat n

(setq b1 (entget (ssname a1 index)))

(setq d1 (assoc 8 b1))

(setq b3 (subst d2 d1 b1))

(entmod b3)

(setq index (+ index 1))

)

(princ)

)

Command

AutoCAD command List
A
  • About  - แสดงไดอะล็อกบล็อค ระบุเวอร์ชั่นของ AutoCAD ; และหมายเลข serial numbers
  • Aperture - Controls the size of the Object Snap "OSNAP") target box -- should set to 7
  • Arc - Draws an arc. The default method of drawing arcs is selecting three points (so-called "3 point arc"), which are the two endpoints of the arc and some other point along its locus. Other methods of drawing an arc can be specified by three letters, such as SEA, which means "Start Point, End Point, and Included Angle."

AutoCAD,Learn Command,

จากที่ได้รู้จักหน้าตา และความเปลี่ยนแปลงของ AutoCAd ในแต่ละยุคกันมาบ้างแล้ว

การเริ่มเรียนรู้ โปรแกรม ในระดับที่ไม่เคยรู้อะไรมาเลย 
ในสิ่งแรกที่ต้องการให้รู้ โดยประสบการณ์ที่ได้เคยทำมา คือ 
การฝึกลองใช้คำสั่งต่างๆ ที่มีอยู่ในโปรแกรม 
โดยเริ่มจาก Pulldown menu ที่อยู่บริเวณรายการชุดคำสั่งด้านบน 
เริ่มจาก File  ไปเรื่อยๆ ตามลำดับ 
เพื่อที่จะทำให้รู้ในเบื้องต้นว่าคำสั่งต่างๆ คืออะไร มีหน้าที่อะไร ทำอะไรได้บ้าง 
เพื่อในกาลต่อไป สามารถที่จะประยุกต์ใช้ได้เหมาะสม รวดเร็ว ว่องไวเหนือใคร 
แล้วผมจะมาบอกกันต่อว่า ในคำสั่ง แต่ละคำสั่งทำอะไรกันได้บ้างครับ

AutoCAD history Drawing

Drawing
พัฒนาการขึ้นตามลำดับ
Townhouse Planning drawing sample






Monitor







AutoCAD 2.18 help screen

หนังสือคู่มือเล่มแรกของ AutoCAD


คลังบทความของบล็อก