Help file fix

This commit is contained in:
Skylar 2015-05-14 01:38:44 -06:00
parent b41551c9e2
commit db689e81b6
4 changed files with 321 additions and 345 deletions

View File

@ -66,16 +66,15 @@
<Component class="javax.swing.JList" name="topicList">
<Properties>
<Property name="model" type="javax.swing.ListModel" editor="org.netbeans.modules.form.editors2.ListModelEditor">
<StringArray count="9">
<StringArray count="8">
<StringItem index="0" value="Welcome"/>
<StringItem index="1" value="Basics"/>
<StringItem index="2" value="Editor"/>
<StringItem index="3" value="Pads"/>
<StringItem index="4" value="Graphing"/>
<StringItem index="5" value="Plugins"/>
<StringItem index="6" value="Tasks"/>
<StringItem index="7" value="Commands"/>
<StringItem index="8" value="Licenses"/>
<StringItem index="5" value="Tasks"/>
<StringItem index="6" value="Commands"/>
<StringItem index="7" value="Licenses"/>
</StringArray>
</Property>
<Property name="selectionMode" type="int" value="0"/>

View File

@ -162,7 +162,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", "Plugins", "Tasks", "Commands", "Licenses" };
String[] strings = { "Welcome", "Basics", "Editor", "Pads", "Graphing", "Tasks", "Commands", "Licenses" };
public int getSize() { return strings.length; }
public Object getElementAt(int i) { return strings[i]; }
});

View File

@ -1,23 +1,16 @@
<html>
<head>
<title>Tasks</title>
<title>Pads</title>
</head>
<body>
<h1>Task Lists</h1>
<h1>Pads</h1>
<p>
Create a new Task List from the SyMAT Menu or the Tools tab.
<br>Items can be added from the Edit menu.
To change the values of a task item,
click the corresponding menu button.
<br>To delete an item, check the Delete this Task
box from its settings.
<br>The task list can be named from the Edit menu.
Choose List Title... and enter a name.
</p>
<p>
Task lists can be exported as HTML (web page),
so they can be viewed in any web browser.
Select the Export option from the File menu.
You can work on code with other people around the world.
Select File &gt; Share... to upload the current script to SyMAT's
servers. Share the address SyMAT gives you, and other people can
access the script online.
<br>To access a script, open Pads from the Tools tab.
You can add, share, edit, and download pads from this window.
</p>
</body>
</html>

View File

@ -1,16 +0,0 @@
<html>
<head>
<title>Pads</title>
</head>
<body>
<h1>Pads</h1>
<p>
You can work on code with other people around the world.
Select File &gt; Share... to upload the current script to SyMAT's
servers. Share the address SyMAT gives you, and other people can
access the script online.
<br>To access a script, open Pads from the Tools tab.
You can add, share, edit, and download pads from this window.
</p>
</body>
</html>