sharedobjects

Flash/Flex Error #1063 When Retrieving SharedObject

I have a parts application that is built on Flex 3 and I having a problem with the parts list. The parts list uses two objects: Part ArrayOfPart I cache the parts list locally in a SharedObject. This has been working fine for a couple months. I added a new Boolean property to the Part class and re-imported web services (which shouldn...

SharedObject (Flex 3.2) behaving unexpectedly when query string present in URL

Summary: The behavior detailed below seems to indicate that if your app at www.someplace.com sets/retrieves data via a SharedObject, there is some sort of .sol collision if the user hits your app at someplace.com, and then later at someplace.com?name=value. Can anyone confirm or refute this? I'm working on a Flex web app that present...

How to access remote flash Shared Objects from php or java?

Are there any php (preferably) or java libraries that allow to retrieve remote flash shared objects? Something equal to: connection = new NetConnection(); connection.connect("rtmp://example.com/test"); var testdb_so = SharedObject.getRemote("testdb_so", connection.uri, true); ... Thanks. ...

How can I programatically determine the location that Flash stores Local Shared Objects

I'm writing some automated acceptance tests for a flash movie (driving the movie using iMacros). I need to "reset" the test environment before each test run by clearing out the settings flash is storing in Local Shared Objects. I can do this manually by deleting the files in: C:\Documents and Settings{username}\Application Data\Macrom...

What data types does a SharedObject support?

I know it is a simple matter to store Strings and Numbers with a SharedObject, and I am also familiar with this sort of thing: var sharedObject:SharedObject = SharedObject.getLocal("userData"); var obj:Object = new Object(); obj.prop = "value"; sharedObject.data.userobj= obj; sharedObject.flush(); However, I am attempting to store an ...

Can I iterate through each of my SharedObjects in ActionScript 3?

Is it possible to execute a "foreach" through each of my SharedObjects? Something like this . . . _so = SharedObject.getLocal("test","/"); foreach (var item:Object in _so) { // print key name and value } ...

Simple Remote Shared Object with Red5 Flash Server

Hello, I am trying to create a simple chat client using the red5 media server, but I seem to be having a slight hiccup. I am creating a shared object on the server side, and it seems to be creating it successfully. However, when I make changes to the object via the client (type a message), the SYNC event fires, but the content within th...

AS3 shared objects that can be accessed by swfs on different html pages?

Is there a way to make a shared object that can be accessed by two different swf files on two different web pages? It works locally but when not when I upload the files to a server. How else can two swfs share information, without a database? I'm trying to have a settings panel on one page, and have all other flash files access the setti...

Flash - Why doesn't my SharedObject get saved on disk when closing IE?

I have a Flash application that uses SharedObject to save and read some data locally. As it is said everywhere Flash saves the data from the shared object to disk when the application is closed. And indeed it does when I test it with the stand-alone Flash Player or all of these browsers: Firefox, Opera, Safari, Chrome, Flock... But it do...

how to share a System.Object in memory between two or more programs?

is there any library, code sample, open source project, etc helping me share objects(a dataset , a collection, ...) between two or more programs with direct or indirect memory access. if there is no way to do that, please show me other ways to make my app work. language:c# .net platform:vista x64 ...

function pointer lookup in shared object and dll

Hello, basically I would like to look up a funtion in a shared object in a platform independent way: I don't want to deal with LoadLibrary/GetProcAddress or dlopen details is there a library that hides the process of looking up a function pointer in shared objects on various operating systems? I would like simply to provide the share...

showing a users list from FMS to the swf; use shared object or just call all clients on Connect/Disconnect

I want to add a users list to simple chat, and I'm thinking if whether there is a difference or is it the same thing (speed) if you have list of users on your server and you update it and call all clients and send this list when somebody connects or disconnects or use a SharedObject instead and handle the sync method on the client So is...

is there something like .dll or .so,but crossplatform?

is there something like .dll or .so,but crossplatform? ...

Apache have shared objects for both windows and linux.How do they do it?

Apache have .so modules for both windows and linux.How do they do it? ...

which one is recommended: using static lib vs dynamic lib (shared object)

hi, I am working with an application in Linux. It supports both static and dynamic (.so) versions From the performance standpoint, which version should a user use? The application performs computational tasks that require several hours of CPU time. Any other advantage of using one lib over the other? Thanks ...

red5: can i make shared objects read only on the client side?

Hiya. I'm using shared objects for a chat application, but i want my red5 to monitor every string that comes in. how can i make sure that the client side won't be able to modify the shared objects ? In my case the client side is written using adobe flash builder beta 2 (flex4) thanks! ...

Keep Remote Shared Object Alive

Hi, I am creating a game which 2 users can play. For this I have implemented the concept of RTMP and Remote Shared object. I have implemented this successfully. Now as per the requirement, If player close window and again join after some time then the current status of the game should be loaded. For that purpose I have converted remote...

Flash AS2 - Help saving variable imported from mySQL using PHP into sharedObject?

I am creating a game which uses the sharedObject to save each players progress locally. It also connects to a central database to create an online scoreboard. When a user inserts a score for the first time a unique ID is sent out of the database to the swf and saved as part of the sharedObject data. Absolutely everything works and the ...

Subversion svn:externals - What's wrong here?

I first want to say I've read the Subversion manual. I've read this question. I've also read this question. Here's my dilemma. Let's say I have 3 repositories laid out like this: DataAccessObject/ branches/ tags/ trunk/ DataAccessObject/ DataAccessObjectTests/ PlanObject/ branches/ tags/ trunk/ PlanObject/ PlanObjectTests/ Win...

How to find shared objects loaded during startup of an application?

Hi, I know that using dlopen with RLTD_NOLOAD one can find out whether a shared object is already loaded or not. This, however, doesn't seem to work if a so is linked to the executable and loaded by the linker during application startup. I mean, lets say I have mylib.so and load it with dlopen. Later, if I make dlopen with RLTD_NOLOAD,...