diff --git a/src/net/apocalypselabs/symat/Help.form b/src/net/apocalypselabs/symat/Help.form index 8136aec..a23ba56 100644 --- a/src/net/apocalypselabs/symat/Help.form +++ b/src/net/apocalypselabs/symat/Help.form @@ -66,15 +66,16 @@ - + - - - + + + + diff --git a/src/net/apocalypselabs/symat/Help.java b/src/net/apocalypselabs/symat/Help.java index ee372d9..95d9f57 100644 --- a/src/net/apocalypselabs/symat/Help.java +++ b/src/net/apocalypselabs/symat/Help.java @@ -127,7 +127,11 @@ public class Help extends javax.swing.JInternalFrame { setBackground(Color.LIGHT_GRAY); styleloaded = 0; } - loadTopic(topicList.getSelectedValue().toString().toLowerCase()); + try { + loadTopic(topicList.getSelectedValue().toString().toLowerCase()); + } catch (Exception ex) { + loadTopic("welcome"); + } } } @@ -172,7 +176,7 @@ public class Help extends javax.swing.JInternalFrame { jSplitPane1.setResizeWeight(0.1); topicList.setModel(new javax.swing.AbstractListModel() { - String[] strings = { "Welcome", "Basics", "Editor", "Pads", "Graphing", "Tasks", "Commands", "Licenses" }; + String[] strings = { "Welcome", "Basics", "Editor", "Pads", "Graphing", "Notepad", "Tasks", "Commands", "Licenses" }; public int getSize() { return strings.length; } public Object getElementAt(int i) { return strings[i]; } }); diff --git a/src/net/apocalypselabs/symat/help/basics.html b/src/net/apocalypselabs/symat/help/basics.html index 122298c..07c852c 100644 --- a/src/net/apocalypselabs/symat/help/basics.html +++ b/src/net/apocalypselabs/symat/help/basics.html @@ -8,6 +8,7 @@
Try typing commands, like "2*2" or "sin(.5)".
You can make variables too, try "x=.5" then "sin(x)".

SyMAT keeps track of the last few commands you enter in a shell. - To run one again, use the up and down keys to navigate the history.

+ To run one again, use the up and down keys to navigate the history. +

To see a list of special SyMAT commands, press Ctrl-Space while editing code.

diff --git a/src/net/apocalypselabs/symat/help/notepad.html b/src/net/apocalypselabs/symat/help/notepad.html new file mode 100644 index 0000000..e39b1b8 --- /dev/null +++ b/src/net/apocalypselabs/symat/help/notepad.html @@ -0,0 +1,11 @@ + + + Notepad + + +

Notepad

+

+ The Notepad is a window that automatically remembers what you type. Save reminders, code snippets, and more. +

+ + diff --git a/src/net/apocalypselabs/symat/help/pads.html b/src/net/apocalypselabs/symat/help/pads.html index 960f79f..5db82c8 100644 --- a/src/net/apocalypselabs/symat/help/pads.html +++ b/src/net/apocalypselabs/symat/help/pads.html @@ -10,7 +10,7 @@ servers. Share the address SyMAT gives you, and other people can access the script online.
To access a script, open Pads from the Tools tab. - You can add, share, edit, and download pads from this window. + You can add, share, edit, run, and download pads from this window.

- + \ No newline at end of file diff --git a/src/net/apocalypselabs/symat/help/tasks.html b/src/net/apocalypselabs/symat/help/tasks.html index ff352f5..7c773a6 100644 --- a/src/net/apocalypselabs/symat/help/tasks.html +++ b/src/net/apocalypselabs/symat/help/tasks.html @@ -5,7 +5,7 @@

Task Lists

- Create a new Task List from the SyMAT Menu or the Tools tab. + Create a new Task List from the SyMAT Menu or the Ribbon.
Items can be added from the Edit menu. To change the values of a task item, click the corresponding menu button.