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
0 answers

How to list objects saved by SharedObject and how to remove all?

How to list objects saved by SharedObject and how to remove all? Example: Three different SWF on the same site saved these objects: SWF1: so = SharedObject.getLocal('game1'); so.data.... SWF2: so = SharedObject.getLocal('gameBlue'); …
marbel82
  • 925
  • 1
  • 18
  • 39
0
votes
1 answer

Make file g++ shared library

Im trying to create a library that i could integrate with R in the future, but also use on Command Line My first step in the path is creating a library, either .a or .so This is my make file. It compiles fine, but when i look at the folders are…
user1047833
  • 343
  • 2
  • 7
  • 17
0
votes
1 answer

Unable to load .so file

I have an application which uses one native library "libSample.so" which is depend upon another .so file.I am trying to load that library using following code File File1 = new File("libSample.so"); static { try { …
0
votes
1 answer

Service Oriented Architecture and evolving objects shared between applications

I'm about to begin writing a suite of WCF services for a variety of business applications. This SOA will be very immature to begin with and eventually evolve into a strong middle-ware layer. Unfortunately I do not have the luxury of writing a full…
Josh
  • 79
  • 1
  • 8
0
votes
1 answer

red5 server-side sharedObject

I'm trying to store all the users inside a sharedObject thats created on the server-side, so all the users get a synchronized list of all the online users. I think I create the sharedObject correct on the server-side but I cant "find" the…
Dennis
  • 3,448
  • 8
  • 38
  • 45
0
votes
1 answer

Flash - Why doesn't my SharedObject get saved on disk when closing IE?

I have a Flash application that uses SharedObject to save and read some data locally. As it is said everywhere Flash saves the data from the shared object to disk when the application is closed. And indeed it does when I test it with the stand-alone…
0
votes
0 answers

g++: create a shared library (.so) with static glibc?

I'm trying to create a shared library (.so file) that will include its own copy of glibc and link to it statically. I am already linking to libgcc and libstdc++ statically using -static-libgcc -static-libstdc++ in addition to -shared -fPIC and it…
shoosh
  • 76,898
  • 55
  • 205
  • 325
0
votes
4 answers

Edit main thread object by child threads in java

I have a main thread in which I have defined a HashMap object. Now in main thread I am creating N threads. now each thread will append its result in main thread's HashMap object and terminate. I tried passing the HashMap object in constructor but…
navalp3
  • 117
  • 3
  • 3
  • 8
0
votes
1 answer

Use Shared Object Data() or Shared Object Property() to store value

I'm confused. SharedObject seems have two ways to store value in it, by data and setProperty(): so.data.foo = 'bar'; so.setProperty('boo', 'bar'); What's the different? And why doesn't it have getProperty()?
0
votes
1 answer

AS3: SharedObject is not visible in Administration Console

I created a media server with 'Adobe Media Server Starter 5' on localhost and I am able to connect to it via an AS3 AIR Application. I can see the connection from my Application called 'SimpleServer' in the 'Adobe Media Server Administration…
0
votes
1 answer

Sharing data between ActionScript clients

I'm writing an online multiplayer text-based game in ActionScript 3, and trying to find a way to create a single object, and allow all the players modify it on-the-fly (I mean, when it's modified, the other clients will see its new value.) Google…
user223150
  • 125
  • 5
0
votes
1 answer

Store data in SWF file without need to parse them

I'm making a Flash game where I need a way to store a lot of data about the world, as in data that is constant all throughout the game, between all gameplays. Lots of values (integer, float, string), grouped in objects hierarchy. The point is to…
Xirdus
  • 2,997
  • 6
  • 28
  • 36
0
votes
1 answer

Shared Objects Send Method()

There appears to be an error in the Adobe documentation in regards using the shared object.send(). I am trying to execute the send method to all clients. I copied the client and server-side code from Adobe and I am unable to invoke the…
marcus
  • 11
  • 2
0
votes
1 answer

Using boost lib within a shared object in Eclipse - undefined reference

I am trying to create a shared object (myLib.so) for a project I am doing. and I have created a separate eclipse 'project' to try and use/test the shared object - they are in the same workspace. When I compile the project for the shared object…
Blue42
  • 355
  • 2
  • 4
  • 13
0
votes
1 answer

elocation R_X86_64_32 against `.rodata' can not be used when making a shared object; recompile with -fPIC

My server is on ubuntu 12.04. I'm trying to install the Levenshtein-MySQL-UDF available here : https://github.com/jmcejuela/Levenshtein-MySQL-UDF I downloaded the .zip and locate the levenshtein.c file here on my server :…