Extension plugin problems
I'm trying to get extension plugins working with RR but obviously I'm doing something wrong. I can't even get it to work using the example dll.
In my menu.skin I've added the following lines:
X,MyExtension
L,271,339,231,34,202,202,202,14,"Verdana","MYLABEL ",""
B14,632,505,162,67,"MYCOMMAND",""
which should load the plugin dll, give me the label defined in MyExtension, and a button that opens a msgbox if I understand correctly. I've also tried recompiling the example module with a msgbox in Class_Initialize() to try and determine if it's loading.
My RR debug log shows:
23/06/2006 7:41:31 AM: Leave Exec: False, menu.skin, , False
23/06/2006 7:41:33 AM: Enter Exec: False, menu.skin, "MYCOMMAND", False
23/06/2006 7:41:33 AM: Que Exec: True, menu.skin, "MYCOMMAND", False
23/06/2006 7:41:33 AM: Executing: MYCOMMAND
but no label of msgbox :(
so some questions -
1) am I doing this right? I'm fairly new to RR but have read the extension plugin FAQ and this seems to be the way it's meant to be done?
2) where should the plugin DLL be? in the skin dir I assume?
3) Should the debug log show plugin information?
I'm probably doing something dumb, but I can't work it out...