fixed broken settings
git-svn-id: https://lsleditor.svn.sourceforge.net/svnroot/lsleditor@12 3f4676ac-adda-40fd-8265-58d1435b1672
This commit is contained in:
parent
205be4af9b
commit
be66c127c1
22 changed files with 4667 additions and 4473 deletions
|
@ -53,7 +53,7 @@ using System.ComponentModel;
|
||||||
using System.Drawing.Printing;
|
using System.Drawing.Printing;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Diagnostics;
|
||||||
namespace LSLEditor
|
namespace LSLEditor
|
||||||
{
|
{
|
||||||
public delegate void IsDirtyHandler(object sender, EventArgs e);
|
public delegate void IsDirtyHandler(object sender, EventArgs e);
|
||||||
|
@ -111,7 +111,7 @@ namespace LSLEditor
|
||||||
|
|
||||||
// bracket highlighting
|
// bracket highlighting
|
||||||
private List<int> HighLightList;
|
private List<int> HighLightList;
|
||||||
|
public LSLEditorForm p;
|
||||||
public float CharWidth;
|
public float CharWidth;
|
||||||
public int LineHeight;
|
public int LineHeight;
|
||||||
|
|
||||||
|
@ -301,6 +301,7 @@ namespace LSLEditor
|
||||||
this.TooltipMouse = parent.TooltipMouse;
|
this.TooltipMouse = parent.TooltipMouse;
|
||||||
this.TooltipKeyboard = parent.TooltipKeyboard;
|
this.TooltipKeyboard = parent.TooltipKeyboard;
|
||||||
this.TooltipListBox = parent.TooltipListBox;
|
this.TooltipListBox = parent.TooltipListBox;
|
||||||
|
p = parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
string ColorScheme = "color";
|
string ColorScheme = "color";
|
||||||
|
@ -2024,6 +2025,7 @@ namespace LSLEditor
|
||||||
{
|
{
|
||||||
//TODO: finish the outline class and such
|
//TODO: finish the outline class and such
|
||||||
// still a work in progress trying to figure out exactly how i wanna do this.
|
// still a work in progress trying to figure out exactly how i wanna do this.
|
||||||
|
|
||||||
int len = this.Lines.Length;
|
int len = this.Lines.Length;
|
||||||
if (len < 1)
|
if (len < 1)
|
||||||
{
|
{
|
||||||
|
@ -2037,6 +2039,7 @@ namespace LSLEditor
|
||||||
int lineNumber = 0;
|
int lineNumber = 0;
|
||||||
while ((line = reader.ReadLine()) != null)
|
while ((line = reader.ReadLine()) != null)
|
||||||
{
|
{
|
||||||
|
|
||||||
string[] words = line.Split(' ');
|
string[] words = line.Split(' ');
|
||||||
foreach (string word in words)
|
foreach (string word in words)
|
||||||
{
|
{
|
||||||
|
@ -2047,6 +2050,7 @@ namespace LSLEditor
|
||||||
{
|
{
|
||||||
case KeyWordTypeEnum.Functions:
|
case KeyWordTypeEnum.Functions:
|
||||||
list.Add(lineNumber, new LSLEditor.Helpers.OutlineHelper(k, lineNumber));
|
list.Add(lineNumber, new LSLEditor.Helpers.OutlineHelper(k, lineNumber));
|
||||||
|
Debug.WriteLine(k);
|
||||||
break;
|
break;
|
||||||
case KeyWordTypeEnum.Events:
|
case KeyWordTypeEnum.Events:
|
||||||
break;
|
break;
|
||||||
|
@ -2069,7 +2073,14 @@ namespace LSLEditor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//TODO: parse dict and create the outline in the treeview
|
//TODO: parse dict and create the outline in the treeview
|
||||||
|
foreach (LSLEditor.Helpers.OutlineHelper k in list.Values)
|
||||||
|
{
|
||||||
|
TreeNode b = new TreeNode();
|
||||||
|
b.Name = k.info.name;
|
||||||
|
Debug.WriteLine(b.Name);
|
||||||
|
p.treeView1.Nodes.Add(b);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
102
trunk/LSLEditorForm.Designer.cs
generated
102
trunk/LSLEditorForm.Designer.cs
generated
|
@ -135,17 +135,17 @@ namespace LSLEditor
|
||||||
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
|
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||||
this.closeTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
this.closeTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.panel2 = new System.Windows.Forms.Panel();
|
this.panel2 = new System.Windows.Forms.Panel();
|
||||||
|
this.tabControlExtended2 = new System.Windows.Forms.TabControlExtended(this.components);
|
||||||
|
this.tabPage1 = new System.Windows.Forms.TabPage();
|
||||||
|
this.solutionExplorer1 = new LSLEditor.Solution.SolutionExplorer();
|
||||||
|
this.outline = new System.Windows.Forms.TabPage();
|
||||||
|
this.treeView1 = new System.Windows.Forms.TreeView();
|
||||||
this.splitter2 = new System.Windows.Forms.Splitter();
|
this.splitter2 = new System.Windows.Forms.Splitter();
|
||||||
this.panel1 = new System.Windows.Forms.Panel();
|
this.panel1 = new System.Windows.Forms.Panel();
|
||||||
this.splitter1 = new System.Windows.Forms.Splitter();
|
this.splitter1 = new System.Windows.Forms.Splitter();
|
||||||
this.pageSetupDialog1 = new System.Windows.Forms.PageSetupDialog();
|
this.pageSetupDialog1 = new System.Windows.Forms.PageSetupDialog();
|
||||||
this.openFileDialog2 = new System.Windows.Forms.OpenFileDialog();
|
this.openFileDialog2 = new System.Windows.Forms.OpenFileDialog();
|
||||||
this.tabControlExtended1 = new System.Windows.Forms.TabControlExtended(this.components);
|
this.tabControlExtended1 = new System.Windows.Forms.TabControlExtended(this.components);
|
||||||
this.tabControlExtended2 = new System.Windows.Forms.TabControlExtended(this.components);
|
|
||||||
this.tabPage1 = new System.Windows.Forms.TabPage();
|
|
||||||
this.solutionExplorer1 = new LSLEditor.Solution.SolutionExplorer();
|
|
||||||
this.outline = new System.Windows.Forms.TabPage();
|
|
||||||
this.treeView1 = new System.Windows.Forms.TreeView();
|
|
||||||
this.menuStrip1.SuspendLayout();
|
this.menuStrip1.SuspendLayout();
|
||||||
this.statusStrip1.SuspendLayout();
|
this.statusStrip1.SuspendLayout();
|
||||||
this.contextMenuStrip1.SuspendLayout();
|
this.contextMenuStrip1.SuspendLayout();
|
||||||
|
@ -995,51 +995,6 @@ namespace LSLEditor
|
||||||
this.panel2.TabIndex = 20;
|
this.panel2.TabIndex = 20;
|
||||||
this.panel2.Visible = false;
|
this.panel2.Visible = false;
|
||||||
//
|
//
|
||||||
// splitter2
|
|
||||||
//
|
|
||||||
this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
|
|
||||||
this.splitter2.Location = new System.Drawing.Point(534, 24);
|
|
||||||
this.splitter2.Name = "splitter2";
|
|
||||||
this.splitter2.Size = new System.Drawing.Size(8, 470);
|
|
||||||
this.splitter2.TabIndex = 22;
|
|
||||||
this.splitter2.TabStop = false;
|
|
||||||
//
|
|
||||||
// panel1
|
|
||||||
//
|
|
||||||
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
||||||
this.panel1.Location = new System.Drawing.Point(0, 458);
|
|
||||||
this.panel1.Name = "panel1";
|
|
||||||
this.panel1.Size = new System.Drawing.Size(534, 36);
|
|
||||||
this.panel1.TabIndex = 23;
|
|
||||||
this.panel1.Visible = false;
|
|
||||||
//
|
|
||||||
// splitter1
|
|
||||||
//
|
|
||||||
this.splitter1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
||||||
this.splitter1.Location = new System.Drawing.Point(0, 450);
|
|
||||||
this.splitter1.Name = "splitter1";
|
|
||||||
this.splitter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
|
|
||||||
this.splitter1.Size = new System.Drawing.Size(534, 8);
|
|
||||||
this.splitter1.TabIndex = 24;
|
|
||||||
this.splitter1.TabStop = false;
|
|
||||||
this.splitter1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitter1_SplitterMoved);
|
|
||||||
//
|
|
||||||
// openFileDialog2
|
|
||||||
//
|
|
||||||
this.openFileDialog2.FileName = "openFileDialog2";
|
|
||||||
//
|
|
||||||
// tabControlExtended1
|
|
||||||
//
|
|
||||||
this.tabControlExtended1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
||||||
this.tabControlExtended1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
|
|
||||||
this.tabControlExtended1.Location = new System.Drawing.Point(0, 414);
|
|
||||||
this.tabControlExtended1.Name = "tabControlExtended1";
|
|
||||||
this.tabControlExtended1.SelectedIndex = 0;
|
|
||||||
this.tabControlExtended1.Size = new System.Drawing.Size(534, 36);
|
|
||||||
this.tabControlExtended1.TabIndex = 25;
|
|
||||||
this.tabControlExtended1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControlExtended1_MouseDown);
|
|
||||||
this.tabControlExtended1.SelectedIndexChanged += new System.EventHandler(this.tabControlExtended1_SelectedIndexChanged);
|
|
||||||
//
|
|
||||||
// tabControlExtended2
|
// tabControlExtended2
|
||||||
//
|
//
|
||||||
this.tabControlExtended2.Controls.Add(this.tabPage1);
|
this.tabControlExtended2.Controls.Add(this.tabPage1);
|
||||||
|
@ -1089,6 +1044,51 @@ namespace LSLEditor
|
||||||
this.treeView1.Size = new System.Drawing.Size(186, 438);
|
this.treeView1.Size = new System.Drawing.Size(186, 438);
|
||||||
this.treeView1.TabIndex = 0;
|
this.treeView1.TabIndex = 0;
|
||||||
//
|
//
|
||||||
|
// splitter2
|
||||||
|
//
|
||||||
|
this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
|
||||||
|
this.splitter2.Location = new System.Drawing.Point(534, 24);
|
||||||
|
this.splitter2.Name = "splitter2";
|
||||||
|
this.splitter2.Size = new System.Drawing.Size(8, 470);
|
||||||
|
this.splitter2.TabIndex = 22;
|
||||||
|
this.splitter2.TabStop = false;
|
||||||
|
//
|
||||||
|
// panel1
|
||||||
|
//
|
||||||
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||||
|
this.panel1.Location = new System.Drawing.Point(0, 458);
|
||||||
|
this.panel1.Name = "panel1";
|
||||||
|
this.panel1.Size = new System.Drawing.Size(534, 36);
|
||||||
|
this.panel1.TabIndex = 23;
|
||||||
|
this.panel1.Visible = false;
|
||||||
|
//
|
||||||
|
// splitter1
|
||||||
|
//
|
||||||
|
this.splitter1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||||
|
this.splitter1.Location = new System.Drawing.Point(0, 450);
|
||||||
|
this.splitter1.Name = "splitter1";
|
||||||
|
this.splitter1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
|
||||||
|
this.splitter1.Size = new System.Drawing.Size(534, 8);
|
||||||
|
this.splitter1.TabIndex = 24;
|
||||||
|
this.splitter1.TabStop = false;
|
||||||
|
this.splitter1.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitter1_SplitterMoved);
|
||||||
|
//
|
||||||
|
// openFileDialog2
|
||||||
|
//
|
||||||
|
this.openFileDialog2.FileName = "openFileDialog2";
|
||||||
|
//
|
||||||
|
// tabControlExtended1
|
||||||
|
//
|
||||||
|
this.tabControlExtended1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||||
|
this.tabControlExtended1.DrawMode = System.Windows.Forms.TabDrawMode.OwnerDrawFixed;
|
||||||
|
this.tabControlExtended1.Location = new System.Drawing.Point(0, 414);
|
||||||
|
this.tabControlExtended1.Name = "tabControlExtended1";
|
||||||
|
this.tabControlExtended1.SelectedIndex = 0;
|
||||||
|
this.tabControlExtended1.Size = new System.Drawing.Size(534, 36);
|
||||||
|
this.tabControlExtended1.TabIndex = 25;
|
||||||
|
this.tabControlExtended1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tabControlExtended1_MouseDown);
|
||||||
|
this.tabControlExtended1.SelectedIndexChanged += new System.EventHandler(this.tabControlExtended1_SelectedIndexChanged);
|
||||||
|
//
|
||||||
// LSLEditorForm
|
// LSLEditorForm
|
||||||
//
|
//
|
||||||
this.AllowDrop = true;
|
this.AllowDrop = true;
|
||||||
|
@ -1243,6 +1243,6 @@ namespace LSLEditor
|
||||||
private System.Windows.Forms.ToolStripSeparator toolStripSeparator17;
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator17;
|
||||||
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8;
|
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem8;
|
||||||
private System.Windows.Forms.TabPage outline;
|
private System.Windows.Forms.TabPage outline;
|
||||||
private System.Windows.Forms.TreeView treeView1;
|
public System.Windows.Forms.TreeView treeView1;
|
||||||
}
|
}
|
||||||
}
|
}
|
41
trunk/Properties/Settings.Designer.cs
generated
41
trunk/Properties/Settings.Designer.cs
generated
|
@ -359,15 +359,6 @@ namespace LSLEditor.Properties {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("C:\\Documents and Settings\\Alphons\\Mijn documenten\\Visual Studio 2005\\Projects")]
|
|
||||||
public string OopsRemove {
|
|
||||||
get {
|
|
||||||
return ((string)(this["OopsRemove"]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("About.htm")]
|
[global::System.Configuration.DefaultSettingValueAttribute("About.htm")]
|
||||||
|
@ -1124,7 +1115,7 @@ namespace LSLEditor.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/checkforupdate/Default.aspx?\r\n ")]
|
[global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/checkforupdate/Default.aspx?")]
|
||||||
public string Update {
|
public string Update {
|
||||||
get {
|
get {
|
||||||
return ((string)(this["Update"]));
|
return ((string)(this["Update"]));
|
||||||
|
@ -1133,7 +1124,7 @@ namespace LSLEditor.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/examples/\r\n ")]
|
[global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/examples/")]
|
||||||
public string Examples {
|
public string Examples {
|
||||||
get {
|
get {
|
||||||
return ((string)(this["Examples"]));
|
return ((string)(this["Examples"]));
|
||||||
|
@ -1142,7 +1133,7 @@ namespace LSLEditor.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/uploadscript/\r\n ")]
|
[global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/uploadscript/")]
|
||||||
public string Upload {
|
public string Upload {
|
||||||
get {
|
get {
|
||||||
return ((string)(this["Upload"]));
|
return ((string)(this["Upload"]));
|
||||||
|
@ -1151,7 +1142,7 @@ namespace LSLEditor.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("\r\n Resource.ConfCSharp.xml\r\n ")]
|
[global::System.Configuration.DefaultSettingValueAttribute("Resource.ConfCSharp.xml")]
|
||||||
public string ConfCSharp {
|
public string ConfCSharp {
|
||||||
get {
|
get {
|
||||||
return ((string)(this["ConfCSharp"]));
|
return ((string)(this["ConfCSharp"]));
|
||||||
|
@ -1160,7 +1151,7 @@ namespace LSLEditor.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/CheckForUpdate/Manifest.aspx\r\n ")]
|
[global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/CheckForUpdate/Manifest.aspx")]
|
||||||
public string UpdateManifest {
|
public string UpdateManifest {
|
||||||
get {
|
get {
|
||||||
return ((string)(this["UpdateManifest"]));
|
return ((string)(this["UpdateManifest"]));
|
||||||
|
@ -1169,7 +1160,7 @@ namespace LSLEditor.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("\r\n Resource.ToolsOptions.xml\r\n ")]
|
[global::System.Configuration.DefaultSettingValueAttribute("Resource.ToolsOptions.xml")]
|
||||||
public string ToolsOptions {
|
public string ToolsOptions {
|
||||||
get {
|
get {
|
||||||
return ((string)(this["ToolsOptions"]));
|
return ((string)(this["ToolsOptions"]));
|
||||||
|
@ -1178,7 +1169,7 @@ namespace LSLEditor.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/mail/\r\n ")]
|
[global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/mail/")]
|
||||||
public string ContactUrl {
|
public string ContactUrl {
|
||||||
get {
|
get {
|
||||||
return ((string)(this["ContactUrl"]));
|
return ((string)(this["ContactUrl"]));
|
||||||
|
@ -1187,7 +1178,7 @@ namespace LSLEditor.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/donate.htm\r\n ")]
|
[global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/donate.htm")]
|
||||||
public string DonateUrl {
|
public string DonateUrl {
|
||||||
get {
|
get {
|
||||||
return ((string)(this["DonateUrl"]));
|
return ((string)(this["DonateUrl"]));
|
||||||
|
@ -1196,8 +1187,7 @@ namespace LSLEditor.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=\r\n " +
|
[global::System.Configuration.DefaultSettingValueAttribute("http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=")]
|
||||||
" ")]
|
|
||||||
public string Help2 {
|
public string Help2 {
|
||||||
get {
|
get {
|
||||||
return ((string)(this["Help2"]));
|
return ((string)(this["Help2"]));
|
||||||
|
@ -1206,7 +1196,7 @@ namespace LSLEditor.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lslwiki.net/lslwiki/wakka.php?wakka=\r\n ")]
|
[global::System.Configuration.DefaultSettingValueAttribute("http://www.lslwiki.net/lslwiki/wakka.php?wakka=")]
|
||||||
public string Help1 {
|
public string Help1 {
|
||||||
get {
|
get {
|
||||||
return ((string)(this["Help1"]));
|
return ((string)(this["Help1"]));
|
||||||
|
@ -1215,11 +1205,20 @@ namespace LSLEditor.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("\r\n http://www.lsleditor.org/forum/\r\n ")]
|
[global::System.Configuration.DefaultSettingValueAttribute("http://www.lsleditor.org/forum/")]
|
||||||
public string ForumLSLEditor {
|
public string ForumLSLEditor {
|
||||||
get {
|
get {
|
||||||
return ((string)(this["ForumLSLEditor"]));
|
return ((string)(this["ForumLSLEditor"]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Configuration.DefaultSettingValueAttribute("C:\\Documents and Settings\\Alphons\\Mijn documenten\\Visual Studio 2005\\Projects")]
|
||||||
|
public string OopsRemove {
|
||||||
|
get {
|
||||||
|
return ((string)(this["OopsRemove"]));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="LSLEditor.Properties" GeneratedClassName="Settings">
|
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="LSLEditor.Properties" GeneratedClassName="Settings">
|
||||||
<Profiles />
|
<Profiles />
|
||||||
<Settings>
|
<Settings>
|
||||||
|
@ -89,9 +89,6 @@
|
||||||
<Setting Name="WikiSeperateBrowser" Type="System.Boolean" Scope="User">
|
<Setting Name="WikiSeperateBrowser" Type="System.Boolean" Scope="User">
|
||||||
<Value Profile="(Default)">False</Value>
|
<Value Profile="(Default)">False</Value>
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="OopsRemove" Type="System.String" Scope="Application">
|
|
||||||
<Value Profile="(Default)">C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</Value>
|
|
||||||
</Setting>
|
|
||||||
<Setting Name="About" Type="System.String" Scope="Application">
|
<Setting Name="About" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">About.htm</Value>
|
<Value Profile="(Default)">About.htm</Value>
|
||||||
</Setting>
|
</Setting>
|
||||||
|
@ -298,59 +295,40 @@
|
||||||
</Value>
|
</Value>
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="Update" Type="System.String" Scope="Application">
|
<Setting Name="Update" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">
|
<Value Profile="(Default)">http://www.lsleditor.org/checkforupdate/Default.aspx?</Value>
|
||||||
http://www.lsleditor.org/checkforupdate/Default.aspx?
|
|
||||||
</Value>
|
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="Examples" Type="System.String" Scope="Application">
|
<Setting Name="Examples" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">
|
<Value Profile="(Default)">http://www.lsleditor.org/examples/</Value>
|
||||||
http://www.lsleditor.org/examples/
|
|
||||||
</Value>
|
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="Upload" Type="System.String" Scope="Application">
|
<Setting Name="Upload" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">
|
<Value Profile="(Default)">http://www.lsleditor.org/uploadscript/</Value>
|
||||||
http://www.lsleditor.org/uploadscript/
|
|
||||||
</Value>
|
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="ConfCSharp" Type="System.String" Scope="Application">
|
<Setting Name="ConfCSharp" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">
|
<Value Profile="(Default)">Resource.ConfCSharp.xml</Value>
|
||||||
Resource.ConfCSharp.xml
|
|
||||||
</Value>
|
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="UpdateManifest" Type="System.String" Scope="Application">
|
<Setting Name="UpdateManifest" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">
|
<Value Profile="(Default)">http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</Value>
|
||||||
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
|
|
||||||
</Value>
|
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="ToolsOptions" Type="System.String" Scope="Application">
|
<Setting Name="ToolsOptions" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">
|
<Value Profile="(Default)">Resource.ToolsOptions.xml</Value>
|
||||||
Resource.ToolsOptions.xml
|
|
||||||
</Value>
|
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="ContactUrl" Type="System.String" Scope="Application">
|
<Setting Name="ContactUrl" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">
|
<Value Profile="(Default)">http://www.lsleditor.org/mail/</Value>
|
||||||
http://www.lsleditor.org/mail/
|
|
||||||
</Value>
|
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="DonateUrl" Type="System.String" Scope="Application">
|
<Setting Name="DonateUrl" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">
|
<Value Profile="(Default)">http://www.lsleditor.org/donate.htm</Value>
|
||||||
http://www.lsleditor.org/donate.htm
|
|
||||||
</Value>
|
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="Help2" Type="System.String" Scope="Application">
|
<Setting Name="Help2" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">
|
<Value Profile="(Default)">http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=</Value>
|
||||||
http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=
|
|
||||||
</Value>
|
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="Help1" Type="System.String" Scope="Application">
|
<Setting Name="Help1" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">
|
<Value Profile="(Default)">http://www.lslwiki.net/lslwiki/wakka.php?wakka=</Value>
|
||||||
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
|
|
||||||
</Value>
|
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="ForumLSLEditor" Type="System.String" Scope="Application">
|
<Setting Name="ForumLSLEditor" Type="System.String" Scope="Application">
|
||||||
<Value Profile="(Default)">
|
<Value Profile="(Default)">http://www.lsleditor.org/forum/</Value>
|
||||||
http://www.lsleditor.org/forum/
|
</Setting>
|
||||||
</Value>
|
<Setting Name="OopsRemove" Type="System.String" Scope="Application">
|
||||||
|
<Value Profile="(Default)">C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</Value>
|
||||||
</Setting>
|
</Setting>
|
||||||
</Settings>
|
</Settings>
|
||||||
</SettingsFile>
|
</SettingsFile>
|
|
@ -1,5 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
<root>
|
<root>
|
||||||
<item name="Environment" usercontrol="EnvironmentGeneral">
|
<item name="Environment" usercontrol="EnvironmentGeneral">
|
||||||
<item name="General" usercontrol="EnvironmentGeneral" />
|
<item name="General" usercontrol="EnvironmentGeneral" />
|
||||||
|
|
|
@ -27,9 +27,7 @@
|
||||||
<value>smtp.emailserver.ext</value>
|
<value>smtp.emailserver.ext</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="EmailAddress" serializeAs="String">
|
<setting name="EmailAddress" serializeAs="String">
|
||||||
<value>
|
<value>youraddress@yourdomain.ext</value>
|
||||||
youraddress@yourdomain.ext
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ProxyServer" serializeAs="String">
|
<setting name="ProxyServer" serializeAs="String">
|
||||||
<value />
|
<value />
|
||||||
|
@ -50,9 +48,7 @@
|
||||||
<value>0, 0</value>
|
<value>0, 0</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Help" serializeAs="String">
|
<setting name="Help" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
|
||||||
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="LSLEditorLocation" serializeAs="String">
|
<setting name="LSLEditorLocation" serializeAs="String">
|
||||||
<value>0, 0</value>
|
<value>0, 0</value>
|
||||||
|
@ -232,19 +228,13 @@
|
||||||
<value>LSLEditor parcel</value>
|
<value>LSLEditor parcel</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ParcelDescription" serializeAs="String">
|
<setting name="ParcelDescription" serializeAs="String">
|
||||||
<value>
|
<value>Description of LSLEditor parcel</value>
|
||||||
Description of LSLEditor parcel
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ParcelOwner" serializeAs="String">
|
<setting name="ParcelOwner" serializeAs="String">
|
||||||
<value>
|
<value>00000000-0000-0000-0000-000000000000</value>
|
||||||
00000000-0000-0000-0000-000000000000
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ParcelGroup" serializeAs="String">
|
<setting name="ParcelGroup" serializeAs="String">
|
||||||
<value>
|
<value>00000000-0000-0000-0000-000000000000</value>
|
||||||
00000000-0000-0000-0000-000000000000
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ParcelArea" serializeAs="String">
|
<setting name="ParcelArea" serializeAs="String">
|
||||||
<value>512</value>
|
<value>512</value>
|
||||||
|
@ -265,11 +255,6 @@
|
||||||
<setting name="ReleaseNotes" serializeAs="String">
|
<setting name="ReleaseNotes" serializeAs="String">
|
||||||
<value>ReleaseNotes.htm</value>
|
<value>ReleaseNotes.htm</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="OopsRemove" serializeAs="String">
|
|
||||||
<value>
|
|
||||||
C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects
|
|
||||||
</value>
|
|
||||||
</setting>
|
|
||||||
<setting name="About" serializeAs="String">
|
<setting name="About" serializeAs="String">
|
||||||
<value>About.htm</value>
|
<value>About.htm</value>
|
||||||
</setting>
|
</setting>
|
||||||
|
@ -305,59 +290,40 @@
|
||||||
</value>
|
</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Update" serializeAs="String">
|
<setting name="Update" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/checkforupdate/Default.aspx?</value>
|
||||||
http://www.lsleditor.org/checkforupdate/Default.aspx?
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Examples" serializeAs="String">
|
<setting name="Examples" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/examples/</value>
|
||||||
http://www.lsleditor.org/examples/
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Upload" serializeAs="String">
|
<setting name="Upload" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/uploadscript/</value>
|
||||||
http://www.lsleditor.org/uploadscript/
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ConfCSharp" serializeAs="String">
|
<setting name="ConfCSharp" serializeAs="String">
|
||||||
<value>
|
<value>Resource.ConfCSharp.xml</value>
|
||||||
Resource.ConfCSharp.xml
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="UpdateManifest" serializeAs="String">
|
<setting name="UpdateManifest" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</value>
|
||||||
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ToolsOptions" serializeAs="String">
|
<setting name="ToolsOptions" serializeAs="String">
|
||||||
<value>
|
<value>Resource.ToolsOptions.xml</value>
|
||||||
Resource.ToolsOptions.xml
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ContactUrl" serializeAs="String">
|
<setting name="ContactUrl" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/mail/</value>
|
||||||
http://www.lsleditor.org/mail/
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="DonateUrl" serializeAs="String">
|
<setting name="DonateUrl" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/donate.htm</value>
|
||||||
http://www.lsleditor.org/donate.htm
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Help2" serializeAs="String">
|
<setting name="Help2" serializeAs="String">
|
||||||
<value>
|
<value>http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=</value>
|
||||||
http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Help1" serializeAs="String">
|
<setting name="Help1" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
|
||||||
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ForumLSLEditor" serializeAs="String">
|
<setting name="ForumLSLEditor" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/forum/</value>
|
||||||
http://www.lsleditor.org/forum/
|
</setting>
|
||||||
</value>
|
<setting name="OopsRemove" serializeAs="String">
|
||||||
|
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
|
||||||
</setting>
|
</setting>
|
||||||
</LSLEditor.Properties.Settings>
|
</LSLEditor.Properties.Settings>
|
||||||
</applicationSettings>
|
</applicationSettings>
|
||||||
|
|
|
@ -255,9 +255,6 @@
|
||||||
<setting name="ReleaseNotes" serializeAs="String">
|
<setting name="ReleaseNotes" serializeAs="String">
|
||||||
<value>ReleaseNotes.htm</value>
|
<value>ReleaseNotes.htm</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="OopsRemove" serializeAs="String">
|
|
||||||
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
|
|
||||||
</setting>
|
|
||||||
<setting name="About" serializeAs="String">
|
<setting name="About" serializeAs="String">
|
||||||
<value>About.htm</value>
|
<value>About.htm</value>
|
||||||
</setting>
|
</setting>
|
||||||
|
@ -293,59 +290,40 @@
|
||||||
</value>
|
</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Update" serializeAs="String">
|
<setting name="Update" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/checkforupdate/Default.aspx?</value>
|
||||||
http://www.lsleditor.org/checkforupdate/Default.aspx?
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Examples" serializeAs="String">
|
<setting name="Examples" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/examples/</value>
|
||||||
http://www.lsleditor.org/examples/
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Upload" serializeAs="String">
|
<setting name="Upload" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/uploadscript/</value>
|
||||||
http://www.lsleditor.org/uploadscript/
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ConfCSharp" serializeAs="String">
|
<setting name="ConfCSharp" serializeAs="String">
|
||||||
<value>
|
<value>Resource.ConfCSharp.xml</value>
|
||||||
Resource.ConfCSharp.xml
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="UpdateManifest" serializeAs="String">
|
<setting name="UpdateManifest" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</value>
|
||||||
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ToolsOptions" serializeAs="String">
|
<setting name="ToolsOptions" serializeAs="String">
|
||||||
<value>
|
<value>Resource.ToolsOptions.xml</value>
|
||||||
Resource.ToolsOptions.xml
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ContactUrl" serializeAs="String">
|
<setting name="ContactUrl" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/mail/</value>
|
||||||
http://www.lsleditor.org/mail/
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="DonateUrl" serializeAs="String">
|
<setting name="DonateUrl" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/donate.htm</value>
|
||||||
http://www.lsleditor.org/donate.htm
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Help2" serializeAs="String">
|
<setting name="Help2" serializeAs="String">
|
||||||
<value>
|
<value>http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=</value>
|
||||||
http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Help1" serializeAs="String">
|
<setting name="Help1" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
|
||||||
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ForumLSLEditor" serializeAs="String">
|
<setting name="ForumLSLEditor" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/forum/</value>
|
||||||
http://www.lsleditor.org/forum/
|
</setting>
|
||||||
</value>
|
<setting name="OopsRemove" serializeAs="String">
|
||||||
|
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
|
||||||
</setting>
|
</setting>
|
||||||
</LSLEditor.Properties.Settings>
|
</LSLEditor.Properties.Settings>
|
||||||
</applicationSettings>
|
</applicationSettings>
|
||||||
|
|
Binary file not shown.
|
@ -255,9 +255,6 @@
|
||||||
<setting name="ReleaseNotes" serializeAs="String">
|
<setting name="ReleaseNotes" serializeAs="String">
|
||||||
<value>ReleaseNotes.htm</value>
|
<value>ReleaseNotes.htm</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="OopsRemove" serializeAs="String">
|
|
||||||
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
|
|
||||||
</setting>
|
|
||||||
<setting name="About" serializeAs="String">
|
<setting name="About" serializeAs="String">
|
||||||
<value>About.htm</value>
|
<value>About.htm</value>
|
||||||
</setting>
|
</setting>
|
||||||
|
@ -293,59 +290,40 @@
|
||||||
</value>
|
</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Update" serializeAs="String">
|
<setting name="Update" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/checkforupdate/Default.aspx?</value>
|
||||||
http://www.lsleditor.org/checkforupdate/Default.aspx?
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Examples" serializeAs="String">
|
<setting name="Examples" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/examples/</value>
|
||||||
http://www.lsleditor.org/examples/
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Upload" serializeAs="String">
|
<setting name="Upload" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/uploadscript/</value>
|
||||||
http://www.lsleditor.org/uploadscript/
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ConfCSharp" serializeAs="String">
|
<setting name="ConfCSharp" serializeAs="String">
|
||||||
<value>
|
<value>Resource.ConfCSharp.xml</value>
|
||||||
Resource.ConfCSharp.xml
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="UpdateManifest" serializeAs="String">
|
<setting name="UpdateManifest" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/CheckForUpdate/Manifest.aspx</value>
|
||||||
http://www.lsleditor.org/CheckForUpdate/Manifest.aspx
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ToolsOptions" serializeAs="String">
|
<setting name="ToolsOptions" serializeAs="String">
|
||||||
<value>
|
<value>Resource.ToolsOptions.xml</value>
|
||||||
Resource.ToolsOptions.xml
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ContactUrl" serializeAs="String">
|
<setting name="ContactUrl" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/mail/</value>
|
||||||
http://www.lsleditor.org/mail/
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="DonateUrl" serializeAs="String">
|
<setting name="DonateUrl" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/donate.htm</value>
|
||||||
http://www.lsleditor.org/donate.htm
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Help2" serializeAs="String">
|
<setting name="Help2" serializeAs="String">
|
||||||
<value>
|
<value>http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=</value>
|
||||||
http://wiki.secondlife.com/wiki/Special:Search?go=Go&search=
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Help1" serializeAs="String">
|
<setting name="Help1" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lslwiki.net/lslwiki/wakka.php?wakka=</value>
|
||||||
http://www.lslwiki.net/lslwiki/wakka.php?wakka=
|
|
||||||
</value>
|
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="ForumLSLEditor" serializeAs="String">
|
<setting name="ForumLSLEditor" serializeAs="String">
|
||||||
<value>
|
<value>http://www.lsleditor.org/forum/</value>
|
||||||
http://www.lsleditor.org/forum/
|
</setting>
|
||||||
</value>
|
<setting name="OopsRemove" serializeAs="String">
|
||||||
|
<value>C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects</value>
|
||||||
</setting>
|
</setting>
|
||||||
</LSLEditor.Properties.Settings>
|
</LSLEditor.Properties.Settings>
|
||||||
</applicationSettings>
|
</applicationSettings>
|
||||||
|
|
|
@ -1,12 +1,16 @@
|
||||||
|
integer a()
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
// www.lsleditor.org by Alphons van der Heijden (SL: Alphons Jano)
|
// www.lsleditor.org by Alphons van der Heijden (SL: Alphons Jano)
|
||||||
default
|
default
|
||||||
{
|
{
|
||||||
state_entry()
|
state_entry()
|
||||||
{
|
{
|
||||||
llSay(0, "Ready to test!");
|
llSay(0, "Hello, Avatar!");
|
||||||
}
|
}
|
||||||
touch_start(integer total_number)
|
touch_start(integer total_number)
|
||||||
{
|
{
|
||||||
llSay(0, "Length of \\t (tab) character: "+(string)llStringLength("\t"));
|
llSay(0, "Touched: "+(string)total_number);
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
Binary file not shown.
|
@ -1,6 +1,47 @@
|
||||||
<!--
|
<!--
|
||||||
(C) 2006,2007,2008 Alphons van der Heijden
|
/**
|
||||||
mail: alphons@heijden.com
|
********
|
||||||
|
*
|
||||||
|
* ORIGIONAL CODE BASE IS Copyright (C) 2006-2010 by Alphons van der Heijden
|
||||||
|
* The code was donated on 4/28/2010 by Alphons van der Heijden
|
||||||
|
* To Brandon'Dimentox Travanti' Husbands & Malcolm J. Kudra which in turn Liscense under the GPLv2.
|
||||||
|
* In agreement to Alphons van der Heijden wishes.
|
||||||
|
*
|
||||||
|
* The community would like to thank Alphons for all of his hard work, blood sweat and tears.
|
||||||
|
* Without his work the community would be stuck with crappy editors.
|
||||||
|
*
|
||||||
|
* The source code in this file ("Source Code") is provided by The LSLEditor Group
|
||||||
|
* to you under the terms of the GNU General Public License, version 2.0
|
||||||
|
* ("GPL"), unless you have obtained a separate licensing agreement
|
||||||
|
* ("Other License"), formally executed by you and LSLEditor Group. Terms of
|
||||||
|
* the GPL can be found in the gplv2.txt document.
|
||||||
|
*
|
||||||
|
********
|
||||||
|
* GPLv2 Header
|
||||||
|
********
|
||||||
|
* LSLEditor, a External editor for the LSL Language.
|
||||||
|
* Copyright (C) 2010 The LSLEditor Group.
|
||||||
|
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation; either version 2
|
||||||
|
* of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
********
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in all
|
||||||
|
* copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
********
|
||||||
|
*/
|
||||||
|
|
||||||
ZERO_VECTOR "#663366"
|
ZERO_VECTOR "#663366"
|
||||||
|
|
||||||
|
@ -10,13 +51,19 @@ mail: alphons@heijden.com
|
||||||
<Word name="regex">//.*</Word>
|
<Word name="regex">//.*</Word>
|
||||||
</Words>
|
</Words>
|
||||||
<Words name="Strings" color="#A0A0A0" slcolor="#003300">
|
<Words name="Strings" color="#A0A0A0" slcolor="#003300">
|
||||||
<Word name="regex">"[^"\\]* (?>\\.[^"\\]*)*"</Word>
|
<Word name="regex">
|
||||||
|
"[^"\\]* (?>\\.[^"\\]*)*"
|
||||||
|
</Word>
|
||||||
</Words>
|
</Words>
|
||||||
<Words name="Operators" color="#777700" slcolor="#000000">
|
<Words name="Operators" color="#777700" slcolor="#000000">
|
||||||
<Word name="regex">\+\+|\-\-|\<\<|\>\>|\<\=|\>\=|\=\=|\!\=|\&\&|\|\||\+\=|\-\=|\*\=|\/\=|\%\=</Word>
|
<Word name="regex">
|
||||||
|
\+\+|\-\-|\<\<|\>\>|\<\=|\>\=|\=\=|\!\=|\&\&|\|\||\+\=|\-\=|\*\=|\/\=|\%\=
|
||||||
|
</Word>
|
||||||
</Words>
|
</Words>
|
||||||
<Words name="Digits" color="#FF0000" slcolor="#000000">
|
<Words name="Digits" color="#FF0000" slcolor="#000000">
|
||||||
<Word name="regex">[+-]?0x[\da-fA-F.p]+ | [-+]?\d* \.?\d+([eE][-+]?\d+)? </Word>
|
<Word name="regex">
|
||||||
|
[+-]?0x[\da-fA-F.p]+ | [-+]?\d* \.?\d+([eE][-+]?\d+)?
|
||||||
|
</Word>
|
||||||
</Words>
|
</Words>
|
||||||
<Words name="Haakjes" color="#66cc66" slcolor="#000000">
|
<Words name="Haakjes" color="#66cc66" slcolor="#000000">
|
||||||
<Word name="(" />
|
<Word name="(" />
|
||||||
|
@ -28,7 +75,9 @@ mail: alphons@heijden.com
|
||||||
</Words>
|
</Words>
|
||||||
<Words name="States" color="#0000ff" slcolor="#801A4D">
|
<Words name="States" color="#0000ff" slcolor="#801A4D">
|
||||||
<Word name="default">
|
<Word name="default">
|
||||||
All scripts must have a <font color="blue">default</font> state,
|
All scripts must have a
|
||||||
|
<font color="blue">default</font>
|
||||||
|
state,
|
||||||
which also must be the first state entered when the script starts.
|
which also must be the first state entered when the script starts.
|
||||||
If another state is defined before the default state,
|
If another state is defined before the default state,
|
||||||
the compiler will report a syntax error.
|
the compiler will report a syntax error.
|
||||||
|
@ -56,7 +105,6 @@ mail: alphons@heijden.com
|
||||||
</Words>
|
</Words>
|
||||||
<Words icon="Functions" name="Appendix A. Linden Library Functions" color="#A00000" slcolor="#800026">
|
<Words icon="Functions" name="Appendix A. Linden Library Functions" color="#A00000" slcolor="#800026">
|
||||||
Complete listing of the Linden Library function calls available in lsl.
|
Complete listing of the Linden Library function calls available in lsl.
|
||||||
|
|
||||||
<Word name="llStringTrim">
|
<Word name="llStringTrim">
|
||||||
string llStringTrim(string text, integer trim_type);
|
string llStringTrim(string text, integer trim_type);
|
||||||
|
|
||||||
|
@ -67,7 +115,9 @@ mail: alphons@heijden.com
|
||||||
STRING_TRIM_TAIL: trim all trailing spaces in text
|
STRING_TRIM_TAIL: trim all trailing spaces in text
|
||||||
STRING_TRIM: trim all leading and trailing spaces in text
|
STRING_TRIM: trim all leading and trailing spaces in text
|
||||||
<Argument name="text">string to trim</Argument>
|
<Argument name="text">string to trim</Argument>
|
||||||
<Argument name="trim_type" wild="STRING_TRI.*">STRING_TRIM_HEAD,STRING_TRIM_TAIL or STRING_TRIM</Argument>
|
<Argument name="trim_type" wild="STRING_TRI.*">
|
||||||
|
STRING_TRIM_HEAD,STRING_TRIM_TAIL or STRING_TRIM
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llSetLinkPrimitiveParams">
|
<Word name="llSetLinkPrimitiveParams">
|
||||||
|
@ -109,7 +159,9 @@ mail: alphons@heijden.com
|
||||||
If sim_wide is FALSE, it returns the number of objects
|
If sim_wide is FALSE, it returns the number of objects
|
||||||
on this specific parcel in the category specified
|
on this specific parcel in the category specified
|
||||||
<Argument name="pos">region coordinate</Argument>
|
<Argument name="pos">region coordinate</Argument>
|
||||||
<Argument name="category" wild="PARCEL_COUNT_.*">a PARCEL_COUNT_* flag</Argument>
|
<Argument name="category" wild="PARCEL_COUNT_.*">
|
||||||
|
a PARCEL_COUNT_* flag
|
||||||
|
</Argument>
|
||||||
<Argument name="sim_wide">Can be TRUE or FALSE</Argument>
|
<Argument name="sim_wide">Can be TRUE or FALSE</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
|
@ -506,7 +558,9 @@ mail: alphons@heijden.com
|
||||||
Get the name of the inventory item number of type.
|
Get the name of the inventory item number of type.
|
||||||
Use the inventory constants to specify the type.
|
Use the inventory constants to specify the type.
|
||||||
<Argument name="type" wild="INVENTORY_.*">inventory item type</Argument>
|
<Argument name="type" wild="INVENTORY_.*">inventory item type</Argument>
|
||||||
<Argument name="number">inventory item number</Argument>
|
<Argument name="number">
|
||||||
|
inventory item number
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="llGetInventoryNumber">
|
<Word name="llGetInventoryNumber">
|
||||||
integer llGetInventoryNumber(integer type);
|
integer llGetInventoryNumber(integer type);
|
||||||
|
@ -885,8 +939,12 @@ mail: alphons@heijden.com
|
||||||
ascending is TRUE. Note that sort only
|
ascending is TRUE. Note that sort only
|
||||||
works in the head of each sort block is the same type.
|
works in the head of each sort block is the same type.
|
||||||
<Argument name="src">list to sort</Argument>
|
<Argument name="src">list to sort</Argument>
|
||||||
<Argument name="stride">blocks of stride length</Argument>
|
<Argument name="stride">
|
||||||
<Argument name="ascending" wild="TRUE|FALSE">TRUE ascending sort result, FALSE = descending sort result</Argument>
|
blocks of stride length
|
||||||
|
</Argument>
|
||||||
|
<Argument name="ascending" wild="TRUE|FALSE">
|
||||||
|
TRUE ascending sort result, FALSE = descending sort result
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="llListen">
|
<Word name="llListen">
|
||||||
integer llListen(integer channel, string name, key id, string msg);
|
integer llListen(integer channel, string name, key id, string msg);
|
||||||
|
@ -997,8 +1055,12 @@ mail: alphons@heijden.com
|
||||||
|
|
||||||
Modify land with action on size area.
|
Modify land with action on size area.
|
||||||
The parameters can be chosen from the land constants.
|
The parameters can be chosen from the land constants.
|
||||||
<Argument name="action" wild="LAND_[^_]*">LAND_LEVEL, LAND_RAISE, LAND_LOWER, LAND_SMOOTH, LAND_NOISE or LAND_REVERT</Argument>
|
<Argument name="action" wild="LAND_[^_]*">
|
||||||
<Argument name="size" wild="LAND_.*_BRUSH">LAND_SMALL_BRUSH, LAND_MEDIUM_BRUSH or LAND_LARGE_BRUSH</Argument>
|
LAND_LEVEL, LAND_RAISE, LAND_LOWER, LAND_SMOOTH, LAND_NOISE or LAND_REVERT
|
||||||
|
</Argument>
|
||||||
|
<Argument name="size" wild="LAND_.*_BRUSH">
|
||||||
|
LAND_SMALL_BRUSH, LAND_MEDIUM_BRUSH or LAND_LARGE_BRUSH
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="llMoveToTarget">
|
<Word name="llMoveToTarget">
|
||||||
llMoveToTarget(vector target, float tau);
|
llMoveToTarget(vector target, float tau);
|
||||||
|
@ -1260,18 +1322,23 @@ mail: alphons@heijden.com
|
||||||
|
|
||||||
Says the string text on channel number channel that can be heard
|
Says the string text on channel number channel that can be heard
|
||||||
anywhere in the region by a script listening on channel.
|
anywhere in the region by a script listening on channel.
|
||||||
|
<Argument name="channel">
|
||||||
<Argument name="channel">Any integer value other than zero</Argument>
|
Any integer value other than zero
|
||||||
<Argument name="text">Message to be transmitted</Argument>
|
</Argument>
|
||||||
|
<Argument name="text">
|
||||||
|
Message to be transmitted
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="llSay">
|
<Word name="llSay">
|
||||||
llSay(integer channel, string text);
|
llSay(integer channel, string text);
|
||||||
|
<font color="red">Say text on channel.</font>
|
||||||
<font color="red">Say text on channel.</font> Channel 0 is the public chat channel that all
|
Channel 0 is the public chat channel that all
|
||||||
avatars see as chat text. Channels 1 to 2,147,483,648 are private
|
avatars see as chat text. Channels 1 to 2,147,483,648 are private
|
||||||
channels that are not sent to avatars but other scripts can listen
|
channels that are not sent to avatars but other scripts can listen
|
||||||
for through the llListen api.
|
for through the llListen api.
|
||||||
<Argument name="channel">Channel to use to say text on</Argument>
|
<Argument name="channel">
|
||||||
|
Channel to use to say text on
|
||||||
|
</Argument>
|
||||||
<Argument name="text">Text to say</Argument>
|
<Argument name="text">Text to say</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="llScaleTexture">
|
<Word name="llScaleTexture">
|
||||||
|
@ -1842,7 +1909,9 @@ mail: alphons@heijden.com
|
||||||
If this is used to determine whether or not an inventory item
|
If this is used to determine whether or not an inventory item
|
||||||
exists within the object, it will have the side effect of spamming chat.
|
exists within the object, it will have the side effect of spamming chat.
|
||||||
<Argument name="item">inventory item</Argument>
|
<Argument name="item">inventory item</Argument>
|
||||||
<Argument name="mask" wild="MASK_.*">MASK_BASE, MASK_OWNER,MASK_GROUP, MASK_EVERYONE or MASK_NEXT</Argument>
|
<Argument name="mask" wild="MASK_.*">
|
||||||
|
MASK_BASE, MASK_OWNER,MASK_GROUP, MASK_EVERYONE or MASK_NEXT
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="llGetInventoryType">
|
<Word name="llGetInventoryType">
|
||||||
integer llGetInventoryType(string name);
|
integer llGetInventoryType(string name);
|
||||||
|
@ -1978,7 +2047,9 @@ mail: alphons@heijden.com
|
||||||
This function allows a script to perform a statistical
|
This function allows a script to perform a statistical
|
||||||
operation as defined by operation on a list composed
|
operation as defined by operation on a list composed
|
||||||
of integers and floats.
|
of integers and floats.
|
||||||
<Argument name="operation" wild="LIST_STAT_.*">One of LIST_STAT_* values</Argument>
|
<Argument name="operation" wild="LIST_STAT_.*">
|
||||||
|
One of LIST_STAT_* values
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="llLoadURL">
|
<Word name="llLoadURL">
|
||||||
llLoadURL(key avatar_id, string message, string url);
|
llLoadURL(key avatar_id, string message, string url);
|
||||||
|
@ -1995,7 +2066,6 @@ mail: alphons@heijden.com
|
||||||
float llLog10(float val);
|
float llLog10(float val);
|
||||||
|
|
||||||
Returns the base 10 (common) logarithm of val (value).
|
Returns the base 10 (common) logarithm of val (value).
|
||||||
|
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="llMapDestination">
|
<Word name="llMapDestination">
|
||||||
llMapDestination(string simname, vector position, vector lookat);
|
llMapDestination(string simname, vector position, vector lookat);
|
||||||
|
@ -2239,15 +2309,21 @@ mail: alphons@heijden.com
|
||||||
list llGetObjectDetails(key id, list params);
|
list llGetObjectDetails(key id, list params);
|
||||||
|
|
||||||
Returns a list of the details specified in params for the object with key id.
|
Returns a list of the details specified in params for the object with key id.
|
||||||
<Argument name="id">prim or avatar UUID that is in the same region</Argument>
|
<Argument name="id">
|
||||||
<Argument name="params">list of OBJECT_* flags</Argument>
|
prim or avatar UUID that is in the same region
|
||||||
|
</Argument>
|
||||||
|
<Argument name="params">
|
||||||
|
list of OBJECT_* flags
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llSetClickAction">
|
<Word name="llSetClickAction">
|
||||||
llSetClickAction(integer action);
|
llSetClickAction(integer action);
|
||||||
|
|
||||||
Sets the action performed when a prim is clicked upon.
|
Sets the action performed when a prim is clicked upon.
|
||||||
<Argument name="action" wild="CLICK_ACTION_.*">a CLICK_ACTION_* flag</Argument>
|
<Argument name="action" wild="CLICK_ACTION_.*">
|
||||||
|
a CLICK_ACTION_* flag
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llGetRegionAgentCount">
|
<Word name="llGetRegionAgentCount">
|
||||||
|
@ -2281,14 +2357,18 @@ mail: alphons@heijden.com
|
||||||
|
|
||||||
TOUCH_INVALID_TEXCOORD is returned
|
TOUCH_INVALID_TEXCOORD is returned
|
||||||
when the touch UV coordinates cannot be determined.
|
when the touch UV coordinates cannot be determined.
|
||||||
<Argument name="index">Index of detection information</Argument>
|
<Argument name="index">
|
||||||
|
Index of detection information
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llDetectedTouchFace">
|
<Word name="llDetectedTouchFace">
|
||||||
integer llDetectedTouchFace( integer index );
|
integer llDetectedTouchFace( integer index );
|
||||||
|
|
||||||
Returns an integer that is the index of the face the avatar clicked on.
|
Returns an integer that is the index of the face the avatar clicked on.
|
||||||
<Argument name="index">Index of detection information</Argument>
|
<Argument name="index">
|
||||||
|
Index of detection information
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llDetectedTouchPos">
|
<Word name="llDetectedTouchPos">
|
||||||
|
@ -2298,7 +2378,9 @@ mail: alphons@heijden.com
|
||||||
was touched in region coordinates, unless it is attached to
|
was touched in region coordinates, unless it is attached to
|
||||||
the HUD, in which case it returns the position relative
|
the HUD, in which case it returns the position relative
|
||||||
to the attach point.
|
to the attach point.
|
||||||
<Argument name="index">Index of detection information</Argument>
|
<Argument name="index">
|
||||||
|
Index of detection information
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llDetectedTouchNormal">
|
<Word name="llDetectedTouchNormal">
|
||||||
|
@ -2306,7 +2388,9 @@ mail: alphons@heijden.com
|
||||||
|
|
||||||
Returns a vector that is the surface normal
|
Returns a vector that is the surface normal
|
||||||
(perpendicular to the surface) where the touch event was triggered.
|
(perpendicular to the surface) where the touch event was triggered.
|
||||||
<Argument name="index">Index of detection information</Argument>
|
<Argument name="index">
|
||||||
|
Index of detection information
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llDetectedTouchBinormal">
|
<Word name="llDetectedTouchBinormal">
|
||||||
|
@ -2314,7 +2398,9 @@ mail: alphons@heijden.com
|
||||||
|
|
||||||
Returns a vector that is the surface binormal
|
Returns a vector that is the surface binormal
|
||||||
(tangent to the surface) where the touch event was triggered.
|
(tangent to the surface) where the touch event was triggered.
|
||||||
<Argument name="index">Index of detection information</Argument>
|
<Argument name="index">
|
||||||
|
Index of detection information
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llDetectedTouchST">
|
<Word name="llDetectedTouchST">
|
||||||
|
@ -2326,7 +2412,9 @@ mail: alphons@heijden.com
|
||||||
Each component is in the interval [0.0, 1.0].
|
Each component is in the interval [0.0, 1.0].
|
||||||
|
|
||||||
TOUCH_INVALID_TEXCOORD is returned when the surface coordinates cannot be determined.
|
TOUCH_INVALID_TEXCOORD is returned when the surface coordinates cannot be determined.
|
||||||
<Argument name="index">Index of detection information</Argument>
|
<Argument name="index">
|
||||||
|
Index of detection information
|
||||||
|
</Argument>
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="llSHA1String">
|
<Word name="llSHA1String">
|
||||||
|
@ -2360,7 +2448,6 @@ mail: alphons@heijden.com
|
||||||
Every state must have at least one handler. You can choose to
|
Every state must have at least one handler. You can choose to
|
||||||
handle an event by defining one of the the reserved
|
handle an event by defining one of the the reserved
|
||||||
event handlers named here.
|
event handlers named here.
|
||||||
|
|
||||||
<Word name="at_target" args="integer tnum,vector targetpos,vector ourpos">
|
<Word name="at_target" args="integer tnum,vector targetpos,vector ourpos">
|
||||||
at_target(integer tnum, vector targetpos, vector ourpos);
|
at_target(integer tnum, vector targetpos, vector ourpos);
|
||||||
|
|
||||||
|
@ -2640,10 +2727,8 @@ mail: alphons@heijden.com
|
||||||
that move or rotate, but are non-physical. It is also
|
that move or rotate, but are non-physical. It is also
|
||||||
useful for simulating volumetric lighting. The default is FALSE.
|
useful for simulating volumetric lighting. The default is FALSE.
|
||||||
</Word>
|
</Word>
|
||||||
<Word name="STATUS_ROTATE_X">
|
<Word name="STATUS_ROTATE_X"></Word>
|
||||||
</Word>
|
<Word name="STATUS_ROTATE_Y"></Word>
|
||||||
<Word name="STATUS_ROTATE_Y">
|
|
||||||
</Word>
|
|
||||||
<Word name="STATUS_ROTATE_Z">
|
<Word name="STATUS_ROTATE_Z">
|
||||||
Controls whether the object can physically rotate around
|
Controls whether the object can physically rotate around
|
||||||
the specific axis or not. This flag has no meaning
|
the specific axis or not. This flag has no meaning
|
||||||
|
@ -2742,20 +2827,13 @@ mail: alphons@heijden.com
|
||||||
type in calls to llGetInventoryNumber
|
type in calls to llGetInventoryNumber
|
||||||
andllGetInventoryName.
|
andllGetInventoryName.
|
||||||
Inventory Constants
|
Inventory Constants
|
||||||
<Word name="INVENTORY_TEXTURE">
|
<Word name="INVENTORY_TEXTURE"></Word>
|
||||||
</Word>
|
<Word name="INVENTORY_SOUND"></Word>
|
||||||
<Word name="INVENTORY_SOUND">
|
<Word name="INVENTORY_OBJECT"></Word>
|
||||||
</Word>
|
<Word name="INVENTORY_SCRIPT"></Word>
|
||||||
<Word name="INVENTORY_OBJECT">
|
<Word name="INVENTORY_LANDMARK"></Word>
|
||||||
</Word>
|
<Word name="INVENTORY_CLOTHING"></Word>
|
||||||
<Word name="INVENTORY_SCRIPT">
|
<Word name="INVENTORY_NOTECARD"></Word>
|
||||||
</Word>
|
|
||||||
<Word name="INVENTORY_LANDMARK">
|
|
||||||
</Word>
|
|
||||||
<Word name="INVENTORY_CLOTHING">
|
|
||||||
</Word>
|
|
||||||
<Word name="INVENTORY_NOTECARD">
|
|
||||||
</Word>
|
|
||||||
<Word name="INVENTORY_BODYPART">
|
<Word name="INVENTORY_BODYPART">
|
||||||
Each constant refers to the named type of inventory.
|
Each constant refers to the named type of inventory.
|
||||||
</Word>
|
</Word>
|
||||||
|
@ -2855,22 +2933,14 @@ mail: alphons@heijden.com
|
||||||
Attach to the avatar left pectoral. (depreciated)
|
Attach to the avatar left pectoral. (depreciated)
|
||||||
</Word>
|
</Word>
|
||||||
|
|
||||||
<Word name="ATTACH_HUD_CENTER_2">
|
<Word name="ATTACH_HUD_CENTER_2"></Word>
|
||||||
</Word>
|
<Word name="ATTACH_HUD_TOP_RIGHT"></Word>
|
||||||
<Word name="ATTACH_HUD_TOP_RIGHT">
|
<Word name="ATTACH_HUD_TOP_CENTER"></Word>
|
||||||
</Word>
|
<Word name="ATTACH_HUD_TOP_LEFT"></Word>
|
||||||
<Word name="ATTACH_HUD_TOP_CENTER">
|
<Word name="ATTACH_HUD_CENTER_1"></Word>
|
||||||
</Word>
|
<Word name="ATTACH_HUD_BOTTOM_LEFT"></Word>
|
||||||
<Word name="ATTACH_HUD_TOP_LEFT">
|
<Word name="ATTACH_HUD_BOTTOM"></Word>
|
||||||
</Word>
|
<Word name="ATTACH_HUD_BOTTOM_RIGHT"></Word>
|
||||||
<Word name="ATTACH_HUD_CENTER_1">
|
|
||||||
</Word>
|
|
||||||
<Word name="ATTACH_HUD_BOTTOM_LEFT">
|
|
||||||
</Word>
|
|
||||||
<Word name="ATTACH_HUD_BOTTOM">
|
|
||||||
</Word>
|
|
||||||
<Word name="ATTACH_HUD_BOTTOM_RIGHT">
|
|
||||||
</Word>
|
|
||||||
</WordsSubsection>
|
</WordsSubsection>
|
||||||
<WordsSubsection name="C.7. Land Constants">
|
<WordsSubsection name="C.7. Land Constants">
|
||||||
These constants are only used in calls to llModifyLand.
|
These constants are only used in calls to llModifyLand.
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -105,6 +105,217 @@ C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LS
|
||||||
C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\LSLEditor.Tools.VersionControlGeneral.resources
|
C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\LSLEditor.Tools.VersionControlGeneral.resources
|
||||||
C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\LSLEditor.UpdateApplicationForm.resources
|
C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\LSLEditor.UpdateApplicationForm.resources
|
||||||
C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\lsleditor.csproj.GenerateResource.Cache
|
C:\Documents and Settings\Alphons\Mijn documenten\Visual Studio 2005\Projects\LSLEditor\obj\Debug\lsleditor.csproj.GenerateResource.Cache
|
||||||
|
C:\libs\LSLEditor\bin\Release\LSLEditor.exe.config
|
||||||
|
C:\libs\LSLEditor\bin\Release\LSLEditor.exe
|
||||||
|
C:\libs\LSLEditor\bin\Release\LSLEditor.XmlSerializers.dll
|
||||||
|
C:\libs\LSLEditor\obj\Release\ResolveAssemblyReference.cache
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.ConfLSL.xml
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.ConfCSharp.xml
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.ToolsOptions.xml
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Class.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Constants.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Enum.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Events.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Functions.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Namespace.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Properties.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.SealedClass.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Unknown.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Close-Active.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Close-Disabled.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Close-Inactive.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Animation.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Animations.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Body Parts.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Prim.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Calling Cards.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Clothes.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Eyes.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Folder.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Gesture.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Gestures.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Gloves.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Hair.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Inventory.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Jacket.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Landmark.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Landmarks.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Lost And Found.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Notecard.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Notecards.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Object.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Objects.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Pants.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Photo Album.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Project.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.question.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Script.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Scripts.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Shape.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Shirt.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Shoes.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Skin.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Skirt.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Snapshot.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Socks.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Solution.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Sound.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Sounds.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Texture.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Textures.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Trash.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Underpants.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Undershirt.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.ImagesSolutionExplorer.Unknown.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Images.Vars.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.thanks.gif
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.About.htm
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Resource.ReleaseNotes.htm
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.About.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Browser.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.BugReport.BugReportForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Solution.GuidProperty.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.NewProject.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.PermissionsForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.GotoWindow.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.EditForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.TooltipWindow.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.GListBoxWindow.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.RichLabel.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.FindWindow.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.llDialogForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.LSLEditorForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Properties.Resources.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\NumberedTextBox.NumberedTextBoxUC.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.GroupboxEvent.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.RuntimeConsole.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.SyntaxRichTextBox.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.SimulatorConsole.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Solution.SolutionExplorer.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Solution.SvnAguments.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.SyntaxError.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.EnvironmentPlugins.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.RuntimeGeneral.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.TextEditorCodeCompletion.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.EnvironmentBrowser.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.ProjectSettings.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.RuntimeInternal.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.RuntimeSmtp.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.RuntimeExternal.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.EnvironmentGeneral.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.TextEditorFontColors.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.EnvironmentHelp.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.TextEditorGeneral.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.ToolsOptions.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.Tools.VersionControlGeneral.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.UpdateApplicationForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Release\lsleditor.csproj.GenerateResource.Cache
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.exe
|
||||||
|
C:\libs\LSLEditor\obj\Release\LSLEditor.XmlSerializers.dll
|
||||||
C:\libs\LSLEditor\bin\Debug\LSLEditor.exe.config
|
C:\libs\LSLEditor\bin\Debug\LSLEditor.exe.config
|
||||||
|
C:\libs\LSLEditor\bin\Debug\LSLEditor.exe
|
||||||
|
C:\libs\LSLEditor\bin\Debug\LSLEditor.pdb
|
||||||
|
C:\libs\LSLEditor\obj\Debug\ResolveAssemblyReference.cache
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.ConfLSL.xml
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.ConfCSharp.xml
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.ToolsOptions.xml
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Class.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Constants.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Enum.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Events.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Functions.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Namespace.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Properties.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.SealedClass.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Unknown.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Close-Active.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Close-Disabled.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Close-Inactive.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Animation.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Animations.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Body Parts.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Prim.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Calling Cards.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Clothes.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Eyes.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Folder.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Gesture.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Gestures.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Gloves.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Hair.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Inventory.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Jacket.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Landmark.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Landmarks.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Lost And Found.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Notecard.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Notecards.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Object.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Objects.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Pants.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Photo Album.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Project.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.question.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Script.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Scripts.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Shape.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Shirt.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Shoes.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Skin.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Skirt.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Snapshot.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Socks.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Solution.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Sound.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Sounds.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Texture.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Textures.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Trash.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Underpants.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Undershirt.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.ImagesSolutionExplorer.Unknown.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Images.Vars.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.thanks.gif
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.About.htm
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Resource.ReleaseNotes.htm
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.About.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Browser.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.BugReport.BugReportForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Solution.GuidProperty.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.NewProject.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.PermissionsForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.GotoWindow.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.EditForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.TooltipWindow.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.GListBoxWindow.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.RichLabel.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.FindWindow.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.llDialogForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.LSLEditorForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Properties.Resources.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\NumberedTextBox.NumberedTextBoxUC.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.GroupboxEvent.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.RuntimeConsole.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.SyntaxRichTextBox.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.SimulatorConsole.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Solution.SolutionExplorer.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Solution.SvnAguments.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.SyntaxError.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.EnvironmentPlugins.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.RuntimeGeneral.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.TextEditorCodeCompletion.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.EnvironmentBrowser.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.ProjectSettings.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.RuntimeInternal.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.RuntimeSmtp.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.RuntimeExternal.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.EnvironmentGeneral.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.TextEditorFontColors.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.EnvironmentHelp.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.TextEditorGeneral.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.ToolsOptions.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.Tools.VersionControlGeneral.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.UpdateApplicationForm.resources
|
||||||
|
C:\libs\LSLEditor\obj\Debug\lsleditor.csproj.GenerateResource.Cache
|
||||||
C:\libs\LSLEditor\obj\Debug\LSLEditor.exe
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.exe
|
||||||
C:\libs\LSLEditor\obj\Debug\LSLEditor.pdb
|
C:\libs\LSLEditor\obj\Debug\LSLEditor.pdb
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue