And ofcourse, I like the L-OOP, but that's old news

And the XMLifier is dam nice, guess where I've done the actionxml
of the PluginInfo plugin with

Release theeem!


ListIconObject = ListIconEx.CreateObject(0, 0, 0, 0, "Column 0", 300, {ObjectHost = ListBox.GetProperties("ListBox1").WindowHandle});
ListIconObject.OnKey = function(Key)
Dialog.Message("", "Key code recieved was "..tostring(Key));
end
ListIconObject:SetUpdate(false);
ListIconObject:AddColumn("Column 1", 250);
for K, V in pairs({"bmp", "exe", "url", "php", "txt", "cmd", "rar", "zip", "7z", "tar.gz", "img", "gcf"}) do
ListIconObject:AddRow(V.."|"..V.." file.", ListIcon.ExtensionIcon(V));
end
ListIconObject:SetUpdate(true);
--[[ <data> <name>ListIconEx.CreateObject</name> <description>Creates an object-orientated ListIcon object.</description> <return>ListIcon</return> <argument name="X" type="number" description="The X position of the ListIcon." default="0" /> <argument name="Y" type="number" description="The Y position of the ListIcon." default="0" /> <argument name="Width" type="number" description="The width of the ListIcon." default="0" /> <argument name="Height" type="number" description="The height of the ListIcon." default="0" /> <argument name="ColumnText" type="string" description="The text to be placed in the first column." default="Column0" /> <argument name="ColumnSize" type="number" description="The size of the first column." default="250" /> <argument name="Flags" type="table" description="Flags for use in creating the ListIcon." /> </data> ]]--

PSDK.ExportArchive(3000 , IRLUA_PLUGIN_DLL_PATH);

)
Leave a comment: