
New per user license price set Unity server per user licensing has been reduced to a base of $49.00 per user license.
100 - $49.00 per user
1,000 - $44.00 per user
10,000 - $39.00 per user
All tutorials converted to wmv format All the tutorials on the Unity Server web site have been converted to the Windows Media Video format.
Download now! Get a free web server Did you know the basic unity license includes a free web server? Yes, the free to download package has a high performance web server. Why give this away? Because there are already high grade web se...
|
Creating Comma Delimited Files There are two main ways you can output comma delimited files. First let's create and array:
set $Colours=$New.Array();
$Colours.Add(NAME,"Green", CODE,"G"...
Making collection data fill columns of a table The best way to do this is to use the .SubsetsOfMaxSize(Int) call on a collection. It breaks a collection up into collections of the given maximum size. An example:
set $Ite...
Use data from other sites in yours The Portal command lets you easily load data from another web site.
Format:
remotehtmlurlload([Url],[Refresh Every X Days]);
Code Example:
set ...
Simple Combination Example Print out all the combinations of the ways the last 4 survivors can be voted off.
#GorillaScript:
set $List=$New.Array();
$List.Add(NAME,"Ethan");
$List.Add(NAME,"Kim J");
$L...
|