INTERACT FORUM

Windows => Plug-in Development => Topic started by: Smoove_D on April 02, 2003, 09:11:42 am

Title: BusyBox SDK Sample
Post by: Smoove_D on April 02, 2003, 09:11:42 am
Is this SDK for MC9?  I ran the reg file, built the ocx, put the ocx in the plugins directory(altough that shouldnt matter since the ocx is found by the prog id in the registry), but when I  run MC9, it doesnt show the busybox plugin in the 'interface' plugins section of the plugin manager.  Has anyone tryed playing with this sample project?
Title: Re: BusyBox SDK Sample
Post by: KingSparta on April 02, 2003, 09:43:46 am
i think i know what the problem is (registry has changed) and have been looking for a link to busybox and asked for one but no one has provided one.

could you give me a link?

if so i will update the Reg file and post it for you.
Title: Re: BusyBox SDK Sample
Post by: Smoove_D on April 02, 2003, 10:10:12 am
the zip file I downloaded was http://www.musicex.com/mediajukebox/DevZone/int_sdk.zip

Thanks!
Title: Re: BusyBox SDK Sample
Post by: KingSparta on April 02, 2003, 10:35:39 am
Thanks for the Link!!!!, I think J River was hiding it from me.

this will work with windows XP

if users are using windows 98/98se/winME etc....

it will not work and the first line will need to be changed.

Ie "Windows Registry Editor Version 5.00"

I forget what the first line needs to be but it is in this forum.

it is better to use an installer then it wil work

---------------------------------------------------
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\JRiver\Media Jukebox\Plugins\Interface\Busy Box]
"IVersion"=dword:00000001
"Company"="JRiver, Inc."
"Version"="1.0.01"
"URL"="http://www.mediajukebox.com"
"Copyright"="Copyright (c) 2000-2002, JRiver, Inc."
"PluginMode"=dword:00000000
"ProdID"="BusyBox.BusyBoxCtrl"
Title: Re: BusyBox SDK Sample
Post by: KingSparta on April 02, 2003, 11:06:00 am
also note they changed from key HKCU to HKLM or visa versa not sure

Matt said there would be more changes


so if above does not work this should

= see below =============================
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Software\JRiver\Media Jukebox\Plugins\Interface\Busy Box]
"IVersion"=dword:00000001
"Company"="JRiver, Inc."
"Version"="1.0.01"
"URL"="http://www.mediajukebox.com"
"Copyright"="Copyright (c) 2000-2002, JRiver, Inc."
"PluginMode"=dword:00000000
"ProdID"="BusyBox.BusyBoxCtrl"
Title: Re: BusyBox SDK Sample
Post by: KingSparta on April 02, 2003, 11:14:41 am
yep the last one works, just checked...

I needed to recompile, i think because i moved it into another dir
Title: Re: BusyBox SDK Sample
Post by: Smoove_D on April 07, 2003, 04:22:12 pm
pretty cool.. thanx for the help.. One more question for those who have tried to develop a interface plugin.  Any luck with debugging?  When I run the project in the IDE, with 'wait for component to be created', I then start up MC9, and the component fails to be created.  I put a breakpoint on the init() function, and its never called.  

Anyone have experience with this?