Hot Door CORE Forum

Full Version: Overloading Illustrator at launch?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In adding another panel to a plugin I found that popup menus were not getting updated when restoring their selection to the index that was saved in the preferences. The solution I found was to simply delay by a few seconds the panel's update like this:

Code:
HDI_CORE_PLUGIN->dispatcher()->scheduleCallback(HDI_CORE_CALLBACK(myPlug::Plugin, this, updateMyPanel), 3);

This has me wondering if Illustrator can simply become overloaded at launch. Would be wise to delay all tasks that aren't visible to the user such as async checking for updates via HTTP?