--- In [email protected], [EMAIL PROTECTED] wrote: > So, for the time being I'll personally disable, and re-enable my monitor > list in the script and not switch focus when the browse dialog is up. > > Maybe bruce can find a fix for it with his next release. I wonder if timers > are executed during filedialogs that would also cause a problem... >
I probably would need to redesign the way PowerPro communicates with pproctx.dll (which is what explorer runs to process context menus), and that would be too much work. I think that, effectively, explorer is waiting for inputdialog to close and this may not be healthy. If the problem comes from having a dialog open from a powerpro context menu, try the following approach to the context menu script. The idea is to collect all the files in a vector then run an event to process them after waiting 0.5 seconds to allow return to explorer. ; Not tested ; script name is thisscript static files if (context==0) do if (vec.exists(files)) vec.destroy(files) files=vec.create(20,20) endif files[context] = _file_ context=context+1 if (contextlast) event.createms(500,1,"[EMAIL PROTECTED]") quit @dowork static files if (not vec.exists(files)) quit for (local i=0; i<context; i=i+1) ; Do something with files[i] endfor files=vec.destroy(files) quit ------------------------ Yahoo! Groups Sponsor --------------------~--> <font face=arial size=-1><a href="http://us.ard.yahoo.com/SIG=12hnalcau/M=362131.6882499.7825260.1510227/D=groups/S=1706030409:TM/Y=YAHOO/EXP=1124237861/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org ">Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life - brought to you by One Economy</a>.</font> --------------------------------------------------------------------~-> 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/
