Skip to content

Commit 9d2016b

Browse files
authored
Merge pull request #261 from processing/fix-export-link
Fix export link
2 parents 2d1d685 + 53111ce commit 9d2016b

File tree

3 files changed

+5
-16
lines changed

3 files changed

+5
-16
lines changed

content/pages/environment/index.de.mdx

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
slug: '/environment'
3-
title: 'Environment (IDE) GE'
2+
slug: "/environment"
3+
title: "Environment (IDE) GE"
44
---
55

66
<Intro>
@@ -32,35 +32,28 @@ The buttons on the toolbar can run and stop programs,
3232
<dl>
3333
<dt>
3434

35-
3635
<FixedImage marginRight={30} float={'left'} minWidth={40}>
3736

38-
3937
![Play button](./play.png)
4038

4139
</FixedImage>
4240

43-
4441
<b>Run</b>
4542
</dt>
4643
<dd>Runs the sketch. In Java mode, it compiles the code and opens a new display window. </dd>
4744
<dt>
4845

49-
5046
<FixedImage marginRight={30} float={'left'} minWidth={40}>
5147

52-
5348
![Stop button](./stop.png)
5449

5550
</FixedImage>
5651

57-
5852
<b>Stop</b>
5953
</dt>
6054
<dd>Terminates a running sketch.</dd>
6155
</dl>
6256

63-
6457
Additional commands are found within the six menus: File, Edit, Sketch, Debug, Tools, Help. The menus are context sensitive which means only those items relevant to the work currently being carried out are available.
6558

6659
#### File
@@ -469,14 +462,12 @@ The arrow button to the right of the tabs in the Processing Development Environm
469462

470463
<HighlightBlock>
471464

472-
473465
_Advanced_
474466

475467
When a program with multiple tabs is run, the code is grouped together and the classes in other tabs become inner classes. Because they're inner classes, they cannot have static variables. Simply place the "static" variable outside the class itself to do the same thing (it need not be explicitly named "static" once you list it in this manner). If you don't want code to be an inner class, you can also create a tab with a ".java" suffix, which means it will be interpreted as straight java code. It is also not possible to use static classes in separate tabs. If you do this, however, you'll need to pass the PApplet object to that object in that tab in order to get PApplet functions like `line()`, `loadStrings()` or `saveFrame()` to work.
476468

477469
</HighlightBlock>
478470

479-
480471
### Debug
481472

482473
The Processing Debugger is a tool for diagnosing problems with a sketch. Enable it to pause a sketch while running and advance through the code one line at a time. The debugger is enabled through the File menu (Debug &gt; Enable Debugger) or by clicking the Debugger icon, the butterfly in the upper-right corner of the PDE.
@@ -495,7 +486,6 @@ This mode makes it possible to write short programs to draw to the screen, but a
495486

496487
<HighlightBlock>
497488

498-
499489
_Advanced_
500490

501491
Java files with the extension .java can be included with a Java mode sketch. They may be created directly in the PDE or copied into the sketch folder through the "Add File..." item in the Sketch menu or dragged into the text editor. It's possible to write any Java code in files with the .java extension. In fact, complete Java code can be written from inside the Processing Environment by subclassing PApplet like this:
@@ -508,7 +498,6 @@ This is for advanced developers only and is not really recommended. Using this t
508498

509499
</HighlightBlock>
510500

511-
512501
### Adding Libraries, Tools, and Modes
513502

514503
Processing 3.0 includes a set of features to make it easier to install, update, and remove Libraries, Tools, Modes, and Examples.
@@ -523,4 +512,4 @@ Add contributed Examples by first opening the "Examples..." submenu from the Fil
523512

524513
### Export
525514

526-
The [Export information and Tips](https://github.com/processing/processing/wiki/Export-Info-and-Tips") page on the Processing Wiki covers the details of exporting Applications from Java mode.
515+
The [Export information and Tips](https://github.com/processing/processing/wiki/Export-Info-and-Tips) page on the Processing Wiki covers the details of exporting Applications from Java mode.

content/pages/environment/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,4 +514,4 @@ Add contributed Examples by first opening the "Examples..." submenu from the Fil
514514

515515
## Export
516516

517-
The [Export information and Tips](https://github.com/processing/processing/wiki/Export-Info-and-Tips") page on the Processing Wiki covers the details of exporting Applications from Java mode.
517+
The [Export information and Tips](https://github.com/processing/processing/wiki/Export-Info-and-Tips) page on the Processing Wiki covers the details of exporting Applications from Java mode.

content/tutorials/text/processing-overview/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ void mousePressed() {
160160

161161
One of the most significant features of the Processing environment is its ability to bundle your sketch into an application with just one click. Select File &rarr; Export Application to package your current sketch as an application. This will bundle your sketch as an application for Windows, Mac OS X, or Linux depending on which operating system you're exporting from. The application folders are overwritten whenever you export&mdash;make a copy or remove them from the sketch folder before making changes to the contents of the folder. Alternatively, you can turn off the automatic file erasure in the Preferences.
162162

163-
More about the export features can be found in the reference at [http://processing.org/reference/environment/#Export](http://processing.org/reference/environment/#Export).
163+
More about the export features can be found in the Environment page at [https://processing.org/environment/#export](https://processing.org/environment/#export).
164164

165165
## Creating images from your work
166166

0 commit comments

Comments
 (0)