Welcome
Graph
1.0.0.0
Ceone
produceone@gmail.com
This Object Plugin require Memory Action Plugin and Graph ActiveX.
Graph.CreateObject ( | (string) ObjectName = "Plugin1", (number) Percent = 0, (number) PrimaryColor = 0, (number) SecondaryColor = 0, (number) ShadowColor = 0, (number) BackColor = 0 ) |
To create graph object plugin.
(string) To set ObjectName
(number) To set Percent
(number) To set PrimaryColor
(number) To set SecondaryColor
(number) To set ShadowColor
(number) To set BackColor
This action dose not return any value.
Graph.CreateObject("Plugin1", Math.Random(0, 100), Math.Random(0, 9999999), Math.Random(0, 9999999), Math.Random(0, 9999999));
Graph.CreateObject("Plugin2", Math.Random(0, 100), Math.Random(0, 9999999), Math.Random(0, 9999999), Math.Random(0, 9999999));
Graph.CreateObject("Plugin3", Math.Random(0, 100), Math.Random(0, 9999999), Math.Random(0, 9999999), Math.Random(0, 9999999));
Graph.CreateObject("Plugin4", Math.Random(0, 100), Math.Random(0, 9999999), Math.Random(0, 9999999), Math.Random(0, 9999999));
Graph.CreateObject("Plugin5", Math.Random(0, 100), Math.Random(0, 9999999), Math.Random(0, 9999999), Math.Random(0, 9999999));
Graph.CreateObject("Plugin6", Math.Random(0, 100), Math.Random(0, 9999999), Math.Random(0, 9999999), Math.Random(0, 9999999));
Graph.SetPercent ( | (string) ObjectName = "Plugin1", (number) Percent = 0 ) |
To SetPercent
(string) To set ObjectName
(number) To set Percent
This action dose not return any value.
for Percent=0, Math.Random(10, 100) do
Graph.SetPercent(tostring(ComboBox.GetItemText("ComboBox1", ComboBox.GetSelected("ComboBox1"))), Percent);
Application.Sleep(10);
end
(number) Graph.GetPercent ( | (string) ObjectName = "Plugin1" ) |
To GetPercent
(string) To set ObjectName
(number) return percent number.
result = Graph.GetPercent(tostring(ComboBox.GetItemText("ComboBox1", ComboBox.GetSelected("ComboBox1"))));
Dialog.Message("", result.." %");
Graph.SetColors ( | (string) ObjectName = "Plugin1", (number) PrimaryColor = 0, (number) SecondaryColor = 0, (number) ShadowColor = 0, (number) BackColor = 0 ) |
To SetColors
(string) To set ObjectName
(number) To set PrimaryColor
(number) To set SecondaryColor
(number) To set ShadowColor
(number) To set BackColor
This action dose not return any value.
randA = Math.Random(0, 9999999)
randB = Math.Random(0, 9999999)
randC = Math.Random(0, 9999999)
randD = Math.Random(0, 9999999)
Graph.SetColors(tostring(ComboBox.GetItemText("ComboBox1", ComboBox.GetSelected("ComboBox1"))), randA, randB, randC, randD);
(table) Graph.GetColors ( | (string) ObjectName = "Plugin1" ) |
To GetColors
(string) To set ObjectName
(table) return table with: "PrimaryColor", "SecondaryColor", "ShadowColor" and "BackColor".
result = Graph.GetColors(tostring(ComboBox.GetItemText("ComboBox1", ComboBox.GetSelected("ComboBox1"))));
if result ~= nil then
text = "Back: "..result.Back.."\r\n"
text = text.."Primary: "..result.Primary.."\r\n"
text = text.."Secondary: "..result.Secondary.."\r\n"
text = text.."Shadow: "..result.Shadow
Dialog.Message("", text);
end
This File Was Generated With AMS ActionFile Editor