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

Access SharedObject from swf to another swf

Can anyone help me how to access a sharedobject from an swf to another swf? I have a swf file wherein in its second frame, I saved a value through "sharedObject". I have also a .as file wherein I call that value I saved, and pass it to another swf…
user3273190
  • 21
  • 1
  • 6
0
votes
0 answers

Flash AS3 SharedObject data not saved between builds

Trying to save some local data on an iOS/Android game made in AS3 using SharedObject but whenever we have a new build all the data is erased. Is there a way to get sharedObjects to work between builds of the app or is there another way I should be…
Emiaj
  • 11
  • 3
0
votes
1 answer

Flash AS3 - Dispatching Events from Parent Class to Child Class

I think this is a pretty simply problem but I do not seem to be able to pull it off. Basically I have a parent class A, and a child class B. Class A instantiates class B with addChild. There is a shared object which is being updated from a java…
John Russell
  • 1,115
  • 1
  • 15
  • 30
0
votes
2 answers

modal forms and shared data,

I've written a couple of c# forms applications which use a lot of the same data/objects which would better be combined. I realise I could use modal forms to launch each of these but where should I state .dll's and other resources, on the parent…
Tumble
  • 53
  • 3
  • 8
0
votes
0 answers

How to use remote SharedObject in AS3 and Red5 -- Second Attempt

I asked this question in StackOverflow seven months ago, but apparently no one could give me a satisfactory answer. I have searched the entire Internet to no avail. So I am posting this here again, in the hope that this can be solved for the…
Chong Lip Phang
  • 8,755
  • 5
  • 65
  • 100
0
votes
2 answers

rsync: /usr/lib/libpopt.so.0: no version information available (required by rsync)

I got this error when I executed the command "rsync / /tmp". It seems to be a warning, but still I wanted to eliminate this warning. How do I resolve this? If it is a version issue in library, how do I know which version of library I have and what…
Jegan
  • 188
  • 3
  • 15
0
votes
0 answers

creating a remote sharedObject using amazon cloudFront

I am trying to create a remote sharedObject on amazon cloudFront using Flash (AS2). I tried to find the url for the rmtp connection and I think it is correct. But I get netConnection Failed and other times netConnection Rejected trace messages.…
0
votes
1 answer

AS3: Save/Load Player data in loaded SWF Files

So I have a Main .Fla/.SWF File which contains buttons to load in external SWF files using a LoadSWF class. My Main class save/load code is: private function saveData(): void { // savedData can now take any number of properties of any type …
Elementxo
  • 27
  • 7
0
votes
0 answers

How to test local storage persistence after iOS App Store update?

At one point there was an AIR bug (3.5) that changed the location of the LSO storage, causing local SharedObjects to be "lost" after an app update. Apparently this issue was resolved in 3.6 and life goes on. At this point I don't have 100%…
Tom Auger
  • 19,421
  • 22
  • 81
  • 104
0
votes
1 answer

Default path for dlopen usage to load a shared object

While trying to load a module (shared object) through dlopen, it fails to load. Say, I have testshobj.c having the following: // testobj.c int dummy() { return 5; } Now, I compile and link testobj.c as shared object named testshobj.pm tjrough…
Dr. Debasish Jana
  • 6,980
  • 4
  • 30
  • 69
0
votes
1 answer

C .so library Python

Now my code works with a normal c library, but I need to use a .so library from Caen and I get Segmentation fault. This is the code: from ctypes import * lib = CDLL('./libcaenhvwrapper.so.5.56') lib.CAENHVInitSystem.restype =…
leonardo
  • 15
  • 2
0
votes
2 answers

C header Python

I' m trying to import a .so library into a python code to use c functions. I think using from ctypes import * import ctypes lib = CDLL('./libcaenhvwrapper.so.5.56') is working fine. I need to use some user defined types which are defined in a…
leonardo
  • 15
  • 2
0
votes
0 answers

Linux: making a .so print its version in command line

When I run libc.so.6 in command line I get information about its version: [intigua@localhost src]$ /lib/libc.so.6 GNU C Library stable release version 2.5, by Roland McGrath et al. Copyright (C) 2006 Free Software Foundation, Inc. ... How do I make…
shoosh
  • 76,898
  • 55
  • 205
  • 325
0
votes
1 answer

A method for for Flash's SharedObjects similar to send(), but local?

I'm accessing the same SharedObject from two different programs at the same time on the same computer (i.e. locally, not remotely), and I wanted to know in one program if the other program had changed the SharedObject (besides just refreshing it). I…
user2885503
  • 25
  • 1
  • 11
0
votes
0 answers

creating Favorite List with AS3

I'm new with as3 but trying to learn that. I want to make a Favorite List for my android application which creating with flash professional cs6 , in photo I attached you can understand what I mean. I created a list dynamically with an array , if you…