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

Node module ifx_db installation fails in linux

I am trying to install ifx_db (Node module to connect to informix DB). It is working fine in Windows but in Linux i am getting the following error. /app/node_modules/ifx_db/node_modules/bindings/bindings.js:88 throw e ^ Error:…
0
votes
1 answer

Adobe AIR read .sol file of Flash Player

I have a problem with Shared Objects files when I need read the .sol of the Flash Player with a Adobe AIR application. The path of the Flash Player Shared Objects is: C:/Users/%username%/AppData/Roaming/Macromedia/Flash…
bio
  • 283
  • 1
  • 3
  • 19
0
votes
1 answer

Loading array of display objects using shared objects in action script 3.0

I'm trying to load an array that contain some display objects, the program lets me to populate the array with circles and save them to a shared object, then, I can trace the content of my array using the load button. The problem is that i can't load…
0
votes
2 answers

How to enable a shared object accessing a data file in runtime (UNIX)

I have a class method (implemented in a shared object in UNIX environment) which needs to access a text data file in runtime (using ifstream). Currently the method assumes that the data file is available for opening without any relative path, i.e…
Itamar Katz
  • 9,544
  • 5
  • 42
  • 74
0
votes
1 answer

Apache Ignite c++, Shared memory

I'm new to Apache ignite, I have an application which runs in multi processes model. I'm trying to find an Ignite configuration in which I should be able to run only one server on a machine and use the same server node in my multi instances of c++…
0
votes
0 answers

storing and retrieving multiple shared object

I am doing sign up and sign in using sharedobject in AS3. I am storing username and password in different shared object variables. It stores successfully. But while retrieving and checking the username and password during sign-in, i don't know about…
Rajesh
  • 195
  • 1
  • 2
  • 15
0
votes
1 answer

Save image loaded to my UILoader in AS3 in order to load it without internet connection

I've got some UIloader in my AS3 code that displays images via web link. uiloader1.source = "http://www.mywebsite/image1.jpg"; uiloader2.source = "http://www.mywebsite/image2.jpg"; Once the user have open the app with an internet connection, I'd…
Steph
  • 33
  • 4
0
votes
1 answer

creating multiple sharedobject dynamically

I would like to dynamically create multiple sharedobject to create multi-login and I used the below code for that. But it throws error.Please post if there is any way to do it. var k:Number=0; var signup:SharedObject =…
Rajesh
  • 195
  • 1
  • 2
  • 15
0
votes
1 answer

SharedObject Not saving data safely?

I try to have an object with some immutable properties which initiate at the constructor and won't be able to change after initiation. Those properties then only have getter method. Since I want this object can be shared with other classes, I save…
Feng David
  • 119
  • 3
0
votes
1 answer

Flex, Java, BlazeDS and config file for my application

I'm programming Rich web applications with Flex and Java on Flex Builder 3 using blazeDS and SharedObjects. Now I need that my program will use configuration file. so, I need that my Java class will read it at the first time but the default path of…
Elad
  • 479
  • 3
  • 11
  • 21
0
votes
1 answer

Visual Studio 2015 Android native C++ nested shared object reference causes crash

I'm a bit of a noob when it comes to Android development, and I'm accustomed to native Windows development in Visual Studio, and I'd like to port over a stdout console based test application from Windows to Android. I have a Java APK project that…
Kumputer
  • 588
  • 1
  • 6
  • 22
0
votes
3 answers

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…
SkunkSpinner
  • 11,429
  • 7
  • 40
  • 53
0
votes
1 answer

Memory usage doubled when passing matrix to shared object

I have a linear set of equations, where A x = b and A is a large matrix and b is known as well. The matrix A is set up with python. Now I want to invert matrix A to get x. A and b are passed to a Fortran 90 program via a shared object. I compiled…
RoSt
  • 51
  • 1
  • 7
0
votes
1 answer

Android NDK secure strings

I am doing a POC to secure strings using android NDK. I have kept a string "My secret key" in C++ code and then access it in Java using JNI. App is working without any issues. Then I have decompiled the apk file. Now I am still able to see the…
Prabhu M
  • 3,534
  • 8
  • 48
  • 87
0
votes
1 answer

Strip Shared objects in solaris

I don't see any command like strip in the solaris platform. I checked in google. In one of the link, objcopy command is mentioned but that also is not present in my solaris platform. Can anyone tell the command in solaris to strip the binary or…