module viewlets

Within my module i want to have a viewlet that gets it data from a
module event. So I have the following code within my module viewlet

<cfset runEvent(event="cbTestModule.general.prepareViewletTest1") />

But I receive the following error!

The event: cbTestModule.general.prepareViewletTest1 is not valid
registered event.

anyone have any ideas, or could this be a possible bug?

thanks.

Craig,

This should fix it.

<cfset runEvent(event="cbTestModule:general.prepareViewletTest1") />

Just a small syntax issue...

Curt Gratz
Computer Know How

That worked! Thanks a lot!