Tagged Questions
The sharedobject tag has no wiki summary.
8
votes
1answer
210 views
Not receiving onSync delete events for multiple SharedObjects in same SWF
I have an application that uses Remote SharedObjects and I am seeing some strange behaviour. I am writing an ActionScript application in AS3 using Flash Builder and connecting to Wowza Media Server 2. ...
3
votes
0answers
49 views
General questions about .so and .dll files
In modern compiler toolchains, how are dynamically linked libraries implemented? Do they have any kind of internal architecture that optimizes the linking process? If I wanted to write my own dynamic ...
3
votes
1answer
84 views
Will shared object data disappear when the user updates the app?
I'm using Flash and AS3 to write an app for iOS and for Android and I'm saving XML-data using shared objects. Now it struck me that when I supply an update to the app store and the user updates the ...
3
votes
1answer
814 views
Checking how much sharedObject space there is available
Title pretty much says it all.
I'm wondering if there's a way to check the current size-limit on the users local hard-drive for sharedObject.
2
votes
3answers
65 views
Loading .so Files From Memory
I've seen this for Windows' DLL files, being loaded from a memory buffer, but I cant find it anywhere for Linux, and "ld" source code is the most complex code I've ever seen. So:
Is there any example ...
2
votes
0answers
159 views
Linking dependencies for an .so file using GCC. Clang works well
In the library I write I use mysqlclient_r. I need to the dependency to be put in the generated .so file.
Using clang I get:
$ clang -fPIC -shared -pthread -Wl,-Bsymbolic-functions \
-rdynamic ...
2
votes
1answer
73 views
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 ...
2
votes
4answers
1k views
Writing Local SharedObject in AS3 swf and reading it in loaded AS2 swf
I am trying to share data between an as3 swf and a as2 swf that it loaded. The problem is, I can't seem to get my as2 swf to read the localshared object written by the as3 swf. It simply returns ...
2
votes
4answers
1k views
Is it possible to store images in the SharedObject of Flash?
Is it possible to store a Image in a SharedObject in Flash? It would be nice if it would work. I need to "store" Images locally but it seems not to be supported by Flash... So I 'ld like to put those ...
2
votes
1answer
1k views
Properly serializing flash.utils.Dictionary to a SharedObject
I have a convenience collection class in my Flex project called HashMap, which is essentially a wrapper around the flash.utils.Dictionary with a bunch of convenience methods and an added (synced) ...
1
vote
2answers
246 views
Flex 4.5 iOS Mobile Project : SharedObject problems
I'm trying to use a SharedObject in a Flex 4.5 mobile project.
The SDK I'm using is 4.5.1, and the AIR version is 2.6.0.
I'm trying to locally store user credentials for my application using this ...
1
vote
1answer
93 views
How to reduce file size of g++ compiled shared object?
I have a shared object (.so) file compiled with g++, in Windows, its size about 2MB (.DLL, compiled with Visual Studio 2008, /O2), but in Linux, its size is 10MB if compiled with g++ -O2 flag.
Even I ...
1
vote
1answer
111 views
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 ...
1
vote
0answers
267 views
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. ...
1
vote
2answers
161 views
How do i make a single connection to handle video, audio and chat in Flex
I'm developing an application and i want to make one single connection for video(netstream) and chat(sharedObject).
I have one connection for each but i have limited connection available in the server ...
1
vote
0answers
155 views
send an extra parameter to red5 and retrieve back into flex application
call("sendMessage",null,str,boo);
i would like to pass both str is a string variable and boo is a boolean variable parameters to red5 and from there i would llike to get both the values in flex ...
1
vote
1answer
164 views
Storing a FileReference in a SharedObject
I would like to store a FileReference object somehow and load it when the SWF loads again.
I tried to use the SharedObject class but it does not seem to work. I suspect that what I want to do is not ...
1
vote
3answers
615 views
(as3) Sync data between 3 or more identical flash objects on the same page
Ok, i have asked something similar before, but never go to the solution i need. So am starting a new stack to not confuse my issues, and to make a little clearer.
What i need to do
I have multiple ...
1
vote
4answers
979 views
How to get Shared Object in Shared Memory
Our app depends on an external, 3rd party-supplied configuration (including custom driving/decision making functions) loadable as .so file.
Independently, it cooperates with external CGI modules ...
1
vote
2answers
756 views
Python ctypes: initializing c_char_p()
I wrote a simple C++ program to illustrate my problem:
extern "C"{
int test(int, char*);
}
int test(int i, char* var){
if (i == 1){
strcpy(var,"hi");
}
return 1;
}
I compile ...
1
vote
2answers
105 views
1
vote
1answer
118 views
Accessing a piece of data quickly from a very large sharedObject-data
I'm caching really big amount of data on the users hard-drive using sharedObject, this data can be like 0.5GB. But I don't want to place the whole sharedObject in memory, and the data also needs to be ...
0
votes
1answer
23 views
Object stored with SharedObject have own default properties? Can it be remove?
I have a Object with some data define by me, and I use SharedObject to store it in the computer. When I view the .sol file with FlashDevelop SharedObject Reader, I notice the object info have some ...
0
votes
0answers
22 views
delay with connection to FMS Remote Shared object
Connecting to a remote shared object on the server, from the client. With this:
var bso:SharedObject = SharedObject.getRemote("rso",NC.uri,true);
if (bso) {
bso.addEventListener ...
0
votes
0answers
4 views
Finding the actually needed symbols in a shared object
I have a huge shared object file with potentially unnecessary symbols, and a collection of binaries that depend on this object. How can I analyze which symbols are actually needed?
I am developing ...
0
votes
1answer
46 views
RestKit Mapping deallocated in background ?
I have the following structure in my app (iPad, iOS 5):
UIView1
--> UIView2 (presented modal).
I have a custom class dealing with a REST Service. This Class handles all the mapping, routing, etc. ...
0
votes
0answers
119 views
Flash AS3 and FMS: updating a remote SharedObject from client
A general description of the case:
In my Flash FMS application - there is one client who is the "broadcaster" -
when it first connects to the server, the server-side script recognizes it as the ...
0
votes
1answer
92 views
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]
...
0
votes
0answers
46 views
Problem in storing and retrieving Shared objects in Red5
My problem is that i want to store some shared objects that i use when all clients leaves the room so i put in my code:
public void roomStop(IScope room) {
remoteSO = ...
0
votes
1answer
83 views
Sharedobject don't remember data?
I have this code for sharedobject:
var mySharedObject = SharedObject.getLocal("republicofcode");
mySharedObject.data.clientID = my_vars.clientID;
mySharedObject.data.question = my_vars.question;
...
0
votes
0answers
199 views
Remote Shared Object comes undefined - Red5
Cant find any solution for this. Im trying to store some data on remote shared object and retrieve it. At the moment im working locally. Anyway, i read probably all posts on internet about that and ...
0
votes
1answer
34 views
manage kiosk saved data
Had to reinvent this question. Please bare with me.
New to the understanding of SharedObject. I'm building a kiosk and now the client wants the kiosk to save the number of clicks the user makes to a ...
0
votes
1answer
37 views
Shared Object Syntax
In AS3 I would like to set the key of a shared object with the contents of a string as opposed to specifically naming the key.
so.data.test = "andy" // this is the basic working system
I do not ...
0
votes
2answers
615 views
“.SO” file for TESSERACT OCR
I need to use the ".so" file of TESSERACT OCR (Optical Character Recognition) for my ANDROID APP..can anyone explain me how to get the ".so" file for TESSERACT OCR.
I tried to import the complete ...
0
votes
1answer
130 views
AS3 - Define shared object size
I want to let the user save some bigger data in a shared object by choice. Is it possible to define the size the user needs to allow?
I'ld like to set the minimum to at least 10 MB to have some extra ...
0
votes
2answers
121 views
Shared Object inside Schedule Job
I want to send data from Red5 to Flex using remote sharedobject.
my Red5 code :
this.addScheduledJob(5000,new IScheduledJob() {
@Override
public void ...
0
votes
0answers
325 views
Flash AS2 SharedObjects & LocalConnection
I hope you can help, I am storing data to a sharedObject invoking the sharedObject thus:
var mySharedObject = SharedObject.getLocal("userDataPrem", "{domainname}/demopremium/");
...
0
votes
1answer
177 views
Flash sharedobject flush help
On my site I have a flash banner that saves its frame position when the user changes pages so that it continues to play rather than restart every time a user navigates around the site. This was ...
0
votes
2answers
76 views
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:
...
0
votes
0answers
279 views
ArrayCollection Shared object access
I am trying to use a shared object to save an array collection of city objects. Each city object contains basic string properties (i.e. CITYName, State, Zipcode, etc...). I can successfully write the ...
0
votes
2answers
263 views
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 ...
0
votes
1answer
259 views
Set SharedObject maximum size
Is there a way to set a (large) maximum size for SharedObject on my domain so that I can ask the user to allocate a size greater than 100k one time and not need to ask again, even if data is added?
0
votes
1answer
201 views
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 ...
0
votes
1answer
159 views
Persistent MP3 player using SharedObject
I'm trying to create a persistent MP3 player using SharedObject. Initially I tried using frames and while it worked, frames suck so I continued looking into it.
I came to find out about Flash's ...
0
votes
1answer
625 views
Creating a pacman-style game using Flash (AS3)
Creating a pacman-style game using Flash (AS3). There are 3 players competing to eat the most dots. Right now when one player eats a dot, on that player's screen the dot goes away (but only for a ...
0
votes
1answer
80 views
Can a Flash SharedObejct expire per session?
I'm trying to display certain content per session, but the site has the same Flash embedded in the different sections of the site, so I can't set it on the site's Model or a Global Variable. I also ...
0
votes
2answers
957 views
AS3: Shared Objects Issue
Slight problem i have been pondering on, i have a class that loads a text from a url as a means to sync the time.
The swf file can be on the same page multiple times, but i want it to check to see if ...
0
votes
1answer
1k views
red5 server-side sharedObject
I'm trying to store all the users inside a sharedObject thats created on the server-side, so all the users get a synchronized list of all the online users.
I think I create the sharedObject correct ...
0
votes
2answers
545 views
Flash AS3 - Can I prevent my shared object from saving on the .swf close?
I have a program with a save feature - the user clicks a button, and everything is saved to a local Shared Object with the flush(); command.
My problem is that Flash .swf files automatically save to ...
0
votes
2answers
801 views
I would like to download the Remote SharedObject from an FMS server through RTMP
I'd like to contact an FMS server through a script and download the persistent Remote SharedObject.
The Flash program connects to the FMS server, opens a NetConnection, makes a SharedObject.getRemote ...