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
0 answers

How to connect javascript client to ams (rtmp and shared objects)

I built an online card game (2008) with flash and also objective c (ipad) clients that connect to an adobe media server. So now, as Flash is rarer and rarer in the browsers, I would like to rebuild a game client in javascript, but it seems that no…
Fenryll
  • 21
  • 2
0
votes
2 answers

gdb is skipping instructions

I have limited experience with gdb and debugging shared objects in general, so I wonder if anyone could shed some light on the behavior I am seeing. Basically I am trying to understand the internals of a poorly-documented library. To that end, I…
Joshua Gevirtz
  • 401
  • 3
  • 14
0
votes
2 answers

Reordering an array in flash as3

I have an array of objects, each of which is assigned an ID when it is first created. I give the user the ability to visually reorder the objects, which changes their position in the array. They then have the option to save that order using a flash…
mheavers
  • 29,530
  • 58
  • 194
  • 315
0
votes
0 answers

setuid bit on shared object

I know that to have a .so loaded, the e'x'ecute bit must be set. However, I wonder what is the effect of +s (setuid) bit on the .so ? If the main program is not "setuid" set, but the .so it loads is setuid, does it change the uid ? I found not but…
0
votes
1 answer

Reading data from a SharedObject file directly

I am attempting to read the data directly from a SharedObject (.sol) file in as3. I've been able to extract the header information : // HEADER BYTES var header1:int = stream.readShort(); // LENGTH var length:int = header1 & 0x3f; if (length ==…
Michael
  • 3,776
  • 1
  • 16
  • 27
0
votes
1 answer

Problem Linking Shared Object

I have a shared object file which I call from my android app. Until now I had it in my java project, and I loaded it like that: static { System.loadLibrary("mysofile") }; Now I'm trying to load it from other location: static…
MByD
  • 135,866
  • 28
  • 264
  • 277
0
votes
1 answer

Troubles with Shared Object linking and Fpic

I'm writing some c code for a class and am having issues with the compiler which needs to be done in a make file, when it is run it always gives the error usr/bin/ld: main.o: relocation R_X86_64_32S against symbol "integrand" can not be used when…
0
votes
0 answers

save and load using sharedObject in AS3

i am currently doing an experiment to save each name of the user(not replacing it every time we save the new one). my problem is the getLocal() function.I defined a variable with the type of string to make the SharedObject store the data to local…
Yudhis
  • 53
  • 7
0
votes
1 answer

Hooking into CUDA Driver API calls

I'm trying to use LD_PRELOAD trick, in order to steal CUDA driver API calls (cu* functions). I first implemented a simple stub function for cuLaunchKernel as below: #define _GNU_SOURCE #include #include #include…
saman
  • 199
  • 4
  • 17
0
votes
1 answer

How to use SharedObject from an external swf in AS2

I have a slideshow that everytime you press a button show a new slide. Every slide is an external swf's that is being loaded in to the main swf. Inside every external swf there is a button that redirects you to another web page. What i would like…
Haljan
  • 39
  • 2
  • 5
0
votes
1 answer

when does dlopen blocks?

sharedlibrary loaded through LD_PRELOAD, constructor of the same library calls dlopen("libc.so.6") the problem is dlopen takes forever, debugging showes the following dlopen calls __dlopen which calls calloc, and unknow function ??, then at last…
Error
  • 820
  • 1
  • 11
  • 34
0
votes
1 answer

How to using existing .so in android studio?

1.I have a existing .so which is compiled by: arm-linux-androideabi-g++ *.cpp -o libshow_demo.so -fPIC -shared 2.and then I put it into the project folder in android studio3.0.1 the file structure 3.I edit the Gradle under Android scope…
0
votes
0 answers

issue with accessing c++ library using fastcall. (javascript, nodejs, foreign function interface)

I tried using fastcall, this is my first time using fastcall and foreign function interface, I tried to load datatable.dll it is throwing error, tried passing every possible library path (absolute and relative). using nodejs, fastcall,…
0
votes
1 answer

Compiling a shared object folder without libc

Is it possible to build a shared object file on Linux without using libc? I tried building the shared object using -nostdlib, and it complains that there is a conflicting type for built-in function 'memset'(I have my own version of the function…
user277465
0
votes
1 answer

how to write a gradle build file for c to create a shared object library (.so) file?

how to write a gradle build file for c code to create a shared object library (.so) file ? For creating C executables i can use the below , please guide for creating .so files apply plugin : 'c' model { components { …