How can I get EA to refresh itself from its profile?

 
Is there some way that I can force a running EA to reload values from its profile? If for example, I had updated the Magic numbers for my EA in its .set file, and this was done by an external program, is there some way I can force the EA to reload these values without having to stop and restart the EA manually?
 
mjbrady:
Is there some way that I can force a running EA to reload values from its profile? If for example, I had updated the Magic numbers for my EA in its .set file, and this was done by an external program, is there some way I can force the EA to reload these values without having to stop and restart the EA manually?

AFAIK, only by manually parsing the .set file. And this may still give you a problem: any change which the EA makes in code to extern variables isn't stored in the .chr file. Therefore, if the EA is unloaded and reloaded, the extern variables will default to their old values, not the values which the EA picked up from parsing the .set file while it was previously running.

Reason: