Scripting Illustrator 10.0.3 - opening files automatically

H :oops: elp! Does anyone know how to stop Illustrator displaying a warning window when a file is opened that contains fonts not loaded in the system? This is the last hurdle of an automation tool, but the script keeps stopping because user intervention is required to click the ‘OKAY’ button!

Many thanks!

You can change the user interaction level to never interact.

tell application “Illustrator”
set user interaction level to never interact
end tell

HTH -john