Page 1 of 1

__Window

Posted: Sat Mar 08, 2014 3:13 pm
by Shrek

Code: Select all

myfunction = function(hdl)
 if  __Window.IsWindow(hdl) then 
   return true
 else
   return false
 end
end;
Error: attempting to index global __Window (a nil value)

Seems __Window is not loading so the Windows functions don't work.

Re: __Window

Posted: Sat Mar 08, 2014 4:24 pm
by Serkan
Hi
The __Window is a module/extension of APM plugin system , you should select that module from modules panel
APM makes a true binary compilation, it does not patch pre-compiled DLLs ,

this system allows you to include only the components you used , and unused ones will not be included to plugin
this means ,small file size because it will only contain the components you used

fast processing , because it does not load/register unused component's functions etc..

when you want to use a module ,you should check its checkbox from modules panel
apm_modules.jpg

Re: __Window

Posted: Sat Mar 08, 2014 4:44 pm
by Shrek
ahh, thanks.