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...
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...
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.
...
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...
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 ...
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
}
...
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...
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...
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...
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
...
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...
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?
...
Apache have .so modules for both windows and linux.How do they do it?
...
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
...
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!
...
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...
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 ...
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...
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,...