Questions tagged [shared-objects]

Shared Objects in Flash are used to store persistent data on the client or server side.

Local Shared Objects

Local Shared Objects are used in Flash-based applications to store ActionScript objects persistently on a client. The disk space is limited and defaults to 100 KB per domain.

Remote Shared Objects

Remote Shared Objects can be used with Flash Media Server to store ActionScript objects remotely. They can be shared across multiple clients.

418 questions
0
votes
2 answers

Is it possible not to flush sharedobject on close?

I'm having a problem with the sharedObject flush method. Is it possible to not flush the new data when the swf is closed? My savegame function is the only function that calls the flush method and it also determines which array goes where in the…
oliboon
  • 351
  • 1
  • 5
  • 19
0
votes
2 answers

Flash local Shared Object not detecting changes by other SWF's

I'm using a local shared object as means to transfer data between two swf's running at the same time. so = getLocal("mySO"); // set the value from a user input, and set it to 'connected' so.setProperty(txtName.text, "connected") // every few…
Ska
  • 6,658
  • 14
  • 53
  • 74
0
votes
2 answers

How can I programatically determine the location that Flash stores Local Shared Objects

I'm writing some automated acceptance tests for a flash movie (driving the movie using iMacros). I need to "reset" the test environment before each test run by clearing out the settings flash is storing in Local Shared Objects. I can do this…
David Laing
  • 7,605
  • 10
  • 33
  • 44
0
votes
1 answer

PyDoc on a shared object

Small simple question, but I cannot find the answer! Is it possible to use PyDoc on a shared object used as a module in python ? Let say that I declare all the help in that *.so and I'm able to use them with help(module or class name). But I'd like…
widgg
  • 1,358
  • 2
  • 16
  • 35
0
votes
2 answers

Supporting for old versions of Flash?

Some of my visitors are on outdated machines with old versions of Flash. My FLA consists of nothing more than a few lines of ActionScript that create a SharedObject. I want to ensure my SWF executes for them. Is there any reason I should NOT select…
Marco
  • 4,345
  • 6
  • 43
  • 77
-1
votes
1 answer

Can we include an .so file LD_PRELOAD inside a file?

i have a file which is compiled and probably written in C. that file requires an .so file ( library file ). The C Compiled file name is /usr/local/solar/excusekey and the .so library file is /usr/local/libsolar/libexcuse.so When i remove…
-1
votes
2 answers

How do I make a single connection to handle video, audio and chat in Flex

I'm developing an application and I want to make one single connection for video (netstream) and chat (sharedObject). I have one connection for each but I have limited connection available in the server so I need to make a single connection to…
-1
votes
1 answer

shared object on Cortex-M4 strange symbols in dynsym section

i actually write a shared object loader, which loads with the gcc created shared-objects (ELF) on a cortex-m4 controller. Loading, dependency resolving and relocating etc works fine. But the shared object has some strange symbols in the .dynsym…
Andi
  • 21
  • 2
-1
votes
1 answer

Shared object in R

I want to run a FORTRAN subroutine from R. I read that, I need a shared object (.so file) to run the subroutine. For creating the shared object I successfully compiled the FORTRAN subroutine. But when creating shared object it gave the following…
-1
votes
1 answer

save load error 1010 array objects with sharedObjects as3

i cant figure out this one so maby you guys can help me out. i store some data in the form of a array filled with Objects in this example cards. in my main class i have the following code: deckSprite.savedData =…
-1
votes
1 answer

#1120: Access of Underfined Property SupernaturalHighScores

//Creates a shared object to hold the users highscores SupernaturalHighScores = SharedObject.getLocal("SPNHighScores"); SupernaturalHighScores.data.Name = "Dean Winchester"; SupernaturalHighScores.data.Score =…
Lewis M Hackfath
  • 131
  • 5
  • 17
-1
votes
3 answers

shared object in C# which can used by other program

What constructs should I use to create a shared object in C# which can be used in some other third party software or program? Example: My program reads a abc.xml and I need to share data read from this file. I have another perl script which…
sia
  • 1,872
  • 1
  • 23
  • 54
-1
votes
1 answer

How to create shared object(.so) from .cc files

Can anyone please tell whether it is possible to create the shared object(.so) files from the existing .cc files? Thanks !
Jerry
  • 7,863
  • 2
  • 26
  • 35
1 2 3
27
28