quote:
Originally posted by Zero
Well... I'm afraid to ask this but... how do you use the windows API in a JS app?? Is there a specific MSDN example you folks could point me at???????????
start by looking at the Interop object in the Scripting Documentation
.
code:
// MessageBox Example
Interop.Call("user32" /*DLL Name*/,"MessageBoxW" /*Function Name*/, 0 /*Handle*/, "Hello World!" /*Main Text*/, "Test" /*Title*/, 64 /*Icon & buttons*/);
http://msdn2.microsoft.com