Shared Objects in Flash are used to store persistent data on the client or server side.
0
votes
1answer
23 views
Store data in SWF file without need to parse them
I'm making a Flash game where I need a way to store a lot of data about the world, as in data that is constant all throughout the game, between all gameplays. Lots of values (integer, float, string), ...
2
votes
1answer
35 views
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 ...
0
votes
1answer
34 views
Shared Objects Send Method()
There appears to be an error in the Adobe documentation in regards using the shared object.send(). I am trying to execute the send method to all clients.
I copied the client and server-side code from ...
0
votes
1answer
46 views
Using boost lib within a shared object in Eclipse - undefined reference
I am trying to create a shared object (myLib.so) for a project I am doing. and I have created a separate eclipse 'project' to try and use/test the shared object - they are in the same workspace.
When ...
0
votes
1answer
43 views
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
...
0
votes
0answers
57 views
elocation R_X86_64_32 against `.rodata' can not be used when making a shared object; recompile with -fPIC
My server is on ubuntu 12.04.
I'm trying to install the Levenshtein-MySQL-UDF available here : https://github.com/jmcejuela/Levenshtein-MySQL-UDF
I downloaded the .zip and locate the levenshtein.c ...
0
votes
1answer
37 views
Why sometimes linking with .so files give linker errors?
I am too much curious about the issue that sometimes .so linking fails, but whenever I use static libs (.a) it doesn't. Do anyone have idea on that?
For example in linux I have used libcrypto.a lib ...
0
votes
0answers
11 views
SharedObject.Send Callback
I want to use the remote shared object send method() to broadcast a message to all subscribed clients. I am using both Client and Server-side code from a tutorial that i copied. However, when i run ...
-1
votes
0answers
35 views
addChild not working with SharedObject AS3
I have a game in AS3, and it goes as follows, this is where you either start a new game or load your game:
loadgame.addEventListener(MouseEvent.CLICK, loadgameclick);
function ...
0
votes
0answers
34 views
Air android/mobile: same sharedobject for different apps?
I have two apps, one is a trial version the other the full version of a game, both made with adobe air. While saving data via the sharedobjects solution is no problem, I would like to use "one" ...
0
votes
1answer
50 views
Does sharedObject.getLocal work with Air for iOS?
So, I've created a save system for my game.The thing is it works fine on Flash and Air for desktop, but not Air For iOS when I wrap it as an iOS app.Does sharedObject.getLocal work with iOS? If not, ...
0
votes
1answer
38 views
Assigning Data to a Shared Object using a Variable's content as the identifier
I have been musing over this problem for the past few days, and whilst I can find other people that have had issues that kind of revolve around the use of dynamic variable names, none of the solutions ...
0
votes
0answers
23 views
Using Remote Shared Objects in FMS
I would like to use a remote shared object to communicate to nearID. My knowledge of Server-Side ActionScript is not particularly great. Is there any tutorials or links out there that can give me a ...
0
votes
1answer
68 views
AS3 How to Synchronize an event
I am attempting to build a small chat application using a remote shared object (RSO) for FMS. My question is, how do you dispatch the SyncEvent when the RSO has been updated? Example, what I want to ...
1
vote
1answer
68 views
g++ linking undefined reference even though my shared object has those methods
Edit: Answer found. Ignore
Sorry to ask this question even though it's been asked so many times but I've checked like 20+ similar questions and none of them have helped.
I've created a shared ...
0
votes
1answer
44 views
SharedObject between Air and Flex Web application
I have an Air application that runs an embedded web flex application (This is done in that way because remoteObject calling is faster than webService calling). The problem is that I need to have a ...
1
vote
2answers
267 views
Creating Shared Objects for Mobile Device with Air App
I have created an App using an externall AS3 class file, and it works perfectly on a PC desktop (exported as a presentation file).
However, I now need to move the same app to work on a mobile Tablet ...
1
vote
1answer
83 views
Error while relocating binary code (gcc -> objdata -> load binary code -> and execute)
I'm implementing a genetic algorithm, the creatures are functions that have three pointers as input and output.
All have the form:
// No need for global variables
void _start (float *i, float *o, ...
4
votes
0answers
169 views
How to add multiple native libraries (.so) files in IntelliJ
I have two 3rd party native libraries, say libfoo.so and libbar.so. I'm having hard time loading both of these libraries. I've copied them to libs folder under proper CPU arch (armeabi, mips, and x86) ...
0
votes
1answer
39 views
Loading ColorTransform from SharedObject
I'm using a local shared object (SharedObject) to store some data for my flash game.
One of the bits of data I'd like to save is a ColorTransform object. I have no problem saving the colorTransform ...
1
vote
1answer
112 views
How to include shared object files in maven project
I am using an external c++ library (gdal/ogr) which creates shared object files so that java can utilize its functionality. The problem is that I am not really sure what I am supposed to do with these ...
2
votes
1answer
169 views
sharedObject location
i'm using this method to save shared object in specific location but i'm not able to give path
SharedObject.getLocal("save","how to give path here for window");
and this gives following error
...
0
votes
1answer
35 views
How to use Remote Shared Objects
I'm trying to use a remote shared object to send data messages between the client and server using the sharedobject.send method for a chat application.
I am really having difficulty understanding the ...
0
votes
1answer
67 views
Using Shared Objects
I am rather new to as3. My question is...how do you update a server using a remote shared object?
Example, your in a chat room the application stores a list of users connected and is visible to all ...
0
votes
3answers
180 views
Objects saved in a shared object are not keeping their data type after restart. Any ideas?
I'm having issues saving, then retrieving sharedObject data.
For example if I make a shared object:
var myData:SharedObject = SharedObject.getLocal("myData");
Then, I make an object, in this case, ...
0
votes
1answer
123 views
SharedObject in node.js between server and clients
Basically I need sharedObject in node.js.
When working with flash media server, like red5 and flash client you can natively use sharedObject, that notify the connected client(s) upon update via ...
0
votes
1answer
63 views
AS3 Value-search an Array using indexOf()
In the below code, indexOf() is always returning -1. The array being searched definately has the values within.
We've tried converting the checked integer into a string in case the array has string ...
0
votes
0answers
108 views
AIR SharedObject in IOS App disappears after reset
I use SharedObject in AIR to storage some data in IOS App.
when I set UIApplicationExitsOnSuspend to true, shared objects work fine, it means if I remove it from Fast App Switcher(Fast App Switcher ...
0
votes
0answers
153 views
SharedObject not working on AIR mobile
I cannot get local ShareObject's to save data. Its the same result in the adl emulator, iOS emulator and on a physical device. This includes reading shared objects from the same install on the ...
0
votes
1answer
22 views
Linux, concurrency in shared objects
I have a question related to one of my backend environments:
On a linux machine (suse linux), there is an apache webserver, with cgi enabled:
2 different users (in different places), in our webapp ...
0
votes
1answer
70 views
ActionScript code problems
I have only recently started to learn ActionScript 3.0 I was practising in Flash and i ran into this problem:
Scene 1, Layer 'Layer 1', Frame 1, Line13 1119: Access of possibly undefined property ...
0
votes
1answer
64 views
FMS video text chat method
I am a new user member here. And i am new to FMS. I have a question i would like to ask in regards to sending text data messages in a live video chat app from one user to another.
I am wanting to ...
3
votes
1answer
169 views
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 ...
0
votes
1answer
70 views
SharedObject Send Method
In FMS i want to use Shared objects to send messages in a chat application because its in real time.
My question is...How do you use Shared Objects to send messages back and forth to users in a live ...
0
votes
2answers
308 views
connection to a red5 remote shared object from a flex app
I'm writing a Flex application.
The server side application is Java application that is on top of Red5 1.0.
that connection is made throught RTMPE protcol. (the results are the same with RTMP or ...
0
votes
1answer
1k views
AS3: Store array in shared object
I have searched for an answer to this question for quite a while but can't seem to find a definite one. Basically what I am trying to do is take an Array and store it within a shared object, and then ...
0
votes
1answer
23 views
Duplicate shared object on fms
I wanted to create a copy of a temporary shared object on server to another permanent shared object. What would be the efficient way of doing that?
Thank you,
Naresh
0
votes
1answer
224 views
Create a Shared Object in Red5 Server with Java but without Actionscript or Flex technology
I'm looking for a way to create a Remote Shared Object in Red5 Server (installed on a server machine) only using Java technology. The shared object can be any thing (simpler is better) because my ...
1
vote
1answer
66 views
loading arm shared objects on an armhf system using dlopen
Is there a way to load shared objects compiled for arm(el) on an armhf system (Ubuntu 12.10 for armhf)?
For executables I solved the Problem by creating the following symbolic link
...
2
votes
2answers
325 views
Using Shared Object File in iOS (.so file)
I have been given a Shared Object file (.so) and the functions inside of it, but I don't have a clue as to how to use it, or alter it for use in an iOS application. Could someone point me in the right ...
4
votes
1answer
79 views
g++ symbol not found linking libruli.so
Greatful for any ideas on what more I can check in regards to why the symbols is not found. And yes the so lib is found the path is set in /etc/ld.so.conf
(http://www.nongnu.org/ruli/)
g++ --version
...
0
votes
1answer
87 views
Actionscript 3 - How to include current movieclip/root location to this.currentFrame?
I am trying to make save progress thingie with sharedobjects, I´ve figured out how those work, but now I should just try to figure out how to make my "save progress" button to not just remember ...
3
votes
1answer
579 views
Air iOS SharedObject deleted after updating
I'm using SharedObjects in my game to store the progress of the player in the game (level scores, unlocked levels, etc.).
Everything is working fine, but the problem is when I submitted an update of ...
0
votes
2answers
39 views
datatype of The shared defaults object returned by NSUserDefaults
while going through the class reference file for NSUserDefaults, I notice that the return value for [NSUserDefaults standardUserDefaults]is
The shared defaults object
what is this object, what ...
0
votes
1answer
49 views
ActionScript 3 SharedObjects
I have a couple of questions in regards to SharedObjects in as3. Okey, what is the difference between a persistent SharedObject and a nonPersistent SharedObject? And, i am trying to build a small chat ...
3
votes
0answers
163 views
How to use RTLD_DEEPBIND when invoke implicitly?
Now i have 3 shared objects,A.so,B.so,C.so
A.c
void libA()
{
common();
}
B.c
void common()
{
printf("COME HERE B\n");
}
C.c
...
2
votes
1answer
77 views
Flex SharedObject Displays Client Values
I have a remote flex SharedObject and Im trying (using Red5) to send to all clients a message and an object with some user / sender data.
The problem is: The values displayed in clients are the ones ...
0
votes
1answer
134 views
Remote SharedObject isn't synced/persisted
I'm using FMS 4.0. I'm trying to use the Remote SharedObject, which I've I used in the past, but nothing seems to work. Even the most simple example doesn't work. No events are triggered on the SO ...
3
votes
3answers
297 views
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 ...
0
votes
1answer
109 views
flash as3 timeline animation storing value
I set a value on frame 20 of my animation
var final_answer = hundreds.text+tens.text+units.text;
var mySharedObject:SharedObject = SharedObject.getLocal("/");
I want to access this on frame 40 but ...




