Return to site

Autocad Commands With Examples Pdf In Hindi

broken image


What is Scripting in AutoCAD?

Scripting is another method of automating tasks in AutoCAD, without the aid of programming languages like VBA or AutoLISP. We can create and manipulate AutoCAD objects, Open and Plot multiple drawings using Script files.

CUI into the command line. In the Customize tab, Customizations In pane, click the plus sign (+) next to the Keyboard Shortcuts node to expand it. Click the plus sign (+) next to the Shortcut Keys. To create a shortcut key, in the Command List pane, drag a command to the Shortcut Keys node in the Customizations. AutoCAD Commands के Basic Notes और Example इस Page पर है. AutoCAD Basic Commands List In Hindi. All AutoCAD Command List Download PDF. AutoCAD Commands Cheat Sheet B a s i c A c t i o n s S h o r t c u t / C o m m a n d D e s c r i p t i o n AUDIT Check and remove errors from your work CLOSEALL Close all of the open windows in AutoCAD CLOSEALLOTHER Close all open windows except for the one you are currently working on CO/ COPY Copy objects or text. Autocad Commands List With Explanation In Hindi Pdf Autocad Commands List With Explanation In Hindi Free Work faster and more efficiently by using the AutoCAD Keyboard Shortcuts below.

What is an AutoCAD Script File?

An AutoCAD script file is nothing more than a sequence of standard AutoCAD Commands. So, if you know how to type commands at the AutoCAD command prompt, you can easily create script files.

Why Script file?

Script files are small, lightweight, easy to use. Most importantly scripts save a great amount of time by cutting down the time required for manual labor.

How to create an AutoCAD Script File?

Any text editor can be used to create an AutoCAD script file. The commonly used text editor for this purpose is Notepad. AutoCAD script files use the extension .scr.

Examples

Script file to create ‘n' number of AutoCAD lines

First of all, I will create two AutoCAD lines using the command prompt of AutoCAD.

The first line starts at (500,500) and ends at (600,550). The second line starts at (700,450) and ends at (575, 630).

Like I mentioned in the introduction part, a script file is a series of AutoCAD commands. So, to create the same objects using a Script file, we just need to ‘type in the above command sequence into a Text file', ‘save it as a Script file' and ‘load it into AutoCAD'.

So, let us copy the command sequence from the command prompt and paste it into a text file.

Now, we have to remove everything except the inputs used at the command prompt to create the lines. The portions to remove are highlighted in pink color.

Following is what remain after cleaning and these two statements are enough to create 2 AutoCAD lines.

Note that there is a space character after the Y co-ordinate of every point.

A blank space in an AutoCAD script is equal to pressing the ‘Enter key' or the ‘Space bar'.

Save this text file as Test.scr. ‘Test' becomes the name of the script file and .scr is the extension of AutoCAD script file.

To load this script file into another AutoCAD drawing,

Open the drawing > Type in SCRIPT in the command bar and press the Enter Key

‘Select Script File' dialog will be activated. Select the file called Test.scr and click on Open.

Great! We just created two AutoCAD lines using an AutoCAD Script file.

The beauty of this method is that we can create hundreds or thousands of AutoCAD lines or any other AutoCAD objects using a single script file.

Try the following the script yourself which is meant to create 12 AutoCAD lines.

Useful commands related to Scripting

DELAY

DELAY command is used to specify the duration of a pause while executing the script.

The line DELAY 1000 in the script delays the execution of the next command for about one second. The longest delay we can use is 32767.

Autocad Commands With Examples Pdf In Hindi

RSCRIPT

RSCRIPT command can be used when you want a script to repeat multiple times.

Things to note while creating AutoCAD scripts

Dialog boxes

Autocad Commands With Examples Pdf In Hindi Download

AutoCAD commands that are followed by a dialog box will cause the script to stop in between. To avoid that, use a hyphen (-) before that particular command.

For example, LAYER command in AutoCAD prompts a dialog box called LAYER PROPERTIES MANAGER.

But when we use the statement ‘-LAYER‘, dialog box called LAYER PROPERTIES MANAGER will be suppressed and all options related to the LAYER command will be displayed in the command prompt.

Comments in AutoCAD Scripts

AutoCAD Scripts can contain descriptive text called ‘comment'. Comments can be used to add any kind of information regarding the script.

In AutoCAD Scripting, lines that begin with a semicolon (;) are considered as comments and will be ignored while processing the script.

The following is an AutoCAD script which will create 4 circles and 3 lines. The lines which begin with a semi colon are comments which I added as information for my colleagues.

Autocad commands with examples pdf in hindi pdf

