Welcome
PluginInfo Action Plugin
1.1.0.0
The version for AMS8
This is a small plugin that'll help you obtain
information about Autoplay Media Studio
Object and/or Action plugins.
Free for commercial and non-commercial use.
Do not redistribute/modify/resell this work.
Imagine Programming
www.imagine-programming.com
contact@imagine-programming.com
Autoplay Media Studio 8
No longer requires the AMSWaves Memory Plugin!!!
© Imagine Programming, 2010. All rights reserved!
PluginInfo.GetName
PluginInfo.GetXML
PluginInfo.GetLuaVersion
PluginInfo.GetAuthorInfo
PluginInfo.GetVersion
PluginInfo.GetInfo
PluginInfo.IsValidLicense
(string) PluginInfo.GetName ( | (string) Filename ) |
Get's the name from a plugin
(string) The plugin filename
(string)
(string) PluginInfo.GetXML ( | (string) Filename ) |
Get's the XML from a plugin
(string) The plugin filename
(string)
(string) PluginInfo.GetLuaVersion ( | (string) Filename ) |
Get's the lualibrary's version from a plugin
(string) The plugin filename
(string)
(string) PluginInfo.GetAuthorInfo ( | (string) Filename ) |
Get's the author information from a plugin
(string) The plugin filename
(string)
(string) PluginInfo.GetVersion ( | (string) Filename ) |
Get's the plugin's version from a plugin
(string) The plugin filename
(string)
(table) PluginInfo.GetInfo ( | (string) Filename ) |
Get's all information from a plugin
(string) The plugin filename
(table) The table will contain the next values
tReturn = {
Name = "Plugin Name",
Version = "Plugin Version",
LuaVersion = "Plugin's luaversion",
AuthorInfo = "Plugin's author information",
ActionXML = "Plugin's XML data"
};
(boolean) PluginInfo.IsValidLicense ( | (string) Filename, (string) License ) |
Check if a license is valid for the plugin.
Note: This works with both SDK1 and SDK2 plugins
(string) The plugin filename
(string) The string containing the content of the license.
(boolean) Returns true if the license was valid, and false if the license is not valid or the plugin is invalid.
bValidLicense = PluginInfo.IsValidLicense(PluginPath, szLicense);
if(bValidLicense)then
Dialog.Message("Yay!", "This license is valid for this plugin!");
end
© Imagine Programming, 2010. All rights reserved!
This File Was Generated With AMS ActionFile Editor