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

Optimize two lists with shared objects

I have the following two lists: List AllAnimals; List AnimalsWithEyes; Since there are a lot of animals in the world and there are a lot of the same animals, objects, in both lists, as many have eyes, it would be kind of cool if…
user10699646
3
votes
0 answers

Passing string from Python as a parameter to a Go function in a shared object

I'm trying to call the below MakeQuery(query string) function by passing the string from Python using ctypes module. It works when I call it from Python as a function shared object with hardcoded arguments from Works() in Go: //export Works func…
systrigger
  • 398
  • 3
  • 13
3
votes
1 answer

What does this mean?

/sbin/ldconfig: libraries libpng12.so.0.1.2.35 and libpng12.so.0.10.0 in directory /usr/lib have same soname but different type. /sbin/ldconfig: libraries libevent_core-1.4.so.2 and libevent_core-1.4.so.2.1.2 in directory /usr/lib have same soname…
gdb
  • 7,189
  • 12
  • 38
  • 36
3
votes
1 answer

Failure to link Qhull C++ interface in ROS catkin project

I'm having some trouble getting the QHull C++ interface working in a catkin project. My project compiles fine and I've specified the library to be used by the linker, however it fails to link with the following error…
3
votes
1 answer

How can I inject or dynamically load an c function into another c program

I want to build an interface in a c program which is running on an embedded system. This should accept some bytecode that represents a c function. This code will then be loaded into the memory and executed. This will then be something like remotely…
R4ider
  • 39
  • 4
3
votes
0 answers

Shared objcect not loaded

I am trying to trigger a FORTRAN code from R. For that I am creating a .so file by giving command R CMD SHLIB filename.f The .so file is created without any warnings(!!) To lead the file in R, I give the following command in…
3
votes
1 answer

Issue in Compling C++ method in Eclipse and calling C++ method from python

Simple C++ example class I want to talk to in a file called foo.cpp #include Since ctypes can only talk to C functions, you need to provide those declaring them as extern "C" extern "C" { Foo* Foo_new(){ return new Foo(); } void…
Sandy
  • 233
  • 1
  • 2
  • 18
3
votes
2 answers

JNI UnsatisfiedLinkError undefined symbol

I am trying to load a .so file (libInfExprParser.so) using JNI. I do not have the source code for this shared object. I am getting the following error: Exception in thread "main"…
Sahithi V
  • 31
  • 1
  • 4
3
votes
3 answers

Developing a Chatroom in Flex ActionScript3 + Red5 , Remote Shared Object based UserList or Serverside?

We are going to develop a simple chatroom in flex using Red5. Should we store UserList in a Remote Shared Object or Server Side List? Are there any example exit on Red5 or FMS , which uses Server Side programming and Remote Shared Objects? Red5…
3
votes
2 answers

shared object in C# to be used in python script

I have created a windows app which runs a python script. I'm able to capture the output of the script in textbox. Now i need to pass a shared object to python script as an argument from my app. what type of shared object should i create so that…
sia
  • 1,872
  • 1
  • 23
  • 54
3
votes
1 answer

Linux: LD_PRELOAD + -z,initfirst

I'm writing a shared-object which is supposed to be LD_PRELOADed into processes. In that shared object I have some initialization like __attribute__((constructor)) void initFunc(); That I'd like to be called before any other code in the…
shoosh
  • 76,898
  • 55
  • 205
  • 325
3
votes
2 answers

Linux g++: linking with static libstdc++ without exporting it

I'm compiling a shared object (.so) that is supposed to be LD_PRELOADed into other application. I'm linking with libstdc++ and libgcc statically using -static-libgcc -static-libstdc++ to avoid shard objects conflics. Doing this however makes my so…
shoosh
  • 76,898
  • 55
  • 205
  • 325
3
votes
1 answer

.so with numerals after that, how to match them in find_library in cmake ? Error in linking shared objects which are found as sub-dependencies

Given ls -lrt /usr/lib/libvpx* results lrwxrwxrwx 1 root root 15 Feb 9 2012 /usr/lib/libvpx.so.1.0 ->libvpx.so.1.0.0 lrwxrwxrwx 1 root root 15 Feb 9 2012 /usr/lib/libvpx.so.1 -> libvpx.so.1.0.0 -rw-r--r-- 1 root root 646120 Feb …
3
votes
1 answer

AS3 SharedObject getlocal persistence (with or without www)

I'm currently reading and writing data to a sol file using AS3 for my chat client. I'm having it read/write the sol file using the localpath param as "/" with no problems. The issue is this: If flash data is set from a swf on www.domain.com, the…
dns
  • 79
  • 10
3
votes
3 answers

Red5 - ArrayList in SharedObject being corrupted

Well, perhaps not corrupted as such. So, a little background. I've recently moved my Red5 powered game from a windows build of red5 to one running on Debian Squeeze. I have a game lobby which uses a shared object to maintain a list of the various…
milks
  • 314
  • 2
  • 9