Welcome
ComboList Objec Plugin
1.0.0.0
Combo browser for autoplay media studio, made with Skelton (Lukas the duck)
Free
raf@xplayer
Require Memory Plugin
Copy folder plugin in AMS Directory Plugins/Objects
ComboList.StartEvents
ComboList.CreateObject
ComboList.SetSelectedFolder
ComboList.GetSelectedFolder
ComboList.GetSelectedItemIndex
ComboList.SetDisplayPanelHeight
ComboList.GetSelectedText
ComboList.SetSelectedText
ComboList.SetEditable
ComboList.AddFolder
ComboList.SetColor
ComboList.SetCharCase
ComboList.DeleteItemSelected
ComboList.SetAutomaticRefresh
ComboList.ShowNetHood
ComboList.ShowRecycleBin
ComboList.GetItemsCount
ComboList.SetDropedDown
ComboList.GetDropedDown
ComboList.GetDropDownItemsCount
ComboList.SetDropDownItemsCount
ComboList.StartEvents ( | (string) ObjectName = "Plugin1", (string) ObjectName = "Plugin1", (string) ObjectName = "Plugin1", (string) ObjectName = "Plugin1" ) |
Start Events in the Objects
Note: ( MAX 4 objects)
(string) Name of te Combo object
(string) Name of te Combo object
(string) Name of te Combo object
(string) Name of te Combo object
This action dose not return any value.
Eixample 1 object
ComboList.StartEvents("Plugin1")
2 Objects..
ComboList.StartEvents("Plugin1","Plugin2")
3 Objects..
ComboList.StartEvents("Plugin1","Plugin2","Plugin3")
ComboList.CreateObject ( | (string) ObjectName = "Plugin1", (string) Path = "" ) |
Create the object
(string) Name of the Como object
(string) Path to select the ini
This action dose not return any value.
ComboList.CreateObject("Plugin1"._DesktopFolder)
ComboList.SetSelectedFolder ( | (string) ObjectName = "Plugin1", (string) Path = "C:\\DestDir\\" ) |
Set item folder
(string) Name of the Combo object
(string) Path of item selected
This action dose not return any value.
ComboList.SetSelectedFolder("Plugin1",_DesktopFolder)
(string) ComboList.GetSelectedFolder ( | (string) ObjectName = "Plugin1" ) |
Get Path of item selected
(string) Name of the Combo object
(string)
xPath = ComboList.GetSelectedFolder("Plugin1")
(number) ComboList.GetSelectedItemIndex ( | (string) ObjectName = "Plugin1" ) |
Get the index o item selcted
(string) Name of the Combo Object
(number)
nIndex = ComboList.GetSelectedItemIndex("Plugin1)
ComboList.SetDisplayPanelHeight ( | (string) ObjectName = "Plugin1", (number) Height = 15 ) |
Set panel Heigth in pixels
(string) Name of the combo object
(number) Height in pixels
This action dose not return any value.
ComboList.SetDisplayPanelHeight("Plugin1",30)
(string) ComboList.GetSelectedText ( | (string) ObjectName = "Plugin1" ) |
Get text of item selected
(string) Name of the Combo Object
(string)
Text = ComboList.GetSelectedText("Plugin1")
Dilaog.Message("Item","Text : "..Text)
ComboList.SetSelectedText ( | (string) ObjectName = "Plugin1", (string) Text = "New Name" ) |
Set tex of item selected
(string) Name of the Combo Object
(string) Set text
This action dose not return any value.
ComboList.SetSelectedText("Plugin1","New Name")
ComboList.SetEditable ( | (string) ObjectName = "Plugin1", (boolean) Editable = true ) |
Set editable or not
(string) Name of the Combo object
(boolean) Editable or not
Value | Description |
true | (Default) Editable |
false | not editable |
This action dose not return any value.
ComboList.SetEditable("Plugin1",true)
(string) ComboList.AddFolder ( | (string) ObjectName = "Plugin1", (string) Folder path = "C:\\DestDir\\", (number) Indent = 1, (boolean) Permanent = true ) |
Add the System folder
(string) Name of the Combo object
(string) Path of the folder to add
(number) Position Add
(boolean) Sets whether the folder to be visible after making changes to the Combo
Value | Description |
true | (Default) Permanent |
false | Not |
(string) Path
aPath = ComboList.AddFolder("Plugin1",_SourceFolder,1,false)
bPath = ComboList.AddFolder("Plugin1",_SourceFolder.."\\Autoplay",2,false)
cPath = ComboList.AddFolder("Plugin1",_SourceFolder.."\\Autoplay\\Docs",3,false)
if aPath and bPath and cPath then
Dialog.Message("Create path",String.SplitPath(aPath).Filename.."\r\n"..String.SplitPath(bPath).Filename.."\r\n"..String.SplitPath(cPath).Filename)
end
ComboList.SetColor ( | (string) ObjectName = "Plugin1", (number) Color = 0000 ) |
Set color combo
(string) Name of the combo object
(number) Number of the Color
Note: Require Color number decimal
This action dose not return any value.
-- Eixample require SysDialog Action plugin
local nColor = SysDialog.Color(65280);
if nColor~=nil then
ComboList.SetColor("Plugin1",nColor.Decimal)
end
ComboList.SetCharCase ( | (string) ObjectName = "Plugin1", (variant) Edit Char Case = Normal ) |
Set char case of items
(string) Name of the Combo Object
(variant) Char case
CONSTANT | VALUE | DESCRIPTION |
Normal | 0 | Norma char case |
UpperCase | 1 | UpperCase |
LowerCase | 2 | LowerCase |
This action dose not return any value.
ComboList.SetCharCase("Plugin!",UpperCase)
ComboList.DeleteItemSelected ( | (string) ObjectName = "Plugin1" ) |
Delete item selected
Note: No delete sistem files
(string) Name of the Combo object
This action dose not return any value.
ComboList.DeleteItemSelected("Plugin1")
ComboList.SetAutomaticRefresh ( | (string) ObjectName = "Plugin1", (boolean) Automatic = true ) |
Set automatic refresh of changes
(string) Name of the Combo object
(boolean) Sets Automatic
Value | Description |
true | (Default) Automatic refresh |
false | not refresh |
This action dose not return any value.
ComboList.SetAutomaticRefresh("Plugin1",true)
ComboList.ShowNetHood ( | (string) ObjectName = "Plugin1", (boolean) Show = false ) |
Show or not Net Hood item
(string) Name of the Combo object
(boolean) Set Show
Note: Default true
Value | Description |
true | Show |
false | (Default) Hidde |
This action dose not return any value.
ComboList.ShowNetHood("Plugin1",false)
ComboList.ShowRecycleBin ( | (string) ObjectName = "Plugin1", (boolean) Show = false ) |
Show or not Recycle Bin item
(string) Name of the Combo object
(boolean) Set Show
Note: Default true
This action dose not return any value.
ComboList.ShowRecycleBin("Plugin1",false)
(number) ComboList.GetItemsCount ( | (string) ObjectName = "Plugin1" ) |
Gets the number of the items
(string) Name of the Combo object
(number)
nItems = ComboList.GetItemsCount("Plugin1")
Dialog.Message("Items","Total : "..nItems)
ComboList.SetDropedDown ( | (string) ObjectName = "Plugin1", (boolean) DropedDown = treu ) |
Open panel determines whether or not
(string) Name of the Combo Object
(boolean) Set action
Value | Description |
true | Open panel |
false | Close |
This action dose not return any value.
ComboList.SetDropedDown("Plugin1",true)
(boolean) ComboList.GetDropedDown ( | (string) ObjectName = "Plugin1" ) |
Get state of the panel, open or closed
(string) Name of the combo object
(boolean)
xDrop = ComboList.GetDropedDown("Plugin1")
if xDrop then
ComboList.SetDropedDown("Plugin1",false)
end
(number) ComboList.GetDropDownItemsCount ( | (string) ObjectName = "Plugin1" ) |
Get number of items that are opened with panel
(string) Name of the Combo object
(number)
nItems = ComboList.GetDropDownItemsCount("Plugin1")
ComboList.SetDropDownItemsCount ( | (string) ObjectName = "Plugin1", (number) Nš Items = 10 ) |
Sets the number of items that will open with the panel
(string) Name of the combo object
(number) Number of items showing
This action dose not return any value.
ComboList.SetDropDownItemsCount("Plugin1",15)
This File Was Generated With AMS ActionFile Editor