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

Writing R package that call Fortran library using .fortran()

Referring to Writing R package that call Fortran library, I have a very similar issue with my R package installation. I did install the package, but got an error in R after calling the library: library(NEpidemic) random_epi() Error in…
Vineetha
  • 157
  • 1
  • 2
  • 13
2
votes
2 answers

Can AS3 Shared Objects be accessed by more than one application?

I'm trying to access a shared object created by one flash application from another flash application. Is this possible? If so, what do I need to do? If not, are there any other ways to share the information between the applications? Any help you can…
2
votes
2 answers

Modifying Python variable passed to C function

I am importing a shared object library written in C and calling to some wrapper functions I made that work using the Python.h library. I have a function with the following prototype: PyObject *Cal_readFile( PyObject *self, PyObject *args ); I parse…
ComputerLocus
  • 3,448
  • 10
  • 47
  • 96
2
votes
3 answers

Flash/AS3 "Shutdown" or "close" event?

I am making a Flash puzzle game. When the user loads the game, it needs to ask whether to resume the game from the last state (if it exists). I have a serialization system in place, but I need to ensure that the loaded state is definitely the last…
aaaidan
  • 7,093
  • 8
  • 66
  • 102
2
votes
1 answer

Specific "cannot open shared object file" error

I'm a first year computer science student following a course on (amongst others) Makefiles. For our first assignment, we had to create a shared library and link against it. I have the following setup: A folder hw1 containing the folders app and…
2
votes
2 answers

Get all shared objects for current domain

Using SharedObject.getLocal I can get access to what appears to be an infinite number of files simply by using unique identifiers in the method call; What I want to know is how can I retrieve a list of all active files or shared objects that have…
Christopher Lightfoot
  • 1,147
  • 1
  • 11
  • 27
2
votes
1 answer

Using -std=c++11 on VS2015

I have created a shared object for Android in Visual Studio 2015. It works fine so far, but pop_back() for a wstring does not work: wstring element = "JustATest!"; if (element.back() == L'!') { …
tmighty
  • 10,734
  • 21
  • 104
  • 218
2
votes
1 answer

Resolving statically defined symbols in a shared library

I have a legacy system which declares symbols in a shared memory region. The addresses of the are statically defined to absolute addresses in memory using gcc's linker command script function. I can build a static test executable in C which…
Scott L.
  • 265
  • 2
  • 9
2
votes
1 answer

iOS - How to use existing dynamic library (.so file)

I have an existing dynamic library, and I try to use this library into my iOS app using dlopen(), but the function always return NULL. The library is a .so file and comes from an Android project. dlerror() return…
Christophe Gigax
  • 3,211
  • 4
  • 25
  • 37
2
votes
1 answer

Actionscript 3.0 SharedObject flush() problems

First of all, I'm a total beginner, so sorry if the problem is obvious, yet I don't see it. Anyways, my problem is about SharedObject - when I try to write to disk with flush(), it throws out Error #2130: Unable to flush SharedObject. I've…
lagxbag
  • 71
  • 6
2
votes
4 answers

How to get Shared Object in Shared Memory

Our app depends on an external, 3rd party-supplied configuration (including custom driving/decision making functions) loadable as .so file. Independently, it cooperates with external CGI modules using a chunk of shared memory, where almost all of…
SF.
  • 13,549
  • 14
  • 71
  • 107
2
votes
2 answers

function pointer lookup in shared object and dll

Basically I would like to look up a function in a shared object in a platform independent way: I don't want to deal with LoadLibrary/GetProcAddress or dlopen details. Is there a library that hides the process of looking up a function pointer in…
Giovanni
  • 21
  • 1
2
votes
0 answers

How would you pass data from one browser to another?

This is a bit of a tricky one so would appreciate any input on the matter. Imagine the following scenario: User visits my website in Internet Explorer and due to lack of HTML5 support, I ask them to download and install Chrome. As they would now…
digitalclubb
  • 585
  • 1
  • 5
  • 14
2
votes
1 answer

How to use a pre-compiled .so file in another android app?

I wonder why there is no proper answer to this question, I searched for couple of hours but no good answer. So, we work on a team in which my friend wrote a C library and compiled it as a .so file (it's called ttplib.so)(assume I don't have access…
Gabriel
  • 578
  • 3
  • 8
  • 22
2
votes
1 answer

Shared objects with libraries and directory inclusions in Cmake

I'm very new to Cmake, and I'm trying to use it as an alternative to this approach, which did not work fine. My structure is actually simple, I have: App/src/ App/src/so1 App/src/so2 App/src/so3 And in each App/src/soN folder, I have a .cpp file,…
Rubens
  • 14,478
  • 11
  • 63
  • 92