As you can see in the command prompt, the first 2 lines which start with a semi colon are ignored and the Script started executing from the third line CIRCLE 950,550,195

It is a good practice to add comments if you intend to share the script with your co-workers. But avoid adding comment for the sake of it or commenting the obvious.

Command Aliases

AutoCAD command aliases may not be the same for all versions of AutoCAD. So, it is better to avoid using command aliases in script files.

Naming convention

Autocad Commands With Examples Pdf In Hindi Free

For the script to execute properly, File Names, File Paths and Layer Names that contain spaces should be enclosed in double quotes. For example, to open the drawing called Route Markings-R0 at E:Smart City ProjectReports and Drawings of my P.C, the statement should be:

Autocad

Course on AutoCAD Scripting

Autocad
With

RSCRIPT

RSCRIPT command can be used when you want a script to repeat multiple times.

Things to note while creating AutoCAD scripts

Dialog boxes

Autocad Commands With Examples Pdf In Hindi Download

AutoCAD commands that are followed by a dialog box will cause the script to stop in between. To avoid that, use a hyphen (-) before that particular command.

For example, LAYER command in AutoCAD prompts a dialog box called LAYER PROPERTIES MANAGER.

But when we use the statement ‘-LAYER‘, dialog box called LAYER PROPERTIES MANAGER will be suppressed and all options related to the LAYER command will be displayed in the command prompt.

Comments in AutoCAD Scripts

AutoCAD Scripts can contain descriptive text called ‘comment'. Comments can be used to add any kind of information regarding the script.

In AutoCAD Scripting, lines that begin with a semicolon (;) are considered as comments and will be ignored while processing the script.

The following is an AutoCAD script which will create 4 circles and 3 lines. The lines which begin with a semi colon are comments which I added as information for my colleagues.

As you can see in the command prompt, the first 2 lines which start with a semi colon are ignored and the Script started executing from the third line CIRCLE 950,550,195

It is a good practice to add comments if you intend to share the script with your co-workers. But avoid adding comment for the sake of it or commenting the obvious.

Command Aliases

AutoCAD command aliases may not be the same for all versions of AutoCAD. So, it is better to avoid using command aliases in script files.

Naming convention

Autocad Commands With Examples Pdf In Hindi Free

For the script to execute properly, File Names, File Paths and Layer Names that contain spaces should be enclosed in double quotes. For example, to open the drawing called Route Markings-R0 at E:Smart City ProjectReports and Drawings of my P.C, the statement should be:

Course on AutoCAD Scripting

I have created a comprehensive course on AutoCAD Scripting which is designed for all kind of AutoCAD users (Beginner to Advanced) who want to learn this advanced drafting method and save time spent for repetitive processes.

