Re: [Flashcoders] Problem: Safari and dynamic loading?

2006-11-28 Thread Daniel Forslund|Lists
Sorry for the late reply! Many thanks for the suggestions - I think a load manager class is the way to go and I'll send Jamie a mail and take up the kind offer. Cheers, Dan On 22 nov 2006, at 16.36, Jamie S wrote: I the only way I was able to put the problem to bed for sure was to build

Re: [Flashcoders] Problem: Safari and dynamic loading?

2006-11-22 Thread Seb L
I've had this problem recently. I found it was an issue when the swf and the html file aren't in the same directory. Either put them both in the same directory, or give the full path in your filename. Let me know how you get along! Seb Lee-Delisle sebleedelisle.com On 22/11/06, Haydn [EMAIL

Re: [Flashcoders] Problem: Safari and dynamic loading?

2006-11-22 Thread Jamie S
I had a similar problem a while back with a project that required a lot of stuff (xml, swf's, and jpg's) to load all at once. It worked fine in publishing and in IE on Windows but Firefox (Mac and PC) and Safari (it was the wost with safari) would tend to miss stuff just as you have discribed. I

Re: [Flashcoders] Problem: Safari and dynamic loading?

2006-11-22 Thread T. Michael Keesey
Safari is a POS. One thing you can do is use MovieClipLoader::onLoadError to check the error code. If it is LoadNeverCompleted (as opposed to URLNotFound), re-attempt the load. On 11/21/06, Haydn [EMAIL PROTECTED] wrote: Hi, I'm pretty sure this is an issue with Safari as a similar problem

Re: [Flashcoders] Problem: Safari and dynamic loading?

2006-11-21 Thread Haydn
Hi, I'm pretty sure this is an issue with Safari as a similar problem somethings occurs when loading HTML pages. From what I can tell it's completely random. I'm using Safari 1.3.1 so maybe an update to 1.3.2 would fix the problem? Haydn. On 21/11/2006, at 9:08 PM, Daniel Forslund|Lists