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

Can not save array in shared object as3

I have this code in my simple flash. I want to save name and score in my quiz. My code reference in this website http://www.mollyjameson.com/blog/local-flash-game-leaderboard-tutorial/ I want to make my code in just one actionscript. But I didn't…
ayu
  • 23
  • 4
0
votes
0 answers

how to replace with shared object in as3

I have simple code as3 with sharedobject. In this flash, I want to save name and score that writed by user. New name and score will show in the top, and the rest will follow under the new name and score. But I don't sure how to make it. I have…
ayu
  • 23
  • 4
0
votes
1 answer

Exception in thread "main" java.lang.UnsatisfiedLinkError: undefined symbol: Test

I am trying to write a custom linux library(*.so) and I stuck already at the basics. I would like to use this library via JNA. The problem is that when Eclipse is trying to run the method Test() this error-message appears Exception in thread "main"…
wurmi
  • 333
  • 5
  • 18
0
votes
1 answer

AS3 SharedObject spooky array entanglement

var so:SharedObject = SharedObject.getLocal("example"); var arr:Array=[1,2,3]; so.data.arr = arr; so.flush(); trace(so.data.arr); // outputs 1,2,3 arr[2]=5; trace(so.data.arr); // outputs 1,2,5 As you see, I updated only arr, but so.data.arr got…
DBC
  • 69
  • 7
0
votes
2 answers

AS3 Sending a Shared Object

I'm working on an application that would allow users to create a custom character sheet for role play games. I have most of the code figured out, but I want users to be able to send their character sheets between devices. So here's the question: is…
0
votes
1 answer

Calling C++ methods from python

I stuck with some problem in calling C++ methods in python I got this following link in stack overflow But I don't to use Boost package and swig. Is there any approach in python can used to call these C++ methods. I am compiling C++ as a shared…
Sandy
  • 233
  • 1
  • 2
  • 18
0
votes
2 answers

Linking problems with shared objects on linux (using a simple so in a console application)

I have a shared object (abc.so) that i built after linking it to a bunch of libs (.a and .so) files. Now this abc.so just exposes 3 functions. Now i am writing a console application on linux that uses this abc.so to invoke those function. When i try…
AMM
  • 17,130
  • 24
  • 65
  • 77
0
votes
2 answers

How to access server objects from Threads

I'm writing a little Multi-threaded client-server Java application. When the server is started, it creates some objects like an object for db connection, another to manage users and so on. I need them to be accessed from every thread I start. Which…
Alessandro
  • 15
  • 1
  • 5
0
votes
0 answers

Linux Shared Object File Error

Below is the error I get when trying to run a command. ImportError: libreadline.so.4: cannot open shared object file: No such file or di rectory I have updated everything I can even tried to fix…
code_bash
  • 701
  • 1
  • 5
  • 16
0
votes
2 answers

How to read all data from abstract Shared Object file? (Flash, Actionscript)

what I meen is to get all objects and their properties, is it possible? How to do such thing?
Rella
  • 65,003
  • 109
  • 363
  • 636
0
votes
1 answer

Accessing static members of a class from dll

I have application written in C++ that uses SWIG for python integration. Now under linux/osx when i build swig wrapper it creates so file that is used from application like this. Py_Initialize(); PyRun_SimpleString("import…
listener
  • 1
  • 5
0
votes
1 answer

Modify g++ library path

I recently installed gcc 4.9.2 and found a problem when linking with libs. The output for search path: install: /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/ programs:…
h9uest
  • 10,958
  • 3
  • 18
  • 24
0
votes
2 answers

Store data onto local disk without prompting the user

I have a flash application which runs on web. I need to store images and audio files onto the clients local disk(don't want to store on web) without prompting the client. I have already tried with shared object. But since shared object space is…
Maddy
  • 67
  • 1
  • 12
0
votes
1 answer

save data into flash media server like rdbms

hii... im using fms to save datas like rdbms. Im using shared object for this. But I cant save more than one row of data into flash media server. What can I do for this purpose??
rejo
  • 3,352
  • 5
  • 27
  • 34
0
votes
1 answer

Save Number with Shared Object and Add to that Saved Number.

Hey everyone so basically what I am trying to accomplish is saving a number with the Shared Object which the the coins that the player collects in the game and if they player quits out of the game and comes back to play again the amount of coins he…
Nathan
  • 536
  • 4
  • 21