vote up 0 vote down star

I need to make sure that only one instance of a SWF is open at any one time on a computer, whether it is in 2 browser windows, or two different browsers.

How can I go about doing it?

I have so far thought of two potential solutions:

1) Using a Flash sharedobject - but since they never expire, if the user closes the browser window without calling my quit function to remove it, the remaining object will interfere with other new sessions. (Perhaps a random number and timestamp to identify the instance?)

2) Using a localconnection - a bit hackish, this relys on the swf detecting whether a Localconnection object is being used, and not loading if that is the case. But localconnections seems to crash at the slightest provocation, so I am a bit wary of using it.

flag

58% accept rate
Just wondering, why do you need that? – grawity Jun 4 at 4:38
what player version are you targetting? – back2dos Jun 5 at 11:30
Flash player 10 / AS3 – futureelite7 Jun 8 at 4:26

1 Answer

vote up 0 vote down

If the SWF is only available from one location, I think Shared Objects are a safe bet. I don't think there's any need to worry about complicated sessioning, there should be a shutdown event you can catch even when the browser is manually closed. (Even if there isn't, I'm 99% sure that SOs are flushed on shutdown no matter what, so some workaround should be possible.)

However, Shared Objects are intrinsically linked to the location of the SWF, so a user could sidestep the above method by viewing a second copy of the SWF that they had saved locally, or uploaded to a different web server, or whatever. If that's a worry, and if the SWF would still work in such a situation, then I think LocalConnection is your only choice. But I've never found LC to be very reliable either. I don't know if it could be made bulletproof, but I think it's the only other option.

link|flag
I'm not sure if the flash pluings for different browsers even have their SOs in the same location. So this might not work. – grapefrukt Jun 4 at 7:30
All flash players store their SOs in the same location. – fenomas Jun 4 at 16:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.