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
1 answer

Duplicate shared object on fms

I wanted to create a copy of a temporary shared object on server to another permanent shared object. What would be the efficient way of doing that? Thank you, Naresh
0
votes
1 answer

Create a Shared Object in Red5 Server with Java but without Actionscript or Flex technology

I'm looking for a way to create a Remote Shared Object in Red5 Server (installed on a server machine) only using Java technology. The shared object can be any thing (simpler is better) because my purpose is just a feasibility study. The problem is…
suikoy
  • 2,229
  • 3
  • 19
  • 23
0
votes
1 answer

Actionscript 3 - How to include current movieclip/root location to this.currentFrame?

I am trying to make save progress thingie with sharedobjects, I´ve figured out how those work, but now I should just try to figure out how to make my "save progress" button to not just remember "this.currentFrame", but also if this is on main…
Esa T. H.
  • 123
  • 1
  • 4
  • 18
0
votes
2 answers

datatype of The shared defaults object returned by NSUserDefaults

while going through the class reference file for NSUserDefaults, I notice that the return value for [NSUserDefaults standardUserDefaults]is The shared defaults object what is this object, what is its type? which methods we can call on this…
shebelaw
  • 3,992
  • 6
  • 35
  • 48
0
votes
1 answer

ActionScript 3 SharedObjects

I have a couple of questions in regards to SharedObjects in as3. Okey, what is the difference between a persistent SharedObject and a nonPersistent SharedObject? And, i am trying to build a small chat application. I want to use the SharedObjects to…
0
votes
1 answer

Remote SharedObject isn't synced/persisted

I'm using FMS 4.0. I'm trying to use the Remote SharedObject, which I've I used in the past, but nothing seems to work. Even the most simple example doesn't work. No events are triggered on the SO instance (no NetStatusEvent or SyncEvent). No…
Nando Vieira
  • 964
  • 10
  • 17
0
votes
1 answer

flash as3 timeline animation storing value

I set a value on frame 20 of my animation var final_answer = hundreds.text+tens.text+units.text; var mySharedObject:SharedObject = SharedObject.getLocal("/"); I want to access this on frame 40 but I get the following error Scene 1, Layer 'Actions',…
LeBlaireau
  • 17,133
  • 33
  • 112
  • 192
0
votes
1 answer

Can I iterate through each of my SharedObjects in ActionScript 3?

Is it possible to execute a "foreach" through each of my SharedObjects? Something like this . . . _so = SharedObject.getLocal("test","/"); foreach (var item:Object in _so) { // print key name and value }
SkunkSpinner
  • 11,429
  • 7
  • 40
  • 53
0
votes
1 answer

Creating a class object from it's location in the shared object

In C, you can dynamically link a shared object by dlopen() and use dlsym() to locate the address of a particular symbol( a function ) and assign it to a function pointer. In C++, if you happen to know the address of the class constructor, will you…
KodeWarrior
  • 3,538
  • 3
  • 26
  • 40
0
votes
1 answer

Choice of an inter-communication method for a modularized development

I am developing a software that has its core, plugins and GUI modularly separated. I load the modules dynamically on demand. I need to determine which kind of inter-communication would be best suited for a software modularized this way so the…
user1598585
0
votes
2 answers

Scala/Java JNA check sharedobject availability

I'm writing a Scala program which uses a C++ shared object, loaded through JNA, to call some custom file reading functions which we have written in C++ and would prefer not to maintain a Java/Scala copy of as well. The program only needs to be Linux…
paulmdavies
  • 1,248
  • 3
  • 12
  • 28
0
votes
1 answer

Local Shared Object localPath

I'm creating an .swf movie that will store a Local Shared Object on the visitors' machines of a community. Basically, the .swf movie is part of an add-on for forum communities. By that I mean that I don't know beforehand the full path of the .swf…
0
votes
3 answers

Error on dlopen: St9bad_alloc

I have some c++ code I'm using for testing in which the first line is a call to dlopen in an attempt to load my shared object. Upon hitting this line I get the following error: Terminate called after throwing an instance of std::bad_alloc: …
Ben L
  • 6,618
  • 8
  • 39
  • 34
0
votes
1 answer

Something like cookies in Flash/ActionScript

i need to implement something like a cookie in a flash file....and i dont have a clue about ActionScript. Basically it is a video with a mute/unmute button. If i mute the video and refresh the browser it is not muted again.So i need to persist the…
Abenil
  • 1,048
  • 3
  • 12
  • 26
0
votes
2 answers

Flash AS3 - Can I prevent my shared object from saving on the .swf close?

I have a program with a save feature - the user clicks a button, and everything is saved to a local Shared Object with the flush(); command. My problem is that Flash .swf files automatically save to the local Shared Object when the movie is closed,…
Tony
1 2 3
27
28