This course is divided into 6 sections

  • How to create AutoCAD objects like Line and Circe
  • How to use of Microsoft Excel or any other spreadsheet program to create Script files
  • How to create layers using script file and change the color of AutoCAD objects
  • How to create thousands of Text objects using Script file (with practical Examples)
  • How to import points into AutoCAD drawings using Script file (with practical Examples)
  • Simple Animations in AutoCAD, using Script file.
  • L-Ceps Personaltrainer Hindi is an adaptable language learning solution for individuals with a serious desire to break the language barriers of the Hindi language. Learn the Hindi language with this easy to use software.

    • File Name:ptrainer_hin_trial.exe
    • Author:L-Ceps Ltd.
    • License:Demo ($69.95)
    • File Size:13.89 Mb
    • Runs on:Win95, Win98, WinME, WinNT 3.x, WinNT 4.x, WinXP, Windows2000, Windows2003, Windows Vista
  • HindiTrans is English to Hindi Transliterator with Editor.Hindi Typing Made Easy Now with HindiTrans. ..

    • File Name:Hinditrans20.msi
    • Author:Rovisuam Micro Lab, Bhopal
    • License:Freeware (Free)
    • File Size:3.28 Mb
    • Runs on:Win95, Win98, WinME, WinXP
  • Batch convert DWG to PDF and DXF to PDF without need of AutoCAD AutoDWG DWG to PDF Converter let you batch convert DWG TO PDF, DXF TO PDF without need of AutoCAD. Features includes: 1.

    • File Name:DWG2PDF.EXE
    • Author:DWG to PDF Converter
    • License:Shareware ($99.00)
    • File Size:3.71 Mb
    • Runs on:Win95,Win98,WinME,WinNT 4.x,Windows2000,WinXP,Windows2003,Win Vista
  • Blogvani HindiToolbar offers you updated Hindi blogs, links to resources for computing in Hindi, all major Hindi news portals, hindi magazines, and a variety of other resources and websites that you need to enjoy working in the Hindi langauge.

    • File Name:blogvani.exe
    • Author:Publicsoft India
    • License:Freeware (Free)
    • File Size:862 Kb
    • Runs on:Win95, Win98, WinME, WinNT 3.x, WinNT 4.x, WinXP, Windows2000, Windows2003
  • E2H is very powerful software which is used to convert English Characters into HINDI. It is an Easy English to Hindi typing layout software.

    • File Name:5_Eng2Hindi_Setup.exe
    • Author:Multiicon
    • License:Shareware ($18.00)
    • File Size:23.25 Mb
    • Runs on:Win7 x32, Win7 x64, Win98, WinOther, WinServer, WinVista, WinVista x64, WinXP, Other
  • AutoCAD to PDF Converter is a batch converter that allows you to convert DWG to PDF, DXF to PDF without the need of AutoCAD. Key Features: 1. Stand-alone utility - AutoCAD NOT required. 2. Convert DWG and DXF to vector PDF in batches. 3. Supports. ..

    • File Name:tac2p88.exe
    • Author:AutoCAD-to-PDF
    • License:Shareware ($83.00)
    • File Size:4.36 Mb
    • Runs on:Win95, Win98, WinME, Windows2000, WinXP, Windows2003
  • It is an English to Hindi talkin software. Looking to Higher Educational revolution all over the Hindi comunity. In every day life, we need meaning in Hindi of english words and also need pronounciation of the english words.

    • File Name:MIHD.exe
    • Author:Multiicon
    • License:Shareware ($5.00)
    • File Size:14.65 Mb
    • Runs on:WinXP, WinME, Win2003, Win2000, Win Vista, Win98, Win95
  • Ms Office AutoCadPdf Scan a mac for virus. Psd Tiff Viewer Free Ms Office AutoCad Pdf Psd Tiff Viewer Free lets you view and print MS Office 95~2007(Doc,Docx,Xls,Xlsx,Xlt,Xltx,Ppt,Pptx,Vsd) , AutoCad R9~R2009(Dwg,Dxf) , PDF R1.0~R1.

    • File Name:DocViewSetup.exe
    • Author:Magic Software
    • License:Shareware ($)
    • File Size:24.82 Mb
    • Runs on:WinXP, Win2000, Win Vista
  • PDF to DXF importer allows you to convert pdf to dwg and pdf to dxf file. Do you get PDF files with CAD drawings inside? Now you can Import these PDF files and save them as DWG or DXF files. AutoDWG PDF to DWG importer can import all vector objects, text objects and let you add markups or edit lines directly in AutoCAD.

    • File Name:pdf2dxf.exe
    • Author:pdf to dxf
    • License:Shareware ($180.00)
    • File Size:5.5 Mb
    • Runs on:Win95,Win98,WinME,WinNT 4.x,Windows2000,WinXP,Windows2003,Win Vista
  • AutoDWG DWG to PDF Converter let you batch convert DWG to PDF, DXF to PDF without need of AutoCAD, Supports Command Line.Supports AutoCAD 2009. Keywords: dwg to pdf converter, dxf to pdf , autocad to pdf. ..

    • File Name:dwg2pdf.exe
    • Author:AutoDWG
    • License:Shareware ($186.00)
    • File Size:3.71 Mb
    • Runs on:Win95, Win98, WinME, WinNT 4.x, Windows2000, WinXP, Windows2003, Windows Vista
  • DWG to PDF Creator is a FREE lightweight powerful AutoCAD utility for creating PDF files from DWG, DXF and DWF files. Also, view and print AutoCAD files without having the expensive AutoCAD program installed.

    • File Name:dwgtopdf.zip
    • Author:SkySof Software Inc.
    • License:Freeware (Free)
    • File Size:17.19 Mb
    • Runs on:Win2000, Win7 x32, Win7 x64, Win98, WinOther, WinVista, WinVista x64, WinXP, Other
  • Convert DWG and DXF Files Quickly and Easily without the need of AutoCAD. AutoCAD DWG to PDF Converter converts DWG and DXF files to vector PDFs - and you don't need to have AutoCAD to use it. Page, view, and layout from your drawing are retained.

    • File Name:dwg2pdfsetup.exe
    • Author:AcroCAD Software GmbH
    • License:Shareware ($69.95)
    • File Size:4.77 Mb
    • Runs on:WinXP, Windows2000, Windows2003, Windows Vista, Win98, WinME, Windows

Related:Autocad Hindi E Book Pdf - Vast Book Pdf Hindi - Vastu Book Pdf Hindi - Hindi Virson Jyotish Book Pdf - Autocad P Id Book Pdf
Pages : <1 | 2 | 3




broken image