I'm trying to figure out how this EQ2UIPage stuff works. Think I pretty much have it, except for the little problem I'm coding in .NET... And I have no idea how to get an EQ2UIPage.
I have all the includes as far as I know.
using EQ2.ISXEQ2;
using LavishVMAPI;
using InnerSpaceAPI;
using LavishScriptAPI;
though if I try to instantiate a EQ2UIPage class, it want's a LavishScriptObject as a parameter. And no idea where i get something like that. Can't even make them myself, as a LavishScriptObject requires a ... LavishScriptObject to be instantiated...
So anyone have any experience in using EQ2UIPage in .NET... or reference to any code I can see?
I can figure out the rest, on how to make this work. As long as I actually have an EQ2UIpage object to work with.
//slowPoke
I have all the includes as far as I know.
using EQ2.ISXEQ2;
using LavishVMAPI;
using InnerSpaceAPI;
using LavishScriptAPI;
though if I try to instantiate a EQ2UIPage class, it want's a LavishScriptObject as a parameter. And no idea where i get something like that. Can't even make them myself, as a LavishScriptObject requires a ... LavishScriptObject to be instantiated...
So anyone have any experience in using EQ2UIPage in .NET... or reference to any code I can see?
I can figure out the rest, on how to make this work. As long as I actually have an EQ2UIpage object to work with.
Code:
using EQ2.ISXEQ2;
using LavishVMAPI;
using InnerSpaceAPI;
using LavishScriptAPI;
...
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new eq2merchant());
EQ2UIPage page = new EQ2UIPage ();
page.Child ( "text", "SomethingSomething" );
}
...