Reputation: 181
I'm developing kind of standalone kiosk and having trouble as in title.
Explanation:
Problem:
Is there any way to get around this? Software used: Debian, latest Google Chrome with latest pepper Flash.
Upvotes: 0
Views: 676
Reputation: 1517
As written in Adobe docs:
The local-trusted sandbox—Local SWF files that are registered as trusted (by users or by installer programs) are placed in the local-trusted sandbox. System administrators and users also have the ability to reassign (move) a local SWF file to or from the local-trusted sandbox based on security considerations (see Administrator controls and User controls). SWF files that are assigned to the local-trusted sandbox can interact with any other SWF files and can load data from anywhere (remote or local).
Besides that, I doubt there is an easy way to do both networking and access local files since this is how Flash security sandboxes work. Or you could write an AIR app (2.6 is last supported version on Linux) or wrap your swf in a native app that would act as a layer between .swf and network/filesystem interfaces.
Upvotes: 1