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

SharedObject for Arrays of Object. Can't get correct data when restart flash

I have an array that stored some Object with its data, and I try to store it in my computer. If I try to load for the data after I've save the data, I could get a correct data. Exp: [Object Player] But if I restart the flash, the data seems to be…
Hwang
  • 502
  • 1
  • 12
  • 32
1
vote
1 answer

How to prevent multiboxing in flash game?

I have multiplayer flash game (AS3) and I would like to prevent multiboxing, e.g. prevent user running two (or more) instances of my game at one computer. Is there simple and reliable way how to do that? I don't want to filter them based on IP…
Lope
  • 5,388
  • 4
  • 30
  • 40
1
vote
1 answer

Storing and retrieving Shared objects in Red5

I want a "simple" method so i can store shared objects in the disk, and then i can retrieve these so's from the disk even the red5 server restarts. PS: i wasted many hours on finding good doc that explains the procedure but i found none.
alaeddine.nasri
  • 182
  • 1
  • 2
  • 11
1
vote
0 answers

Is there a console window open and am I talking to it? C++ /C#, Windows and Linux

I've been developing an embedded C++ application as a DLL/SO ("C" externed) that runs on Linux (Ubuntu 11.04) and Windows(XP). As such, I have no idea if my caller application is running GUI, console or neither. I believe stdout and stderr point to…
Wes Miller
  • 2,191
  • 2
  • 38
  • 64
1
vote
0 answers

How to send SharedObject Array data to PHP WS for DB Query (Flex)

I am currently developing an Android application using Flex 4.5.1 and I am having an issue when trying to pass data that I have stored in a SharedObject array to my Web Service for a Database query. the code below shows how I am storing the data in…
user723858
  • 1,017
  • 3
  • 23
  • 45
1
vote
1 answer

Delete SharedObject preferences

I've developed an ActionScript 3.0 for Adobe Air application (it will run on Blackberry Playbook). This app has some bugs and I've made an update. When user install the new version I want to delete previous user data. How can I do that?
VansFannel
  • 45,055
  • 107
  • 359
  • 626
1
vote
0 answers

Packaging .so library in maven

I am making a Maven project for a small Bluetooth low energy application. I am using intel's TinyB BluetoothLE library. I've tested out the use of the library locally. In eclipse, I added TinyB's jar file to the classpath, as well as gave the…
omri
  • 352
  • 2
  • 18
1
vote
1 answer

Update list in one script and access updated list from another script

I was trying to develop a client server module where I have 2 files listen.py and server.py for server side and client.py for client side. Now, I am trying to implement multi client server and thus I have 2 separate files where listen.py creates a…
1
vote
2 answers

Using Go in C++

linux Debian Buster go version go1.11.6 linux/amd64 gcc version 8.3.0 (Debian 8.3.0-6) libmylib.go package main import "C" import ( "fmt" ) func say(text string) { fmt.Println(text) } func main(){} mylib.h #ifndef MY_LIB_H #define…
Егор
  • 15
  • 1
  • 6
1
vote
0 answers

Passively inject shared object to a specific executable

I'm interested on injecting my own shared object to any future to run instance of a specific executable. This executable gives me hard time since it is executed a lot and quite frequently which makes me reluctant to inject my code actively (using…
1
vote
0 answers

shared object symbol inclusion

I'm writting a program that relies on a shared object libLTK.so I also write the code of libLTK.so which relies on libunwind.so libunwind.so was fetched using regular package installation. I am able to compile libLTK.so and the resulting ELF…
Lewis Anesa
  • 102
  • 3
  • 12
1
vote
1 answer

Load *.dylib or *.so into the V8 Javascript runtime?

While not specifically related to Frida's use of V8, I was reading this Frida release page and noticed it made the following reference: Short of writing the whole agent in C, one could go ahead and build a native library, and load it using…
sherrellbc
  • 4,650
  • 9
  • 48
  • 77
1
vote
1 answer

Finding Android Java usable methods in a Shared Object File

I need to see which methods are available in a .so file so i can use them like private native int JNIMethod(String args); in Java. Is this possible? if yes, How? Thanks
Amirhossein
  • 179
  • 4
  • 18
1
vote
2 answers

Linking: Why does linker not honour symlink to library?

I have the following C program: #include #include int main() { z_stream strm; int integer = 0; scanf("heloworld %d", &integer); printf("ok\n"); if (integer == 10) { strm.zalloc = Z_NULL; …
Har
  • 3,727
  • 10
  • 41
  • 75
1
vote
2 answers

Where Should Shared Object Files Be Placed?

I am venturing into the land of creating C/C++ bindings for Python using pybindgen. I've followed the steps outlined under "Building it ( GCC instructions )" to create bindings for the sample files:…
JeremyFromEarth
  • 14,344
  • 4
  • 33
  • 47