NS Basic/App Studio 1.0.7 is ready to download. You can download it from the same URL as before.
This update has both fixes and some new stuff.
- Code Window: Case normalization for additional keywords and DOM objects.
- Code Window: literal strings are now Courier New as well.
- Code Window: Ctl-j now handles unicode characters.
- Deploy: Filenames in manifest have spaces or slashes are flagged.
- Docs: Handbook and Language Reference updated.
- IDE: New extraheaders property lets you add your lines to header.
- IDE: Form has new method property: GET or POST.
- IDE: New form names now have first letter capitalized.
- Runtime: ‘Go’ on some browsers no longer causes unintentional submit.
- Samples: Extra ‘ signs removed from some samples.
- Samples: HTMLview has Show Map option.
Deploy: prefixes appear again when deploying to NS Basic App Server. - Translator: a = “a://b” fixed
- Translator: a={b:”b”,c:”c”} fixed
- Translator: a=new Option(Aus(i),Aus(i)) fixed.
- Translator: Function a_b_onclick() fixed.
- Translator: If a=”=” Then b=1 fixed
- Translator: If Mid(“1”,1,1)=1 Then Print “yes” fixed
- Translator: Mod fixed.
- Translator: MsgBox Replace(“AB.DEF”,”.”,”X”) fixed
- Translator: Print “>” & “,” & “<” fixed
- Translator: Print DatePart(“ww”,01 & “.” & 01 & “.” & 2010,2,2) fixed.
- Translator: V=(F ^ 3) ^ 2 fixed.
- Translator: With Canvas.getContext(“2d”) fixed.
Notes:
– TThe project has a new property: extraheaders. This allows you to add addtional header lines to the <head> section of the generated code. An example would to include an extra JavaScript library, you would add:
<script src="myLib.js" type="text/javascript"></script>
– POST lets you send more data to the server. See Tutorial 07 for a more information.