Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions help.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ <h3 id="Menu">Menu</h3>
<p><img src="static/img/header.png" class="image img-responsive center-block"
alt="A picture of the buttons along the top of the editor."/></p>

<p>As well as using a mouse, you can use the <kbd>TAB</kbd> key to navigate through the options and <kbd>Enter</kbd> to activate them. If you're in the text window, The <kbd>ESC</kbd> key will re-focus on the menu.
<p>As well as using a mouse, you can use the <kbd>TAB</kbd> key to navigate through the options and <kbd>Enter</kbd> to activate them. If you're in the text editor, The <kbd>ESC</kbd> key will re-focus on the menu.
</p>

<table class="table">
Expand Down Expand Up @@ -259,14 +259,14 @@ <h3 id="Menu">Menu</h3>
<p>The name and description for your script is shown on the top
right hand side. Click them to edit them.</p>

<h3 id="text-window">Text window</h3>
<p>The other part of the editor is the text window, where we edit our scripts.</p>
<h3 id="text-editor">Text Editor</h3>
<p>The Text Editor is where we write and edit our scripts.</p>

<p><img src="static/img/editor_text.png"
class="image img-responsive center-block img-rounded"
alt="A picture of the text area in the code editor."/></p>

<p>The editor tries to help out by colouring the text to show what
<p>The text editor tries to help out by colouring the text to show what
all the different parts of program are. For example, Python keywords
(words built into the Python language) are grey. The brighter coloured
words are bits of the program <em>you</em> have created. Brown words
Expand Down Expand Up @@ -336,8 +336,8 @@ <h2 id="fs">Files and Modules</h2>

<p>A status bar shows you the file types you have uploaded and how much free space you still have available.
The status bar is colour coded to indicate file types; main.py is purple and the external emoji.py shown in the example is green.
The <strong>main.py</strong> file is your program, the python script from the <a href="#text-window">text window</a>. It is pre-set in the status bar and cannot be removed.
If you try to upload another main.py file this will replace your code in the text window. The emoji.py is a python module, that we can now reference in main.py.</p>
The <strong>main.py</strong> file is your program, the python script from the <a href="#text-editor">text editor</a>. It is pre-set in the status bar and cannot be removed.
If you try to upload another main.py file this will replace your code in the text editor. The emoji.py is a python module, that we can now reference in main.py.</p>

<p>As you add files, they will appear in a list underneath the status bar. The list indicates
the filename, the file type, the size of the file and the options to download or to trash/delete the file if you have added it by accident.</p>
Expand Down