PluginInfo Action Plugin Help File

PluginInfo Action Plugin Help File

Plugin Name:

PluginInfo Action Plugin

Current Version:

1.1.0.0

Description:

The version for AMS8

This is a small plugin that'll help you obtain
information about Autoplay Media Studio
Object and/or Action plugins.

Licence:

Free for commercial and non-commercial use.
Do not redistribute/modify/resell this work.

Author:

Imagine Programming

Web:

www.imagine-programming.com

E-mail:

contact@imagine-programming.com

Requirements:

Autoplay Media Studio 8
No longer requires the AMSWaves Memory Plugin!!!

Copyright:

© Imagine Programming, 2010. All rights reserved!


Table of Contents

PluginInfo.GetName
PluginInfo.GetXML
PluginInfo.GetLuaVersion
PluginInfo.GetAuthorInfo
PluginInfo.GetVersion
PluginInfo.GetInfo
PluginInfo.IsValidLicense

PluginInfo.GetName


(string) PluginInfo.GetName ( 

(string) Filename )

Description

Get's the name from a plugin

Parameters

Filename

(string) The plugin filename

Returns

(string)


PluginInfo.GetXML


(string) PluginInfo.GetXML ( 

(string) Filename )

Description

Get's the XML from a plugin

Parameters

Filename

(string) The plugin filename

Returns

(string)


PluginInfo.GetLuaVersion


(string) PluginInfo.GetLuaVersion ( 

(string) Filename )

Description

Get's the lualibrary's version from a plugin

Parameters

Filename

(string) The plugin filename

Returns

(string)


PluginInfo.GetAuthorInfo


(string) PluginInfo.GetAuthorInfo ( 

(string) Filename )

Description

Get's the author information from a plugin

Parameters

Filename

(string) The plugin filename

Returns

(string)


PluginInfo.GetVersion


(string) PluginInfo.GetVersion ( 

(string) Filename )

Description

Get's the plugin's version from a plugin

Parameters

Filename

(string) The plugin filename

Returns

(string)


PluginInfo.GetInfo


(table) PluginInfo.GetInfo ( 

(string) Filename )

Description

Get's all information from a plugin

Parameters

Filename

(string) The plugin filename

Returns

(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"
};


PluginInfo.IsValidLicense


(boolean) PluginInfo.IsValidLicense ( 

(string) Filename,

(string) License )

Description

Check if a license is valid for the plugin.

Note: This works with both SDK1 and SDK2 plugins

Parameters

Filename

(string) The plugin filename

License

(string) The string containing the content of the license.

Returns

(boolean) Returns true if the license was valid, and false if the license is not valid or the plugin is invalid.


Example

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