You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ a collection of NXOpen Python tutorials
6
6
7
7
### First steps:
8
8
9
-
In order to start with NX Python programing you need to prepare your NX settings. First step is to find the `Developer` tab at the top NX ribbon:
9
+
To start with NX Python programming, you need to prepare your NX settings. The first step is to find the `Developer` tab at the top NX ribbon:
10
10
11
11
12
12
@@ -17,9 +17,9 @@ In order to start with NX Python programing you need to prepare your NX settings
17
17
</center>
18
18
</pre>
19
19
20
-
if the tab does not exists already, rightclick on the top ribbon and find the `Developer` tab and activate it.
20
+
if the tab does not exists already, right-click on the top ribbon and find the `Developer` tab and activate it.
21
21
22
-
One great way to develop or learn NX Python programing is to record macros while using the GUI. By default NX saves macros in Visual Basic. To change that to Python, you need to go to `File > Preferences > User Interface`:
22
+
One great way to develop or learn NX Python programming is to record macros while using the GUI. By default, NX saves macros in Visual Basic. To change that to Python, you need to go to `File > Preferences > User Interface`:
23
23
24
24
<pre>
25
25
<center>
@@ -42,7 +42,7 @@ or press "<kbd>Ctrl</kbd> + 2" keyboard shortcut. Then in the `User Interface Pr
42
42
43
43
### Hello world!
44
44
45
-
Let's start with a very simple "Hello World!" example where a Message windows will show a text message (i.e., `string`).
45
+
Let's start with a very simple "Hello World!" example where a Message window will show a text message (i.e., `string`).
46
46
47
47
```Python
48
48
#ex0001.py
@@ -86,7 +86,7 @@ The result will be as the picture below:
86
86
87
87
88
88
89
-
The message box window is good for alerting the using of specific issues, however the texts are not searchable or selectable. Alternatively, we could use:
89
+
The message box window is good for alerting users of specific issues. However, the texts are not searchable or selectable. Alternatively, we could use:
0 commit comments