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

Loading local shared libraries in gdb

I would have thought this question was already asked, but I couldn't find it. Bear with me if it was. I am trying out modifications to an existing program in a debian installation. The program, call it foo, when compiled creates some of it's own…
1
vote
1 answer

How to find shared objects loaded during startup of an application?

I know that using dlopen with RLTD_NOLOAD one can find out whether a shared object is already loaded or not. This, however, doesn't seem to work if a so is linked to the executable and loaded by the linker during application startup. I mean, lets…
asker
  • 11
  • 2
1
vote
1 answer

Getting information from a shared object on the adobe media server

I am currently stuck and cant find any answers anywhere!! So any help at all would be great! Currently Im trying to create a sharedObject on a client and send a string from the client containing information based on phone hardware(e.g. accelerometer…
1
vote
1 answer

Is there a size limit for LocalShared Objects created on Mobile apps (iOS/Android) with AIR?

For a mobile app project I am caching lot of data for offline use into the app. So far I've been using Classic SharedObjects, storing every data in a couple of fat xmls (as strings in SharedObjects). The images are saved through the FileSystem…
1
vote
1 answer

How to use remote SharedObject in AS3 and Red5

I wish to use remote SharedObject so I created a simple script to test out the techniques. When I ran the following code as two instances of SWF, both instances output 1, which was incorrect because the second instance was supposed to output…
Chong Lip Phang
  • 8,755
  • 5
  • 65
  • 100
1
vote
0 answers

AS3 shared objects in IOS and Android devices

i´m creating apps using AS3 and saving scores in sharedObjects. Smooth... The problem is that when i create a new version of the app and upload to the Android Market or AppStore, the sharedObject saved in the user device goes to Zero(0). Is there…
Ncard
  • 11
  • 1
1
vote
0 answers

How to acces shared object and display on facebook/Twitter URL Link AS3

Hey everyone so I was wondering if there is a easy method of doing this or if it can even be done without an ANE Native Extension. I picked up some code from around here and in my Flash CS6 Android AIR Application using AS3 I created two buttons on…
Nathan
  • 536
  • 4
  • 21
1
vote
1 answer

python ctypes, trying to find library names

I want to use C-functions in my python program and the obvious way is to implement the libraries with "ctypes". But there is a problem. In C I include different header files that the linker will link with the right libraries. But I only know the…
1
vote
3 answers

(as3) Sync data between 3 or more identical flash objects on the same page

I have asked something similar before, but never go to the solution I need. So am starting a new stack to not confuse my issues, and to make a little clearer. What I need to do I have multiple flash objects on a html page, they are all identical,…
1
vote
1 answer

Apache have shared objects for both windows and linux.How do they do it?

Apache have .so modules for both windows and linux.How do they do it?
SomeUser
  • 1,976
  • 15
  • 42
  • 60
1
vote
1 answer

Issue with sharedObject usage / loading data

The main goal of my code is to create a 3x3 grid and when you click a cell from that grid you cant click it again even if you close the fla and load it again. Something like a shop where the 1st row is level1 of the upgrade and the columns are the…
GregorII
  • 221
  • 4
  • 13
1
vote
0 answers

SharedObject Data Overwriting Wrong Information

I'm working on a system that lets users input names and numbers. That information is stored in a sharedobject called "so". I've encountered an issue that when a user saves the information, it overwrites the correct piece of information AND all other…
MartynJH
  • 43
  • 1
  • 8
1
vote
2 answers

Flash Actionscript 3 - Simple Btn Click save game/app

I'm working on a project that requires me to save all of the bits and pieces on the second frame of the stage. This is a glorified dress up game where the user game make design or a piece of art and save the project and come back to it later by…
1
vote
4 answers

missing symbols that should be there

I'm stumped. Here is the output of ld. /usr/lib/libvisual-0.6/actor/actor_avs_superscope.so: undefined reference to `visual_mem_free' /usr/lib/libvisual-0.6/actor/actor_avs_superscope.so: undefined reference to `visual_mem_malloc0' Here are the…
Scott
  • 5,135
  • 12
  • 57
  • 74
1
vote
5 answers

how to share a System.Object in memory between two or more programs?

is there any library, code sample, open source project, etc helping me share objects(a dataset , a collection, ...) between two or more programs with direct or indirect memory access. if there is no way to do that, please show me other ways to make…
Behrooz
  • 1,696
  • 2
  • 32
  • 54