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

View File

@ -162,7 +162,7 @@ public class Help extends javax.swing.JInternalFrame {
jSplitPane1.setResizeWeight(0.1); jSplitPane1.setResizeWeight(0.1);
topicList.setModel(new javax.swing.AbstractListModel() { 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 int getSize() { return strings.length; }
public Object getElementAt(int i) { return strings[i]; } public Object getElementAt(int i) { return strings[i]; }
}); });

View File

@ -1,23 +1,16 @@
<html> <html>
<head> <head>
<title>Tasks</title> <title>Pads</title>
</head> </head>
<body> <body>
<h1>Task Lists</h1> <h1>Pads</h1>
<p> <p>
Create a new Task List from the SyMAT Menu or the Tools tab. You can work on code with other people around the world.
<br>Items can be added from the Edit menu. Select File &gt; Share... to upload the current script to SyMAT's
To change the values of a task item, servers. Share the address SyMAT gives you, and other people can
click the corresponding menu button. access the script online.
<br>To delete an item, check the Delete this Task <br>To access a script, open Pads from the Tools tab.
box from its settings. You can add, share, edit, and download pads from this window.
<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.
</p> </p>
</body> </body>
</html> </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>