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

Remote shared object not firing onSync method after update

I have game server, FMS 4.5 on Windows, already working prefect, and client apps were created in old CS4, and all is perfect. Now I want to create a mobile app in AS3, and have a problem with remote shared object, which is working perfect in old…
1
vote
1 answer

SharedObject appears to be caching

I have a slightly unusual situation with SharedObject: The situation: where we have a SWF (browser) based application running on a single local machine. The SWF accesses local content and is reloaded every XX number of seconds/minutes/hours. The…
Rich
  • 970
  • 2
  • 16
  • 42
1
vote
1 answer

SharedObject: can receive event from other clients but never fires event after saving data

I'm using a SharedObject to create a simple chat app. The SharedObject was created fine and my app could receive the sync event when other clients updates the data on the SO. However, the problem comes when my app tries to saves the data on the SO…
1
vote
1 answer

Linux Injected Shared Object Self-Removal

So I have been working on Injecting Linux Shared Objects into running processes following information from Inject shared library into a process and https://github.com/gaffe23/linux-inject. I've gotten it up and running fairly well. My question…
incanus86
  • 77
  • 6
1
vote
1 answer

Qt build version from shared object

Suppose I have an executable that uses qt library. I want to replace the shared object with a custom one. So how do I find the qt version so that I can build it myself from source? P.S. All the files has names like libQt5**.so.5.
nomem
  • 1,568
  • 4
  • 17
  • 33
1
vote
0 answers

How to map objdump address to address in shared object

I am trying to patch a function. In objdump my program location shows an address which is greater than the file size. So I am assuming this is in a shared object. So how do I find the specific shared object and location of the procedure?
nomem
  • 1,568
  • 4
  • 17
  • 33
1
vote
1 answer

Retrieving sharedObjects between scenes

I wan to pass the variable of shower_cost from the first scene to the second scene. The variable will be displayed in a dynamic text. when the show button is hit on the second scene, the show_cost will appear. The problem here is seems there is…
whoami
  • 173
  • 3
  • 15
1
vote
0 answers

R - unable to load shared object digest.dll in digest package

I was working on a Shiny App until I got this message: Error in inDL(x, as.logical(local), as.logical(now), ...) : unable to load shared object 'E:/Users/B145441/Desktop/library/digest/libs/x64/digest.dll': LoadLibrary failure: Can not find the…
Ian C.
  • 11
  • 4
1
vote
1 answer

Storing a FileReference in a SharedObject

I would like to store a FileReference object somehow and load it when the SWF loads again. I tried to use the SharedObject class but it does not seem to work. I suspect that what I want to do is not doable due to security issues (not using Adobe…
Rudy
  • 259
  • 1
  • 13
1
vote
1 answer

Updating Red5 SharedObject closing stream

I'm trying to create a voice conference room with all users can speak and use the mic. But as an Admin, I should have the privilege to mute any user. So, I add to the user an attribute for the mic which will be check in client side and…
1
vote
1 answer

What does @ symbol at the end of a shared object mean?

I am using Ubuntu and when I list the libraries under /usr/lib/ I see that some of them have numbers and/or @ symbol at the end. For example libgc.so.1@ or libgettextlib.so@ Does anyone know what this means?
lulijeta
  • 900
  • 1
  • 9
  • 19
1
vote
1 answer

Problem with sharing variables between views - missing something?

I know im missing something but my friend and I can figure out what. Firstly.. I have two .hs and .ms that I'd like to share data between - two view controllers In the first .h i have this - that makes the variables and properties them //top half…
Sam Jarman
  • 7,277
  • 15
  • 55
  • 100
1
vote
1 answer

Cannot Open Shared Object cygmpfr-1.dll

I'm testing CeGCC, that is a gcc built to cross-compile applications to Windows CE devices. As everyone do to test compilers, I've done a Hello World program: #include int main() { printf("Hello, World!"); return 0; } As I'm using…
Nathan Campos
  • 28,769
  • 59
  • 194
  • 300
1
vote
5 answers

How to create make .so files from code written in C or C++ that are usable from Python

Looking at Python modules and at code in the "lib-dnyload" directory in the Python framework, I noticed whenever code is creating some kind of GUI or graphic it imports a non-Python file with a .so extension. And there are tons .so files in…
None
1
vote
2 answers

AS3 SharedObject IF isset or equals

very new to SharedObjects, but essentially all I want to do is let a user answer a question once and not allow them to answer again, how is it possible. This is what I have below? /*if(_question.data.seenQuestion == "true") { cookie_txt.text =…