Hello,

In my application I have a QWebView where i load a flash (.swf) QUrl.
load(QUrl("http://www.tizag.com/pics/example.swf"));
This works very well.

But when I try to open a flash file locally stored (same file downloaded and stored on the harddrive) it fails. Nothing is displayed.
load(QUrl("file:///home/moblin/Downloads/example.swf"));

I have tried modifying setting which could affect this but with no success. Example of these setting are:
settings()->setAttribute(QWebSettings::LocalContentCanAccessR emoteUrls, true);
settings()->setAttribute(QWebSettings::LocalStorageEnabled, true);
settings()->setAttribute(QWebSettings::PluginsEnabled, true);


Have someone experienced this problem before or can give me hints where the fault may be?