I am building a Flex application that utilizes SWFAddress. Whenever I update the hijacked URL via SWFAddress' SWFAddress.setValue()
method, I notice it causes the SWFAddressEvent.CHANGE
event to dispatch, causing my page to go through its update cycle again.
Is there a method within SWFAddress to "silently" update the hijacked URL, such that the SWFAddressEvent.CHANGE
event is not dispatched?
The only way around this that I can think of right now is to remove the event listener, change the URL, then add it back. But that seems... really... inefficient. Any ideas?
Thank you for your time.