views:

47

answers:

2

Hi.

In IE, with Flex application embedded, changing page location with JS like that:

document.location.href = "#someFragmentIdentifier";

causes change of page title to "#someFragmentIdentifier". I've read that the cause of that was supposed to be integration of Flex application with browser navigation, so I disabled it at the Flex compiler properties screen, however it didn't fix anything. Could anybody help me by pointing some working solution to this unwanted behavior.

Thanks.

PS: You can easily reproduce that by starting your Flex application and changing current URL by hand so it contains fragment identifier and then refreshing the page.

+1  A: 

There's a bug in Adobe's bug tracker with various workarounds. I guess one of them should work... http://bugs.adobe.com/jira/browse/FP-240

Gerhard
All of them are variations of "Change the title with javascript", which is fine but we change the page with ajax and would like a general solution without adding "document.title = 'blah'" to the end of every ajax callback. Thanks a lot for the link, though, now I am pretty sure it is flash-related!
Victor