Best way to edit html, for me, is with the Windows notepad, or any simple text editor. You can also use Microsoft Frontpage--it is targeted at people who are new to HTML. Generally I would avoid Word unless you are technophobic in which case, it might be the way to go--or find a student who knows HTML--hey there goes one walking down the hall now!
To adjust the range on the slider, just open the conitinuum.htm file in a text editor and change the following text:
s.setMinimum(0);
s.setMaximum(100);
s.setValue(50);
to:
s.setMinimum(-50);
s.setMaximum(50);
s.setValue(0);
And see how that goes!




Reply With Quote
