--- In [EMAIL PROTECTED], "paulggardner" <[EMAIL PROTECTED]> wrote: > > I've noticed that if I have a HookWindowsEvent defined, then after > about 30 minutues of use, consisting mainly of Outlook and FireFox, PP > will suddenly hit 100% and I have to kill it from the Task manager. > > If I disable the event, then the problems doesn't occur. If I don't > run Outlook, then the problem doesn't occur.
My guess is that this is an incompatibility between Outlook and Hooks that does not depend on scripts. I don't use Outlook. Could you please try adding some code to your command list which writes arg(1) arg(2) arg(3) arg(4) and the time and perfcount and perffreq to a file before calling your script (or just pass all 4 args to your script and write from there). Make sure you open and clost the file with each operation. Something like local han=file.open(pprofolder++"/loghook.txt", "a") file.writeline(perfcount++" "++perffreq++" "++time++" "++arg(1) ++" "++arg(2)++" "++arg(3)++" "++arg(4)) file.close(han) Then please post the last 10 or so lines of the file after you have aborted PowerPro. When PowerPro starts looping, ------------------------ Yahoo! Groups Sponsor --------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/JV_rlB/TM --------------------------------------------------------------------~-> Attention: PowerPro's Web site has moved: http://www.ppro.org Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
