Zydecode Studio

Archive for November, 2005

Nortel “Reporting for Call Center” bugs

Monday, November 14th, 2005

okay, this one’s bitten my ass twice now, so it gets documented. Default install of RFCC - ASP, with mySQL, Crystal Reports, Java, yadda yadda.
Here’s what you’ll have to deal with.
1. when you try to run reports you’ll get an ASP error on the client - seems to be because of the Response.Expires = 0 [...]

removeEventListener with Delegate & multiple callers..

Wednesday, November 2nd, 2005

painful stuff… trying to create a row of buttons, add eventListeners to them all, and pass the ‘release’ event to a single function (rather than one function per button). Because I have to use Delegate.create, it’s difficult to add arguments - and then also make sure that the removeEventListener also works. :oP
I’m SURE there are [...]